diff --git a/pom.xml b/pom.xml
index 9deddf1..7f8b741 100644
--- a/pom.xml
+++ b/pom.xml
@@ -24,7 +24,7 @@
com.loohp
Limbo
Limbo
- 0.7.8-ALPHA
+ 0.7.9-ALPHA
Standalone Limbo Minecraft Server.
https://github.com/LOOHP/Limbo
@@ -136,7 +136,7 @@
- ${project.artifactId}-${project.version}-1.20.4
+ ${project.artifactId}-${project.version}-1.20.6
@@ -218,13 +218,18 @@
bungeecord-repo
https://oss.sonatype.org/content/repositories/snapshots
+
+ maven_central
+ Maven Central
+ https://repo.maven.apache.org/maven2/
+
org.apache.commons
commons-lang3
- 3.12.0
+ 3.14.0
com.github.Querz
diff --git a/spawn.schem b/spawn.schem
index 0a800b5..539f365 100644
Binary files a/spawn.schem and b/spawn.schem differ
diff --git a/src/main/java/com/loohp/limbo/Limbo.java b/src/main/java/com/loohp/limbo/Limbo.java
index 2c48383..19db265 100644
--- a/src/main/java/com/loohp/limbo/Limbo.java
+++ b/src/main/java/com/loohp/limbo/Limbo.java
@@ -48,7 +48,6 @@ import com.loohp.limbo.scheduler.Tick;
import com.loohp.limbo.utils.CustomStringUtils;
import com.loohp.limbo.utils.ImageUtils;
import com.loohp.limbo.utils.NetworkUtils;
-import com.loohp.limbo.world.DimensionRegistry;
import com.loohp.limbo.world.Environment;
import com.loohp.limbo.world.Schematic;
import com.loohp.limbo.world.World;
@@ -139,8 +138,8 @@ public final class Limbo {
//===========================
- public final String SERVER_IMPLEMENTATION_VERSION = "1.20.4";
- public final int SERVER_IMPLEMENTATION_PROTOCOL = 765;
+ public final String SERVER_IMPLEMENTATION_VERSION = "1.20.6";
+ public final int SERVER_IMPLEMENTATION_PROTOCOL = 766;
public final String LIMBO_IMPLEMENTATION_VERSION;
private final AtomicBoolean isRunning;
@@ -160,8 +159,6 @@ public final class Limbo {
private final PermissionsManager permissionManager;
private final File pluginFolder;
- private final DimensionRegistry dimensionRegistry;
-
private final Tick tick;
private final LimboScheduler scheduler;
@@ -296,8 +293,6 @@ public final class Limbo {
console.sendMessage("Loaded all " + mappingsCount + " packet id mappings!");
- dimensionRegistry = new DimensionRegistry();
-
worlds.add(loadDefaultWorld());
Location spawn = properties.getWorldSpawn();
properties.setWorldSpawn(new Location(getWorld(properties.getLevelName().value()), spawn.getX(), spawn.getY(), spawn.getZ(), spawn.getYaw(), spawn.getPitch()));
@@ -375,10 +370,6 @@ public final class Limbo {
return scheduler;
}
- public DimensionRegistry getDimensionRegistry() {
- return dimensionRegistry;
- }
-
public PermissionsManager getPermissionsManager() {
return permissionManager;
}
diff --git a/src/main/java/com/loohp/limbo/inventory/ItemStack.java b/src/main/java/com/loohp/limbo/inventory/ItemStack.java
index 7a631ea..19ab0a9 100644
--- a/src/main/java/com/loohp/limbo/inventory/ItemStack.java
+++ b/src/main/java/com/loohp/limbo/inventory/ItemStack.java
@@ -19,13 +19,14 @@
package com.loohp.limbo.inventory;
+import com.loohp.limbo.registry.DataComponentTypes;
import net.kyori.adventure.key.Key;
import net.kyori.adventure.text.Component;
-import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer;
-import net.querz.nbt.io.SNBTUtil;
-import net.querz.nbt.tag.CompoundTag;
+import net.querz.nbt.tag.Tag;
-import java.io.IOException;
+import java.util.Collections;
+import java.util.HashMap;
+import java.util.Map;
import java.util.Objects;
public class ItemStack implements Cloneable {
@@ -34,36 +35,26 @@ public class ItemStack implements Cloneable {
private final Key material;
private final int amount;
- private final CompoundTag nbt;
-
- private CompoundTag fullTag;
+ private final Map> components;
public ItemStack(Key material) {
this(material, 1);
}
public ItemStack(Key material, int amount) {
- this(material, amount, null);
+ this(material, amount, Collections.emptyMap());
}
- public ItemStack(Key material, int amount, CompoundTag nbt) {
+ public ItemStack(Key material, int amount, Map> components) {
this.material = material;
this.amount = amount;
- this.nbt = nbt;
- this.fullTag = null;
- }
-
- public ItemStack(CompoundTag fullTag) {
- this.material = Key.key(fullTag.getString("id"));
- this.amount = fullTag.getInt("Count");
- this.nbt = fullTag.containsKey("tag") ? fullTag.getCompoundTag("tag") : null;
- this.fullTag = fullTag.clone();
+ this.components = components;
}
@SuppressWarnings("MethodDoesntCallSuperMethod")
@Override
public ItemStack clone() {
- return new ItemStack(material, amount, nbt == null ? null : nbt.clone());
+ return new ItemStack(material, amount, components);
}
public Key type() {
@@ -71,7 +62,7 @@ public class ItemStack implements Cloneable {
}
public ItemStack type(Key material) {
- return new ItemStack(material, amount, nbt == null ? null : nbt.clone());
+ return new ItemStack(material, amount, components);
}
public int amount() {
@@ -79,31 +70,33 @@ public class ItemStack implements Cloneable {
}
public ItemStack amount(int amount) {
- return new ItemStack(material, amount, nbt == null ? null : nbt.clone());
+ return new ItemStack(material, amount, components);
}
- public CompoundTag nbt() {
- return nbt;
+ public Map> components() {
+ return new HashMap<>(components);
}
- public ItemStack nbt(CompoundTag nbt) {
- return new ItemStack(material, amount, nbt == null ? null : nbt.clone());
+ public ItemStack components(Map> components) {
+ return new ItemStack(material, amount, components);
+ }
+
+ public T component(DataComponentTypes type) {
+ return type.getCodec().decode(components.get(type.getKey()));
+ }
+
+ public ItemStack component(DataComponentTypes type, T value) {
+ Map> components = components();
+ components.put(type.getKey(), type.getCodec().encode(value));
+ return components(components);
}
public Component displayName() {
- if (type().equals(AIR.type()) || nbt == null) {
- return null;
- }
- CompoundTag displayTag = nbt.getCompoundTag("display");
- if (displayTag == null) {
- return null;
- }
- String json = displayTag.getString("Name");
- if (json == null) {
+ if (type().equals(AIR.type()) || components == null) {
return null;
}
try {
- return GsonComponentSerializer.gson().deserialize(json);
+ return component(DataComponentTypes.CUSTOM_NAME);
} catch (Exception e) {
return null;
}
@@ -113,61 +106,36 @@ public class ItemStack implements Cloneable {
if (type().equals(AIR.type())) {
return this;
}
- try {
- String json = GsonComponentSerializer.gson().serialize(component);
- CompoundTag nbt = this.nbt.clone();
- CompoundTag displayTag = nbt.getCompoundTag("display");
- if (displayTag == null) {
- nbt.put("display", displayTag = new CompoundTag());
- }
- displayTag.putString("Name", json);
- return nbt(nbt);
- } catch (Exception ignore) {
- }
- return this;
+ return component(DataComponentTypes.CUSTOM_NAME, component);
}
public int getMaxStackSize() {
return 64;
}
- public CompoundTag getFullTag() {
- if (fullTag != null) {
- return fullTag;
- }
- CompoundTag compoundTag = new CompoundTag();
- compoundTag.putString("id", material.toString());
- compoundTag.putInt("Count", amount);
- if (nbt != null) {
- compoundTag.put("tag", nbt);
- }
- return fullTag = compoundTag;
- }
-
@Override
public boolean equals(Object o) {
if (this == o) return true;
if (o == null || getClass() != o.getClass()) return false;
ItemStack itemStack = (ItemStack) o;
- return amount == itemStack.amount && material.equals(itemStack.material) && Objects.equals(nbt, itemStack.nbt);
+ return amount == itemStack.amount && material.equals(itemStack.material) && Objects.equals(components, itemStack.components);
}
public boolean isSimilar(ItemStack stack) {
- return stack != null && material.equals(stack.material) && Objects.equals(nbt, stack.nbt);
+ return stack != null && material.equals(stack.material) && Objects.equals(components, stack.components);
}
@Override
public int hashCode() {
- return Objects.hash(material, amount, nbt);
+ return Objects.hash(material, amount, components);
}
@Override
public String toString() {
- try {
- return SNBTUtil.toSNBT(getFullTag());
- } catch (IOException e) {
- e.printStackTrace();
- }
- return "";
+ return "ItemStack{" +
+ "material=" + material +
+ ", amount=" + amount +
+ ", components=" + components +
+ '}';
}
}
diff --git a/src/main/java/com/loohp/limbo/network/ClientConnection.java b/src/main/java/com/loohp/limbo/network/ClientConnection.java
index 485b761..4d943d2 100644
--- a/src/main/java/com/loohp/limbo/network/ClientConnection.java
+++ b/src/main/java/com/loohp/limbo/network/ClientConnection.java
@@ -99,6 +99,7 @@ import com.loohp.limbo.network.protocol.packets.ServerboundLoginAcknowledgedPack
import com.loohp.limbo.player.Player;
import com.loohp.limbo.player.PlayerInteractManager;
import com.loohp.limbo.player.PlayerInventory;
+import com.loohp.limbo.registry.RegistryCustom;
import com.loohp.limbo.utils.BungeecordAdventureConversionUtils;
import com.loohp.limbo.utils.CheckedBiConsumer;
import com.loohp.limbo.utils.CustomStringUtils;
@@ -397,6 +398,7 @@ public class ClientConnection extends Thread {
}
break;
case LOGIN:
+ case TRANSFER:
state = ClientState.LOGIN;
ServerProperties properties = Limbo.getInstance().getServerProperties();
@@ -515,7 +517,7 @@ public class ClientConnection extends Thread {
break;
}
- PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username);
+ PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username, false);
sendPacket(success);
player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
@@ -539,7 +541,7 @@ public class ClientConnection extends Thread {
inetAddress = InetAddress.getByName(data.getIpAddress());
forwardedSkin = data.getSkinResponse();
- PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername());
+ PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername(), false);
sendPacket(success);
player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
@@ -557,7 +559,7 @@ public class ClientConnection extends Thread {
break;
}
- } catch (Exception e) {
+ } catch (Exception ignored) {
channel.close();
clientSocket.close();
state = ClientState.DISCONNECTED;
@@ -567,8 +569,22 @@ public class ClientConnection extends Thread {
TimeUnit.MILLISECONDS.sleep(500);
- ClientboundRegistryDataPacket registryDataPacket = new ClientboundRegistryDataPacket(Limbo.getInstance().getDimensionRegistry().getCodec());
- sendPacket(registryDataPacket);
+ ClientboundRegistryDataPacket registryDataPacket1 = new ClientboundRegistryDataPacket(RegistryCustom.WORLDGEN_BIOME);
+ sendPacket(registryDataPacket1);
+ ClientboundRegistryDataPacket registryDataPacket2 = new ClientboundRegistryDataPacket(RegistryCustom.CHAT_TYPE);
+ sendPacket(registryDataPacket2);
+ ClientboundRegistryDataPacket registryDataPacket3 = new ClientboundRegistryDataPacket(RegistryCustom.TRIM_PATTERN);
+ sendPacket(registryDataPacket3);
+ ClientboundRegistryDataPacket registryDataPacket4 = new ClientboundRegistryDataPacket(RegistryCustom.TRIM_MATERIAL);
+ sendPacket(registryDataPacket4);
+ ClientboundRegistryDataPacket registryDataPacket5 = new ClientboundRegistryDataPacket(RegistryCustom.WOLF_VARIANT);
+ sendPacket(registryDataPacket5);
+ ClientboundRegistryDataPacket registryDataPacket6 = new ClientboundRegistryDataPacket(RegistryCustom.DIMENSION_TYPE);
+ sendPacket(registryDataPacket6);
+ ClientboundRegistryDataPacket registryDataPacket7 = new ClientboundRegistryDataPacket(RegistryCustom.DAMAGE_TYPE);
+ sendPacket(registryDataPacket7);
+ ClientboundRegistryDataPacket registryDataPacket8 = new ClientboundRegistryDataPacket(RegistryCustom.BANNER_PATTERN);
+ sendPacket(registryDataPacket8);
ClientboundFinishConfigurationPacket clientboundFinishConfigurationPacket = new ClientboundFinishConfigurationPacket();
sendPacket(clientboundFinishConfigurationPacket);
@@ -587,7 +603,7 @@ public class ClientConnection extends Thread {
worldSpawn = spawnEvent.getSpawnLocation();
World world = worldSpawn.getWorld();
- PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, Limbo.getInstance().getWorlds(), (byte) properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, world.getEnvironment(), world, 0, properties.getDefaultGamemode(), false, true, 0);
+ PacketPlayOutLogin join = new PacketPlayOutLogin(player.getEntityId(), false, Limbo.getInstance().getWorlds(), properties.getMaxPlayers(), 8, 8, properties.isReducedDebugInfo(), true, false, world.getEnvironment(), world, 0, properties.getDefaultGamemode(), false, true, 0, false);
sendPacket(join);
Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode());
@@ -861,7 +877,7 @@ public class ClientConnection extends Thread {
}
}
}
- } catch (Exception e) {
+ } catch (Exception ignored) {
break;
}
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
index 811598f..6707a3b 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundLevelChunkWithLightPacket.java
@@ -19,7 +19,7 @@
package com.loohp.limbo.network.protocol.packets;
-import com.loohp.limbo.registry.Registry;
+import com.loohp.limbo.registry.BuiltInRegistries;
import com.loohp.limbo.utils.BitsUtils;
import com.loohp.limbo.utils.DataTypeIO;
import com.loohp.limbo.world.Environment;
@@ -247,7 +247,7 @@ public class ClientboundLevelChunkWithLightPacket extends PacketOut {
int z = each.getInt("z") % 16;
output.writeByte(((x & 15) << 4) | (z & 15));
output.writeShort(y);
- Integer id = Registry.BLOCK_ENTITY_TYPE.getId(Key.key(chunk.getBlockStateAt(x, y, z).getString("Name")));
+ Integer id = BuiltInRegistries.BLOCK_ENTITY_TYPE.getId(Key.key(chunk.getBlockStateAt(x, y, z).getString("Name")));
DataTypeIO.writeVarInt(output, id == null ? -1 : id);
DataTypeIO.writeTag(output, each);
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java
index b3e8eae..0fb3792 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/ClientboundRegistryDataPacket.java
@@ -19,23 +19,27 @@
package com.loohp.limbo.network.protocol.packets;
+import com.loohp.limbo.registry.RegistryCustom;
import com.loohp.limbo.utils.DataTypeIO;
+import net.kyori.adventure.key.Key;
import net.querz.nbt.tag.CompoundTag;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
+import java.nio.charset.StandardCharsets;
+import java.util.Map;
public class ClientboundRegistryDataPacket extends PacketOut {
- private final CompoundTag dimensionCodec;
+ private final RegistryCustom registry;
- public ClientboundRegistryDataPacket(CompoundTag dimensionCodec) {
- this.dimensionCodec = dimensionCodec;
+ public ClientboundRegistryDataPacket(RegistryCustom registry) {
+ this.registry = registry;
}
- public CompoundTag getDimensionCodec() {
- return dimensionCodec;
+ public RegistryCustom getRegistry() {
+ return registry;
}
@Override
@@ -45,7 +49,18 @@ public class ClientboundRegistryDataPacket extends PacketOut {
DataOutputStream output = new DataOutputStream(buffer);
output.writeByte(Packet.getConfigurationOut().get(getClass()));
- DataTypeIO.writeTag(output, dimensionCodec);
+ DataTypeIO.writeString(output, registry.getIdentifier().asString(), StandardCharsets.UTF_8);
+ DataTypeIO.writeVarInt(output, registry.getEntries().size());
+ for (Map.Entry entry : registry.getEntries().entrySet()) {
+ DataTypeIO.writeString(output, entry.getKey().asString(), StandardCharsets.UTF_8);
+ CompoundTag data = entry.getValue();
+ if (data == null) {
+ output.writeBoolean(false);
+ } else {
+ output.writeBoolean(true);
+ DataTypeIO.writeTag(output, data);
+ }
+ }
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java b/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
index ac7935e..67b5623 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/Packet.java
@@ -115,6 +115,8 @@ public abstract class Packet {
Class extends Packet> type = getClass();
if (handshakeIn.containsValue(type)) {
return ClientConnection.ClientState.HANDSHAKE;
+ } else if (statusIn.containsValue(type) || statusOut.containsKey(type)) {
+ return ClientConnection.ClientState.STATUS;
} else if (loginIn.containsValue(type) || loginOut.containsKey(type)) {
return ClientConnection.ClientState.LOGIN;
} else if (configurationIn.containsValue(type) || configurationOut.containsKey(type)) {
@@ -122,7 +124,7 @@ public abstract class Packet {
} else if (playIn.containsValue(type) || playOut.containsKey(type)) {
return ClientConnection.ClientState.PLAY;
} else {
- throw new IllegalStateException("This packet is not registered!");
+ throw new IllegalStateException("This packet of class " + type + " is not registered!");
}
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java
index a35b50a..1e07035 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketHandshakingIn.java
@@ -29,9 +29,10 @@ public class PacketHandshakingIn extends PacketIn {
public enum HandshakeType {
STATUS(1),
- LOGIN(2);
+ LOGIN(2),
+ TRANSFER(3);
- int networkId;
+ private final int networkId;
HandshakeType(int networkId) {
this.networkId = networkId;
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
index 2a8c2c0..db96d8a 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketLoginOutLoginSuccess.java
@@ -29,12 +29,14 @@ import java.util.UUID;
public class PacketLoginOutLoginSuccess extends PacketOut {
- private UUID uuid;
- private String username;
+ private final UUID uuid;
+ private final String username;
+ private final boolean strictErrorHandling;
- public PacketLoginOutLoginSuccess(UUID uuid, String username) {
+ public PacketLoginOutLoginSuccess(UUID uuid, String username, boolean strictErrorHandling) {
this.uuid = uuid;
this.username = username;
+ this.strictErrorHandling = strictErrorHandling;
}
public UUID getUuid() {
@@ -44,7 +46,11 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
public String getUsername() {
return username;
}
-
+
+ public boolean isStrictErrorHandling() {
+ return strictErrorHandling;
+ }
+
@Override
public byte[] serializePacket() throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -54,6 +60,7 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
DataTypeIO.writeUUID(output, uuid);
DataTypeIO.writeString(output, username, StandardCharsets.UTF_8);
DataTypeIO.writeVarInt(output, 0);
+ output.writeBoolean(strictErrorHandling);
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
index bd8a1b2..8175daa 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutLogin.java
@@ -19,6 +19,7 @@
package com.loohp.limbo.network.protocol.packets;
+import com.loohp.limbo.registry.RegistryCustom;
import com.loohp.limbo.utils.DataTypeIO;
import com.loohp.limbo.utils.GameMode;
import com.loohp.limbo.world.Environment;
@@ -36,7 +37,7 @@ public class PacketPlayOutLogin extends PacketOut {
private final int entityId;
private final boolean isHardcore;
private final List worlds;
- private final byte maxPlayers;
+ private final int maxPlayers;
private final int viewDistance;
private final int simulationDistance;
private final boolean reducedDebugInfo;
@@ -49,8 +50,9 @@ public class PacketPlayOutLogin extends PacketOut {
private final boolean isDebug;
private final boolean isFlat;
private final int portalCooldown;
+ private final boolean enforcesSecureChat;
- public PacketPlayOutLogin(int entityId, boolean isHardcore, List worlds, byte maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean doLimitedCrafting, Environment dimension, World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, int portalCooldown) {
+ public PacketPlayOutLogin(int entityId, boolean isHardcore, List worlds, int maxPlayers, int viewDistance, int simulationDistance, boolean reducedDebugInfo, boolean enableRespawnScreen, boolean doLimitedCrafting, Environment dimension, World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, int portalCooldown, boolean enforcesSecureChat) {
this.entityId = entityId;
this.isHardcore = isHardcore;
this.worlds = worlds;
@@ -67,6 +69,7 @@ public class PacketPlayOutLogin extends PacketOut {
this.isDebug = isDebug;
this.isFlat = isFlat;
this.portalCooldown = portalCooldown;
+ this.enforcesSecureChat = enforcesSecureChat;
}
public int getEntityId() {
@@ -81,7 +84,7 @@ public class PacketPlayOutLogin extends PacketOut {
return worlds;
}
- public byte getMaxPlayers() {
+ public int getMaxPlayers() {
return maxPlayers;
}
@@ -133,6 +136,10 @@ public class PacketPlayOutLogin extends PacketOut {
return portalCooldown;
}
+ public boolean isEnforcesSecureChat() {
+ return enforcesSecureChat;
+ }
+
@Override
public byte[] serializePacket() throws IOException {
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
@@ -151,7 +158,7 @@ public class PacketPlayOutLogin extends PacketOut {
output.writeBoolean(reducedDebugInfo);
output.writeBoolean(enableRespawnScreen);
output.writeBoolean(doLimitedCrafting);
- DataTypeIO.writeString(output, world.getEnvironment().getKey().toString(), StandardCharsets.UTF_8);
+ DataTypeIO.writeVarInt(output, RegistryCustom.DIMENSION_TYPE.indexOf(world.getEnvironment().getKey()));
DataTypeIO.writeString(output, Key.key(world.getName()).toString(), StandardCharsets.UTF_8);
output.writeLong(hashedSeed);
output.writeByte((byte) gamemode.getId());
@@ -160,6 +167,7 @@ public class PacketPlayOutLogin extends PacketOut {
output.writeBoolean(isFlat);
output.writeBoolean(false);
DataTypeIO.writeVarInt(output, portalCooldown);
+ output.writeBoolean(enforcesSecureChat);
return buffer.toByteArray();
}
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java
index 22870ed..7ead132 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutOpenWindow.java
@@ -19,7 +19,7 @@
package com.loohp.limbo.network.protocol.packets;
-import com.loohp.limbo.registry.Registry;
+import com.loohp.limbo.registry.BuiltInRegistries;
import com.loohp.limbo.utils.DataTypeIO;
import net.kyori.adventure.key.Key;
import net.kyori.adventure.text.Component;
@@ -60,7 +60,7 @@ public class PacketPlayOutOpenWindow extends PacketOut {
output.writeByte(Packet.getPlayOut().get(getClass()));
DataTypeIO.writeVarInt(output, containerId);
- DataTypeIO.writeVarInt(output, Registry.MENU_REGISTRY.getId(type));
+ DataTypeIO.writeVarInt(output, BuiltInRegistries.MENU_REGISTRY.getId(type));
DataTypeIO.writeComponent(output, title);
return buffer.toByteArray();
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
index 9372426..32ecacd 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutRespawn.java
@@ -19,6 +19,7 @@
package com.loohp.limbo.network.protocol.packets;
+import com.loohp.limbo.registry.RegistryCustom;
import com.loohp.limbo.utils.DataTypeIO;
import com.loohp.limbo.utils.GameMode;
import com.loohp.limbo.world.Environment;
@@ -35,18 +36,16 @@ import java.nio.charset.StandardCharsets;
public class PacketPlayOutRespawn extends PacketOut {
private Environment dimension;
- private String worldName;
- private CompoundTag dimensionCodec;
+ private World world;
private long hashedSeed;
private GameMode gamemode;
private boolean isDebug;
private boolean isFlat;
private boolean copyMetaData;
- public PacketPlayOutRespawn(World world, CompoundTag dimensionCodec, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, boolean copyMetaData) {
+ public PacketPlayOutRespawn(World world, long hashedSeed, GameMode gamemode, boolean isDebug, boolean isFlat, boolean copyMetaData) {
this.dimension = world.getEnvironment();
- this.dimensionCodec = dimensionCodec;
- this.worldName = Key.key(world.getName()).toString();
+ this.world = world;
this.hashedSeed = hashedSeed;
this.gamemode = gamemode;
this.isDebug = isDebug;
@@ -54,16 +53,12 @@ public class PacketPlayOutRespawn extends PacketOut {
this.copyMetaData = copyMetaData;
}
- public CompoundTag getDimensionCodec() {
- return dimensionCodec;
- }
-
public Environment getDimension() {
return dimension;
}
- public String getWorldName() {
- return worldName;
+ public World getWorld() {
+ return world;
}
public long getHashedSeed() {
@@ -92,16 +87,9 @@ public class PacketPlayOutRespawn extends PacketOut {
DataOutputStream output = new DataOutputStream(buffer);
output.writeByte(Packet.getPlayOut().get(getClass()));
- CompoundTag tag = null;
- ListTag list = dimensionCodec.getCompoundTag("minecraft:dimension_type").getListTag("value").asCompoundTagList();
- for (CompoundTag each : list) {
- if (each.getString("name").equals(dimension.getKey().toString())) {
- tag = each.getCompoundTag("element");
- break;
- }
- }
- DataTypeIO.writeTag(output, tag != null ? tag : list.get(0));
- DataTypeIO.writeString(output, worldName, StandardCharsets.UTF_8);
+
+ DataTypeIO.writeVarInt(output, RegistryCustom.DIMENSION_TYPE.indexOf(world.getEnvironment().getKey()));
+ DataTypeIO.writeString(output, Key.key(world.getName()).toString(), StandardCharsets.UTF_8);
output.writeLong(hashedSeed);
output.writeByte((byte) gamemode.getId());
output.writeByte((byte) gamemode.getId());
diff --git a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSetSlot.java b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSetSlot.java
index 992347f..db78c79 100644
--- a/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSetSlot.java
+++ b/src/main/java/com/loohp/limbo/network/protocol/packets/PacketPlayOutSetSlot.java
@@ -25,7 +25,6 @@ import com.loohp.limbo.utils.DataTypeIO;
import java.io.ByteArrayOutputStream;
import java.io.DataOutputStream;
import java.io.IOException;
-import java.util.List;
public class PacketPlayOutSetSlot extends PacketOut {
diff --git a/src/main/java/com/loohp/limbo/player/Player.java b/src/main/java/com/loohp/limbo/player/Player.java
index 804e33a..c02c07d 100644
--- a/src/main/java/com/loohp/limbo/player/Player.java
+++ b/src/main/java/com/loohp/limbo/player/Player.java
@@ -248,7 +248,7 @@ public class Player extends LivingEntity implements CommandSender, InventoryHold
super.teleport(location);
try {
if (!world.equals(location.getWorld())) {
- PacketPlayOutRespawn respawn = new PacketPlayOutRespawn(location.getWorld(), Limbo.getInstance().getDimensionRegistry().getCodec(), 0, gamemode, false, false, true);
+ PacketPlayOutRespawn respawn = new PacketPlayOutRespawn(location.getWorld(), 0, gamemode, false, false, true);
clientConnection.sendPacket(respawn);
}
PacketPlayOutPositionAndLook positionLook = new PacketPlayOutPositionAndLook(location.getX(), location.getY(), location.getZ(), location.getYaw(), location.getPitch(), 1);
diff --git a/src/main/java/com/loohp/limbo/registry/Registry.java b/src/main/java/com/loohp/limbo/registry/BuiltInRegistries.java
similarity index 77%
rename from src/main/java/com/loohp/limbo/registry/Registry.java
rename to src/main/java/com/loohp/limbo/registry/BuiltInRegistries.java
index 72dab8a..f3c39c4 100644
--- a/src/main/java/com/loohp/limbo/registry/Registry.java
+++ b/src/main/java/com/loohp/limbo/registry/BuiltInRegistries.java
@@ -27,32 +27,31 @@ import org.json.simple.JSONObject;
import org.json.simple.parser.JSONParser;
import org.json.simple.parser.ParseException;
-import java.io.File;
-import java.io.FileInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.io.InputStreamReader;
import java.nio.charset.StandardCharsets;
-import java.nio.file.Files;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
-public class Registry {
+public abstract class BuiltInRegistries {
public static final BlockEntityRegistry BLOCK_ENTITY_TYPE;
public static final ItemRegistry ITEM_REGISTRY;
public static final MenuRegistry MENU_REGISTRY;
+ public static final DataComponentTypeRegistry DATA_COMPONENT_TYPE;
static {
- String name = "registries.json";
+ String name = "reports/registries.json";
Map blockEntityType = new HashMap<>();
Key defaultItemKey = null;
BiMap itemIds = HashBiMap.create();
Map menuIds = new HashMap<>();
+ BiMap dataComponentTypeIds = HashBiMap.create();
InputStream inputStream = Limbo.class.getClassLoader().getResourceAsStream(name);
if (inputStream == null) {
@@ -83,22 +82,33 @@ public class Registry {
int id = ((Number) ((JSONObject) menuEntriesJson.get(key)).get("protocol_id")).intValue();
menuIds.put(Key.key(key), id);
}
+
+ JSONObject dataComponentTypeEntriesJson = (JSONObject) ((JSONObject) json.get("minecraft:data_component_type")).get("entries");
+ for (Object obj : dataComponentTypeEntriesJson.keySet()) {
+ String key = obj.toString();
+ int id = ((Number) ((JSONObject) dataComponentTypeEntriesJson.get(key)).get("protocol_id")).intValue();
+ dataComponentTypeIds.put(Key.key(key), id);
+ }
} catch (IOException | ParseException e) {
e.printStackTrace();
}
BLOCK_ENTITY_TYPE = new BlockEntityRegistry(blockEntityType);
ITEM_REGISTRY = new ItemRegistry(defaultItemKey, itemIds);
MENU_REGISTRY = new MenuRegistry(menuIds);
+ DATA_COMPONENT_TYPE = new DataComponentTypeRegistry(dataComponentTypeIds);
}
+
+ public abstract int getId(Key key);
- public static class BlockEntityRegistry {
+ public static class BlockEntityRegistry extends BuiltInRegistries {
private Map blockEntityType;
private BlockEntityRegistry(Map blockEntityType) {
this.blockEntityType = blockEntityType;
}
-
+
+ @Override
public int getId(Key key) {
Integer exact = blockEntityType.get(key);
if (exact != null) {
@@ -121,7 +131,7 @@ public class Registry {
}
}
- public static class ItemRegistry {
+ public static class ItemRegistry extends BuiltInRegistries {
private final Key defaultKey;
private final BiMap itemIds;
@@ -135,6 +145,7 @@ public class Registry {
return defaultKey;
}
+ @Override
public int getId(Key key) {
Integer id = itemIds.get(key);
if (id != null) {
@@ -151,7 +162,7 @@ public class Registry {
}
}
- public static class MenuRegistry {
+ public static class MenuRegistry extends BuiltInRegistries {
private final Map menuIds;
@@ -159,9 +170,28 @@ public class Registry {
this.menuIds = menuIds;
}
+ @Override
public int getId(Key key) {
return menuIds.getOrDefault(key, -1);
}
}
+ public static class DataComponentTypeRegistry extends BuiltInRegistries {
+
+ private final BiMap dataComponentTypeIds;
+
+ private DataComponentTypeRegistry(BiMap dataComponentTypeIds) {
+ this.dataComponentTypeIds = dataComponentTypeIds;
+ }
+
+ @Override
+ public int getId(Key key) {
+ return dataComponentTypeIds.getOrDefault(key, -1);
+ }
+
+ public Key fromId(int id) {
+ return dataComponentTypeIds.inverse().get(id);
+ }
+ }
+
}
diff --git a/src/main/java/com/loohp/limbo/registry/DataComponentTypes.java b/src/main/java/com/loohp/limbo/registry/DataComponentTypes.java
new file mode 100644
index 0000000..b7acf6e
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/registry/DataComponentTypes.java
@@ -0,0 +1,82 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2024. LoohpJames
+ * Copyright (C) 2024. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.registry;
+
+import com.google.gson.JsonElement;
+import com.loohp.limbo.utils.NbtComponentSerializer;
+import net.kyori.adventure.key.Key;
+import net.kyori.adventure.text.Component;
+import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer;
+import net.querz.nbt.tag.Tag;
+
+import java.util.function.Function;
+
+public class DataComponentTypes {
+
+ public static final DataComponentTypes CUSTOM_NAME = new DataComponentTypes<>("custom_name", new DataComponentCodec<>(component -> {
+ JsonElement element = GsonComponentSerializer.gson().serializeToTree(component);
+ return NbtComponentSerializer.jsonComponentToTag(element);
+ }, tag -> {
+ JsonElement element = NbtComponentSerializer.tagComponentToJson(tag);
+ return GsonComponentSerializer.gson().deserializeFromTree(element);
+ }));
+
+ private final Key key;
+ private final DataComponentCodec codec;
+
+ @SuppressWarnings("PatternValidation")
+ public DataComponentTypes(String key, DataComponentCodec codec) {
+ this(Key.key(key), codec);
+ }
+
+ public DataComponentTypes(Key key, DataComponentCodec codec) {
+ this.key = key;
+ this.codec = codec;
+ }
+
+ public Key getKey() {
+ return key;
+ }
+
+ public DataComponentCodec getCodec() {
+ return codec;
+ }
+
+ public static class DataComponentCodec {
+
+ private final Function> encode;
+ private final Function, T> decode;
+
+ public DataComponentCodec(Function> encode, Function, T> decode) {
+ this.encode = encode;
+ this.decode = decode;
+ }
+
+ @SuppressWarnings("unchecked")
+ public Tag> encode(T t) {
+ return encode.apply((T) t);
+ }
+
+ public T decode(Tag> tag) {
+ return decode.apply(tag);
+ }
+ }
+
+}
diff --git a/src/main/java/com/loohp/limbo/registry/RegistryCustom.java b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java
new file mode 100644
index 0000000..34c7d46
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/registry/RegistryCustom.java
@@ -0,0 +1,103 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2024. LoohpJames
+ * Copyright (C) 2024. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.registry;
+
+import com.loohp.limbo.Limbo;
+import com.loohp.limbo.utils.ClasspathResourcesUtils;
+import com.loohp.limbo.utils.CustomNBTUtils;
+import net.kyori.adventure.key.Key;
+import net.querz.nbt.tag.CompoundTag;
+import org.json.simple.JSONObject;
+import org.json.simple.parser.JSONParser;
+import org.json.simple.parser.ParseException;
+
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.InputStreamReader;
+import java.nio.charset.StandardCharsets;
+import java.util.LinkedHashMap;
+import java.util.Map;
+import java.util.regex.Pattern;
+
+public class RegistryCustom {
+
+ public static final RegistryCustom WORLDGEN_BIOME = new RegistryCustom("worldgen/biome");
+ public static final RegistryCustom CHAT_TYPE = new RegistryCustom("chat_type");
+ public static final RegistryCustom TRIM_PATTERN = new RegistryCustom("trim_pattern");
+ public static final RegistryCustom TRIM_MATERIAL = new RegistryCustom("trim_material");
+ public static final RegistryCustom WOLF_VARIANT = new RegistryCustom("wolf_variant");
+ public static final RegistryCustom DIMENSION_TYPE = new RegistryCustom("dimension_type");
+ public static final RegistryCustom DAMAGE_TYPE = new RegistryCustom("damage_type");
+ public static final RegistryCustom BANNER_PATTERN = new RegistryCustom("banner_pattern");
+
+ private final Key identifier;
+ private final Map entries;
+
+ public RegistryCustom(Key identifier, Map entries) {
+ this.identifier = identifier;
+ this.entries = entries;
+ }
+
+ @SuppressWarnings("PatternValidation")
+ public RegistryCustom(String identifier) {
+ this(Key.key(identifier));
+ }
+
+ @SuppressWarnings("PatternValidation")
+ public RegistryCustom(Key identifier) {
+ this.identifier = identifier;
+ Map entries = new LinkedHashMap<>();
+ String pathStart = "data/" + identifier.namespace() + "/" + identifier.value() + "/";
+ Pattern pattern = Pattern.compile(Pattern.quote(pathStart) + ".*");
+ for (String path : ClasspathResourcesUtils.getResources(pattern)) {
+ if (path.endsWith(".json")) {
+ try (InputStream inputStream = Limbo.class.getClassLoader().getResourceAsStream(path)) {
+ Key entryKey = Key.key(identifier.namespace(), path.substring(path.lastIndexOf('/') + 1, path.lastIndexOf(".")));
+ JSONObject jsonObject = (JSONObject) new JSONParser().parse(new InputStreamReader(inputStream, StandardCharsets.UTF_8));
+ CompoundTag value = CustomNBTUtils.getCompoundTagFromJson(jsonObject);
+ entries.put(entryKey, value);
+ } catch (IOException | ParseException e) {
+ throw new RuntimeException(e);
+ }
+ }
+ }
+ this.entries = entries;
+ }
+
+ public Key getIdentifier() {
+ return identifier;
+ }
+
+ public Map getEntries() {
+ return entries;
+ }
+
+ public int indexOf(Key key) {
+ int i = 0;
+ for (Key entryKey : entries.keySet()) {
+ if (key.equals(entryKey)) {
+ return i;
+ }
+ i++;
+ }
+ return -1;
+ }
+
+}
diff --git a/src/main/java/com/loohp/limbo/utils/ClasspathResourcesUtils.java b/src/main/java/com/loohp/limbo/utils/ClasspathResourcesUtils.java
new file mode 100644
index 0000000..84e0e41
--- /dev/null
+++ b/src/main/java/com/loohp/limbo/utils/ClasspathResourcesUtils.java
@@ -0,0 +1,111 @@
+/*
+ * This file is part of Limbo.
+ *
+ * Copyright (C) 2024. LoohpJames
+ * Copyright (C) 2024. Contributors
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+
+package com.loohp.limbo.utils;
+
+import java.io.File;
+import java.io.IOException;
+import java.util.ArrayList;
+import java.util.Collection;
+import java.util.Enumeration;
+import java.util.List;
+import java.util.regex.Pattern;
+import java.util.zip.ZipEntry;
+import java.util.zip.ZipFile;
+
+/**
+ * list resources available from the classpath @ *
+ */
+public class ClasspathResourcesUtils {
+
+ /**
+ * for all elements of java.class.path get a Collection of resources Pattern
+ * pattern = Pattern.compile(".*"); gets all resources
+ *
+ * @param pattern
+ * the pattern to match
+ * @return the resources in the order they are found
+ */
+ public static Collection getResources(Pattern pattern) {
+ List retval = new ArrayList<>();
+ String classPath = System.getProperty("java.class.path", ".");
+ String[] classPathElements = classPath.split(File.pathSeparator);
+ for (String element : classPathElements) {
+ retval.addAll(getResources(element, pattern));
+ }
+ return retval;
+ }
+
+ private static Collection getResources(String element, Pattern pattern) {
+ List retval = new ArrayList<>();
+ File file = new File(element);
+ if (file.isDirectory()) {
+ retval.addAll(getResourcesFromDirectory(file, pattern));
+ } else{
+ retval.addAll(getResourcesFromJarFile(file, pattern));
+ }
+ return retval;
+ }
+
+ private static Collection getResourcesFromJarFile(final File file, final Pattern pattern) {
+ List retval = new ArrayList<>();
+ ZipFile zf;
+ try {
+ zf = new ZipFile(file);
+ } catch (IOException e){
+ throw new Error(e);
+ }
+ Enumeration extends ZipEntry> e = zf.entries();
+ while (e.hasMoreElements()) {
+ ZipEntry ze = e.nextElement();
+ String fileName = ze.getName();
+ boolean accept = pattern.matcher(fileName).matches();
+ if (accept) {
+ retval.add(fileName);
+ }
+ }
+ try {
+ zf.close();
+ } catch (IOException e1) {
+ throw new Error(e1);
+ }
+ return retval;
+ }
+
+ private static Collection getResourcesFromDirectory(File directory, Pattern pattern){
+ List retval = new ArrayList<>();
+ File[] fileList = directory.listFiles();
+ for (File file : fileList) {
+ if (file.isDirectory()) {
+ retval.addAll(getResourcesFromDirectory(file, pattern));
+ } else {
+ try {
+ String fileName = file.getCanonicalPath();
+ boolean accept = pattern.matcher(fileName).matches();
+ if (accept) {
+ retval.add(fileName);
+ }
+ } catch (IOException e) {
+ throw new Error(e);
+ }
+ }
+ }
+ return retval;
+ }
+}
\ No newline at end of file
diff --git a/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java b/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
index da9b186..c952d78 100644
--- a/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
+++ b/src/main/java/com/loohp/limbo/utils/CustomNBTUtils.java
@@ -19,17 +19,11 @@
package com.loohp.limbo.utils;
-import net.querz.nbt.tag.ByteArrayTag;
import net.querz.nbt.tag.ByteTag;
import net.querz.nbt.tag.CompoundTag;
import net.querz.nbt.tag.DoubleTag;
-import net.querz.nbt.tag.FloatTag;
-import net.querz.nbt.tag.IntArrayTag;
-import net.querz.nbt.tag.IntTag;
import net.querz.nbt.tag.ListTag;
-import net.querz.nbt.tag.LongArrayTag;
import net.querz.nbt.tag.LongTag;
-import net.querz.nbt.tag.ShortTag;
import net.querz.nbt.tag.StringTag;
import net.querz.nbt.tag.Tag;
import org.json.simple.JSONArray;
@@ -38,160 +32,70 @@ import org.json.simple.JSONObject;
@SuppressWarnings("rawtypes")
public class CustomNBTUtils {
- public enum TagClass {
- CompoundTagClass(CompoundTag.class),
- ByteTagClass(ByteTag.class),
- ShortTagClass(ShortTag.class),
- IntTagClass(IntTag.class),
- LongTagClass(LongTag.class),
- FloatTagClass(FloatTag.class),
- DoubleTagClass(DoubleTag.class),
- ByteArrayTagClass(ByteArrayTag.class),
- IntArrayTagClass(IntArrayTag.class),
- LongArrayTagClass(LongArrayTag.class),
- StringTagClass(StringTag.class),
- ListTagClass(ListTag.class);
-
- Class extends Tag> clazz;
-
- TagClass(Class extends Tag> clazz) {
- this.clazz = clazz;
- }
-
- public Class extends Tag> getTagClass() {
- return clazz;
- }
- }
-
- public static Class extends Tag> getClassFromName(String name) {
- for (TagClass clazz : TagClass.values()) {
- if (clazz.getTagClass().getSimpleName().equals(name)) {
- return clazz.getTagClass();
- }
- }
- return null;
- }
-
public static CompoundTag getCompoundTagFromJson(JSONObject json) {
CompoundTag tag = new CompoundTag();
for (Object obj : json.keySet()) {
String key = (String) obj;
- JSONObject inside = (JSONObject) json.get(key);
- String type = (String) inside.get("type");
-
- switch (type) {
- case "ByteTag":
- tag.putByte(key, (byte) (long) inside.get("value"));
- break;
- case "ShortTag":
- tag.putShort(key, (short) (long) inside.get("value"));
- break;
- case "IntTag":
- tag.putInt(key, (int) (long) inside.get("value"));
- break;
- case "LongTag":
- tag.putLong(key, (long) inside.get("value"));
- break;
- case "FloatTag":
- tag.putFloat(key, inside.get("value") instanceof Long ? (float) (long) inside.get("value") : (float) (double) inside.get("value"));
- break;
- case "DoubleTag":
- tag.putDouble(key, inside.get("value") instanceof Long ? (double) (long) inside.get("value") : (double) inside.get("value"));
- break;
- case "ByteArrayTag":
- tag.putByteArray(key, CustomArrayUtils.longArrayToByteArray((long[]) inside.get("value")));
- break;
- case "IntArrayTag":
- tag.putIntArray(key, CustomArrayUtils.longArrayToIntArray((long[]) inside.get("value")));
- break;
- case "LongArrayTag":
- tag.putLongArray(key, (long[]) inside.get("value"));
- break;
- case "StringTag":
- tag.putString(key, (String) inside.get("value"));
- break;
- case "CompoundTag":
- tag.put(key, getCompoundTagFromJson((JSONObject) inside.get("value")));
- break;
- case "ListTag":
- tag.put(key, getListTagFromJson((JSONObject) inside.get("value")));
- break;
+ Object rawValue = json.get(key);
+
+ if (rawValue instanceof JSONObject) {
+ tag.put(key, getCompoundTagFromJson((JSONObject) rawValue));
+ } else if (rawValue instanceof JSONArray) {
+ tag.put(key, getListTagFromJson((JSONArray) rawValue));
+ } else if (rawValue instanceof Boolean) {
+ tag.putBoolean(key, (boolean) rawValue);
+ } else if (rawValue instanceof Long) {
+ tag.putLong(key, (long) rawValue);
+ } else if (rawValue instanceof Double) {
+ tag.putDouble(key, (double) rawValue);
+ } else if (rawValue instanceof String) {
+ tag.putString(key, (String) rawValue);
}
}
return tag;
}
- public static ListTag> getListTagFromJson(JSONObject json) {
- String type = (String) json.get("type");
- JSONArray array = (JSONArray) json.get("list");
-
- ListTag> listTag = ListTag.createUnchecked(getClassFromName(type));
-
- switch (type) {
- case "ByteTag":
- for (Object obj : array) {
- listTag.addByte((byte) (long) obj);
- }
- break;
- case "ShortTag":
- for (Object obj : array) {
- listTag.addShort((short) (long) obj);
- }
- break;
- case "IntTag":
- for (Object obj : array) {
- listTag.addInt((int) (long) obj);
- }
- break;
- case "LongTag":
- for (Object obj : array) {
- listTag.addLong((long) obj);
- }
- break;
- case "FloatTag":
- for (Object obj : array) {
- listTag.addFloat(obj instanceof Long ? (float) (long) obj : (float) (double) obj);
- }
- break;
- case "DoubleTag":
- for (Object obj : array) {
- listTag.addDouble(obj instanceof Long ? (double) (long) obj : (double) obj);
- }
- break;
- case "ByteArrayTag":
- for (Object obj : array) {
- listTag.addByteArray(CustomArrayUtils.longArrayToByteArray((long[]) obj));
- }
- break;
- case "IntArrayTag":
- for (Object obj : array) {
- listTag.addIntArray(CustomArrayUtils.longArrayToIntArray((long[]) obj));
- }
- break;
- case "LongArrayTag":
- for (Object obj : array) {
- listTag.addLongArray((long[]) obj);
- }
- break;
- case "StringTag":
- for (Object obj : array) {
- listTag.addString((String) obj);
- }
- break;
- case "CompoundTag":
- for (Object obj : array) {
- listTag.asCompoundTagList().add(getCompoundTagFromJson((JSONObject) obj));
- }
- break;
- case "ListTag":
- for (Object obj : array) {
- listTag.asListTagList().add(getListTagFromJson((JSONObject) obj));
- }
- break;
+ @SuppressWarnings("ExtractMethodRecommender")
+ public static ListTag> getListTagFromJson(JSONArray json) {
+ if (json.isEmpty()) {
+ return new ListTag<>(StringTag.class);
+ }
+ Object firstValue = json.get(0);
+ Class extends Tag> type;
+ if (firstValue instanceof JSONObject) {
+ type = CompoundTag.class;
+ } else if (firstValue instanceof JSONArray) {
+ type = ListTag.class;
+ } else if (firstValue instanceof Boolean) {
+ type = ByteTag.class;
+ } else if (firstValue instanceof Long) {
+ type = LongTag.class;
+ } else if (firstValue instanceof Double) {
+ type = DoubleTag.class;
+ } else if (firstValue instanceof String) {
+ type = StringTag.class;
+ } else {
+ throw new RuntimeException();
+ }
+
+ ListTag> listTag = ListTag.createUnchecked(type);
+ for (Object rawValue : json) {
+ if (rawValue instanceof JSONObject) {
+ listTag.asCompoundTagList().add(getCompoundTagFromJson((JSONObject) rawValue));
+ } else if (rawValue instanceof JSONArray) {
+ listTag.asListTagList().add(getListTagFromJson((JSONArray) rawValue));
+ } else if (rawValue instanceof Boolean) {
+ listTag.addBoolean((boolean) rawValue);
+ } else if (rawValue instanceof Long) {
+ listTag.addLong((long) rawValue);
+ } else if (rawValue instanceof Double) {
+ listTag.addDouble((double) rawValue);
+ } else if (rawValue instanceof String) {
+ listTag.addString((String) rawValue);
+ }
}
-
return listTag;
}
diff --git a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
index 7b8e1f4..101f5d9 100644
--- a/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
+++ b/src/main/java/com/loohp/limbo/utils/DataTypeIO.java
@@ -24,14 +24,13 @@ import com.loohp.limbo.inventory.ItemStack;
import com.loohp.limbo.location.BlockFace;
import com.loohp.limbo.location.MovingObjectPositionBlock;
import com.loohp.limbo.location.Vector;
-import com.loohp.limbo.registry.Registry;
+import com.loohp.limbo.registry.BuiltInRegistries;
import com.loohp.limbo.world.BlockPosition;
import net.kyori.adventure.key.Key;
import net.kyori.adventure.text.Component;
import net.kyori.adventure.text.serializer.gson.GsonComponentSerializer;
import net.querz.nbt.io.NBTInputStream;
import net.querz.nbt.io.NBTOutputStream;
-import net.querz.nbt.tag.CompoundTag;
import net.querz.nbt.tag.EndTag;
import net.querz.nbt.tag.Tag;
@@ -44,29 +43,43 @@ import java.nio.charset.Charset;
import java.util.Arrays;
import java.util.BitSet;
import java.util.EnumSet;
+import java.util.HashMap;
+import java.util.Map;
import java.util.UUID;
public class DataTypeIO {
public static void writeItemStack(DataOutputStream out, ItemStack itemstack) throws IOException {
if (itemstack == null || itemstack.isSimilar(ItemStack.AIR) || itemstack.amount() == 0) {
- out.writeBoolean(false);
+ DataTypeIO.writeVarInt(out, 0);
} else {
- out.writeBoolean(true);
- writeVarInt(out, Registry.ITEM_REGISTRY.getId(itemstack.type()));
- out.writeByte(itemstack.amount());
- writeTag(out, itemstack.nbt());
+ DataTypeIO.writeVarInt(out, itemstack.amount());
+ writeVarInt(out, BuiltInRegistries.ITEM_REGISTRY.getId(itemstack.type()));
+ Map> components = itemstack.components();
+ DataTypeIO.writeVarInt(out, components.size());
+ DataTypeIO.writeVarInt(out, 0);
+ for (Map.Entry> entry : components.entrySet()) {
+ DataTypeIO.writeVarInt(out, BuiltInRegistries.DATA_COMPONENT_TYPE.getId(entry.getKey()));
+ DataTypeIO.writeTag(out, entry.getValue());
+ }
}
}
- public static ItemStack readItemStack(DataInputStream in) throws IOException {
- if (!in.readBoolean()) {
+ public static ItemStack readItemStack(DataInputStream in) throws IOException {
+ int amount = DataTypeIO.readVarInt(in);
+ if (amount <= 0) {
return ItemStack.AIR;
} else {
- Key key = Registry.ITEM_REGISTRY.fromId(readVarInt(in));
- byte amount = in.readByte();
- CompoundTag nbt = readTag(in, CompoundTag.class);
- return new ItemStack(key, amount, nbt);
+ Key key = BuiltInRegistries.ITEM_REGISTRY.fromId(readVarInt(in));
+ int size = DataTypeIO.readVarInt(in);
+ DataTypeIO.readVarInt(in);
+ Map> components = new HashMap<>();
+ for (int i = 0; i < size; i++) {
+ Key componentKey = BuiltInRegistries.DATA_COMPONENT_TYPE.fromId(DataTypeIO.readVarInt(in));
+ Tag> component = readTag(in, Tag.class);
+ components.put(componentKey, component);
+ }
+ return new ItemStack(key, amount, components);
}
}
diff --git a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java b/src/main/java/com/loohp/limbo/world/DimensionRegistry.java
deleted file mode 100644
index c1480a6..0000000
--- a/src/main/java/com/loohp/limbo/world/DimensionRegistry.java
+++ /dev/null
@@ -1,67 +0,0 @@
-/*
- * This file is part of Limbo.
- *
- * Copyright (C) 2022. LoohpJames
- * Copyright (C) 2022. Contributors
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-
-package com.loohp.limbo.world;
-
-import com.loohp.limbo.Limbo;
-import com.loohp.limbo.utils.CustomNBTUtils;
-import net.querz.nbt.tag.CompoundTag;
-import org.json.simple.JSONObject;
-import org.json.simple.parser.JSONParser;
-import org.json.simple.parser.ParseException;
-
-import java.io.File;
-import java.io.IOException;
-import java.io.InputStream;
-import java.io.InputStreamReader;
-import java.nio.charset.StandardCharsets;
-import java.nio.file.Files;
-
-public class DimensionRegistry {
-
- private CompoundTag defaultTag;
- private CompoundTag codec;
-
- public DimensionRegistry() {
- this.defaultTag = new CompoundTag();
- String name = "dimension_registry.json";
-
- InputStream inputStream = Limbo.class.getClassLoader().getResourceAsStream(name);
- if (inputStream == null) {
- throw new RuntimeException("Failed to load " + name + " from jar!");
- }
- try (InputStreamReader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8)) {
- JSONObject json = (JSONObject) new JSONParser().parse(reader);
- CompoundTag tag = CustomNBTUtils.getCompoundTagFromJson((JSONObject) json.get("value"));
- defaultTag = tag;
- codec = defaultTag.clone();
- } catch (IOException | ParseException e) {
- e.printStackTrace();
- }
- }
-
- public void resetCodec() {
- codec = defaultTag.clone();
- }
-
- public CompoundTag getCodec() {
- return codec;
- }
-
-}
diff --git a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java
index e9dd234..f1a7929 100644
--- a/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java
+++ b/src/main/java/com/loohp/limbo/world/GeneratedBlockDataMappings.java
@@ -42,7 +42,7 @@ public class GeneratedBlockDataMappings {
private static JSONObject globalPalette = new JSONObject();
static {
- String block = "blocks.json";
+ String block = "reports/blocks.json";
InputStream inputStream = Limbo.class.getClassLoader().getResourceAsStream(block);
if (inputStream == null) {
throw new RuntimeException("Failed to load " + block + " from jar!");
diff --git a/src/main/resources/data/minecraft/banner_pattern/base.json b/src/main/resources/data/minecraft/banner_pattern/base.json
new file mode 100644
index 0000000..2b9ca99
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/border.json b/src/main/resources/data/minecraft/banner_pattern/border.json
new file mode 100644
index 0000000..02a7140
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/bricks.json b/src/main/resources/data/minecraft/banner_pattern/bricks.json
new file mode 100644
index 0000000..96fb4af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/circle.json b/src/main/resources/data/minecraft/banner_pattern/circle.json
new file mode 100644
index 0000000..6be3abb
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/creeper.json b/src/main/resources/data/minecraft/banner_pattern/creeper.json
new file mode 100644
index 0000000..d40f1a0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/cross.json b/src/main/resources/data/minecraft/banner_pattern/cross.json
new file mode 100644
index 0000000..7aaebd1
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/curly_border.json b/src/main/resources/data/minecraft/banner_pattern/curly_border.json
new file mode 100644
index 0000000..075a738
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/diagonal_left.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_left.json
new file mode 100644
index 0000000..aded65e
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/diagonal_right.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_right.json
new file mode 100644
index 0000000..118712e
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/diagonal_up_left.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_up_left.json
new file mode 100644
index 0000000..03568b5
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/diagonal_up_right.json b/src/main/resources/data/minecraft/banner_pattern/diagonal_up_right.json
new file mode 100644
index 0000000..fd565eb
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/flower.json b/src/main/resources/data/minecraft/banner_pattern/flower.json
new file mode 100644
index 0000000..61d1dac
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/globe.json b/src/main/resources/data/minecraft/banner_pattern/globe.json
new file mode 100644
index 0000000..8de960d
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/gradient.json b/src/main/resources/data/minecraft/banner_pattern/gradient.json
new file mode 100644
index 0000000..a006dee
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/gradient_up.json b/src/main/resources/data/minecraft/banner_pattern/gradient_up.json
new file mode 100644
index 0000000..13e3ec0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/half_horizontal.json b/src/main/resources/data/minecraft/banner_pattern/half_horizontal.json
new file mode 100644
index 0000000..79f588c
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json b/src/main/resources/data/minecraft/banner_pattern/half_horizontal_bottom.json
new file mode 100644
index 0000000..ae9e1b2
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/half_vertical.json b/src/main/resources/data/minecraft/banner_pattern/half_vertical.json
new file mode 100644
index 0000000..402cb01
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/half_vertical_right.json b/src/main/resources/data/minecraft/banner_pattern/half_vertical_right.json
new file mode 100644
index 0000000..0f3d722
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/mojang.json b/src/main/resources/data/minecraft/banner_pattern/mojang.json
new file mode 100644
index 0000000..fb8de92
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/piglin.json b/src/main/resources/data/minecraft/banner_pattern/piglin.json
new file mode 100644
index 0000000..7250324
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/rhombus.json b/src/main/resources/data/minecraft/banner_pattern/rhombus.json
new file mode 100644
index 0000000..445cc9c
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/skull.json b/src/main/resources/data/minecraft/banner_pattern/skull.json
new file mode 100644
index 0000000..1047618
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/small_stripes.json b/src/main/resources/data/minecraft/banner_pattern/small_stripes.json
new file mode 100644
index 0000000..fd76fc0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/square_bottom_left.json b/src/main/resources/data/minecraft/banner_pattern/square_bottom_left.json
new file mode 100644
index 0000000..f7376d6
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/square_bottom_right.json b/src/main/resources/data/minecraft/banner_pattern/square_bottom_right.json
new file mode 100644
index 0000000..b78aafa
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/square_top_left.json b/src/main/resources/data/minecraft/banner_pattern/square_top_left.json
new file mode 100644
index 0000000..a1505ad
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/square_top_right.json b/src/main/resources/data/minecraft/banner_pattern/square_top_right.json
new file mode 100644
index 0000000..3b09965
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/straight_cross.json b/src/main/resources/data/minecraft/banner_pattern/straight_cross.json
new file mode 100644
index 0000000..8df6cdc
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_bottom.json b/src/main/resources/data/minecraft/banner_pattern/stripe_bottom.json
new file mode 100644
index 0000000..0aa50a5
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_center.json b/src/main/resources/data/minecraft/banner_pattern/stripe_center.json
new file mode 100644
index 0000000..98fc7ab
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_downleft.json b/src/main/resources/data/minecraft/banner_pattern/stripe_downleft.json
new file mode 100644
index 0000000..4034606
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_downright.json b/src/main/resources/data/minecraft/banner_pattern/stripe_downright.json
new file mode 100644
index 0000000..3d5d185
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_left.json b/src/main/resources/data/minecraft/banner_pattern/stripe_left.json
new file mode 100644
index 0000000..e47d144
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_middle.json b/src/main/resources/data/minecraft/banner_pattern/stripe_middle.json
new file mode 100644
index 0000000..2a45a92
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_right.json b/src/main/resources/data/minecraft/banner_pattern/stripe_right.json
new file mode 100644
index 0000000..d36b02a
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/stripe_top.json b/src/main/resources/data/minecraft/banner_pattern/stripe_top.json
new file mode 100644
index 0000000..620c2b5
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/triangle_bottom.json b/src/main/resources/data/minecraft/banner_pattern/triangle_bottom.json
new file mode 100644
index 0000000..b6d0952
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/triangle_top.json b/src/main/resources/data/minecraft/banner_pattern/triangle_top.json
new file mode 100644
index 0000000..291315d
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/triangles_bottom.json b/src/main/resources/data/minecraft/banner_pattern/triangles_bottom.json
new file mode 100644
index 0000000..b837ad0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/banner_pattern/triangles_top.json b/src/main/resources/data/minecraft/banner_pattern/triangles_top.json
new file mode 100644
index 0000000..370c045
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/chat.json b/src/main/resources/data/minecraft/chat_type/chat.json
new file mode 100644
index 0000000..f84c68c
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/emote_command.json b/src/main/resources/data/minecraft/chat_type/emote_command.json
new file mode 100644
index 0000000..93aa7a2
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/msg_command_incoming.json b/src/main/resources/data/minecraft/chat_type/msg_command_incoming.json
new file mode 100644
index 0000000..67ed087
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/msg_command_outgoing.json b/src/main/resources/data/minecraft/chat_type/msg_command_outgoing.json
new file mode 100644
index 0000000..a8c2eb7
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/say_command.json b/src/main/resources/data/minecraft/chat_type/say_command.json
new file mode 100644
index 0000000..8a587a0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/team_msg_command_incoming.json b/src/main/resources/data/minecraft/chat_type/team_msg_command_incoming.json
new file mode 100644
index 0000000..e25eced
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/chat_type/team_msg_command_outgoing.json b/src/main/resources/data/minecraft/chat_type/team_msg_command_outgoing.json
new file mode 100644
index 0000000..f488846
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/arrow.json b/src/main/resources/data/minecraft/damage_type/arrow.json
new file mode 100644
index 0000000..62e9469
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/bad_respawn_point.json b/src/main/resources/data/minecraft/damage_type/bad_respawn_point.json
new file mode 100644
index 0000000..0970fd5
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/cactus.json b/src/main/resources/data/minecraft/damage_type/cactus.json
new file mode 100644
index 0000000..23877ae
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/cramming.json b/src/main/resources/data/minecraft/damage_type/cramming.json
new file mode 100644
index 0000000..2dd8c78
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/dragon_breath.json b/src/main/resources/data/minecraft/damage_type/dragon_breath.json
new file mode 100644
index 0000000..902f027
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/drown.json b/src/main/resources/data/minecraft/damage_type/drown.json
new file mode 100644
index 0000000..5d1d3ef
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/dry_out.json b/src/main/resources/data/minecraft/damage_type/dry_out.json
new file mode 100644
index 0000000..2bfa742
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/explosion.json b/src/main/resources/data/minecraft/damage_type/explosion.json
new file mode 100644
index 0000000..fb4317a
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/fall.json b/src/main/resources/data/minecraft/damage_type/fall.json
new file mode 100644
index 0000000..511ec35
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/falling_anvil.json b/src/main/resources/data/minecraft/damage_type/falling_anvil.json
new file mode 100644
index 0000000..7fe7d18
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/falling_block.json b/src/main/resources/data/minecraft/damage_type/falling_block.json
new file mode 100644
index 0000000..0559902
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/falling_stalactite.json b/src/main/resources/data/minecraft/damage_type/falling_stalactite.json
new file mode 100644
index 0000000..dab896d
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/fireball.json b/src/main/resources/data/minecraft/damage_type/fireball.json
new file mode 100644
index 0000000..48c8e31
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/fireworks.json b/src/main/resources/data/minecraft/damage_type/fireworks.json
new file mode 100644
index 0000000..0ec5446
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/fly_into_wall.json b/src/main/resources/data/minecraft/damage_type/fly_into_wall.json
new file mode 100644
index 0000000..649336e
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/freeze.json b/src/main/resources/data/minecraft/damage_type/freeze.json
new file mode 100644
index 0000000..d4b28da
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/generic.json b/src/main/resources/data/minecraft/damage_type/generic.json
new file mode 100644
index 0000000..3e83b89
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/generic_kill.json b/src/main/resources/data/minecraft/damage_type/generic_kill.json
new file mode 100644
index 0000000..1dc198a
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/hot_floor.json b/src/main/resources/data/minecraft/damage_type/hot_floor.json
new file mode 100644
index 0000000..52f8ac3
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/in_fire.json b/src/main/resources/data/minecraft/damage_type/in_fire.json
new file mode 100644
index 0000000..53255ee
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/in_wall.json b/src/main/resources/data/minecraft/damage_type/in_wall.json
new file mode 100644
index 0000000..8ad4503
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/indirect_magic.json b/src/main/resources/data/minecraft/damage_type/indirect_magic.json
new file mode 100644
index 0000000..86fb3ec
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/lava.json b/src/main/resources/data/minecraft/damage_type/lava.json
new file mode 100644
index 0000000..a164a6a
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/lightning_bolt.json b/src/main/resources/data/minecraft/damage_type/lightning_bolt.json
new file mode 100644
index 0000000..6d302c8
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/magic.json b/src/main/resources/data/minecraft/damage_type/magic.json
new file mode 100644
index 0000000..ef634d5
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/mob_attack.json b/src/main/resources/data/minecraft/damage_type/mob_attack.json
new file mode 100644
index 0000000..e77a1af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/mob_attack_no_aggro.json b/src/main/resources/data/minecraft/damage_type/mob_attack_no_aggro.json
new file mode 100644
index 0000000..e77a1af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/mob_projectile.json b/src/main/resources/data/minecraft/damage_type/mob_projectile.json
new file mode 100644
index 0000000..e77a1af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/on_fire.json b/src/main/resources/data/minecraft/damage_type/on_fire.json
new file mode 100644
index 0000000..bc19ee2
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/out_of_world.json b/src/main/resources/data/minecraft/damage_type/out_of_world.json
new file mode 100644
index 0000000..f67d3f6
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/outside_border.json b/src/main/resources/data/minecraft/damage_type/outside_border.json
new file mode 100644
index 0000000..09c3064
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/player_attack.json b/src/main/resources/data/minecraft/damage_type/player_attack.json
new file mode 100644
index 0000000..674995e
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/player_explosion.json b/src/main/resources/data/minecraft/damage_type/player_explosion.json
new file mode 100644
index 0000000..360c81e
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/sonic_boom.json b/src/main/resources/data/minecraft/damage_type/sonic_boom.json
new file mode 100644
index 0000000..0959660
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/spit.json b/src/main/resources/data/minecraft/damage_type/spit.json
new file mode 100644
index 0000000..e77a1af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/stalagmite.json b/src/main/resources/data/minecraft/damage_type/stalagmite.json
new file mode 100644
index 0000000..e9f6146
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/starve.json b/src/main/resources/data/minecraft/damage_type/starve.json
new file mode 100644
index 0000000..41cfca0
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/sting.json b/src/main/resources/data/minecraft/damage_type/sting.json
new file mode 100644
index 0000000..3ddf311
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/sweet_berry_bush.json b/src/main/resources/data/minecraft/damage_type/sweet_berry_bush.json
new file mode 100644
index 0000000..5daa1a6
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/thorns.json b/src/main/resources/data/minecraft/damage_type/thorns.json
new file mode 100644
index 0000000..da7ed2f
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/thrown.json b/src/main/resources/data/minecraft/damage_type/thrown.json
new file mode 100644
index 0000000..2a277af
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/trident.json b/src/main/resources/data/minecraft/damage_type/trident.json
new file mode 100644
index 0000000..0002f82
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/unattributed_fireball.json b/src/main/resources/data/minecraft/damage_type/unattributed_fireball.json
new file mode 100644
index 0000000..02751b6
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/wither.json b/src/main/resources/data/minecraft/damage_type/wither.json
new file mode 100644
index 0000000..27776cf
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/damage_type/wither_skull.json b/src/main/resources/data/minecraft/damage_type/wither_skull.json
new file mode 100644
index 0000000..b216a66
--- /dev/null
+++ b/src/main/resources/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/src/main/resources/data/minecraft/dimension_type/overworld.json b/src/main/resources/data/minecraft/dimension_type/overworld.json
new file mode 100644
index 0000000..4cffd20
--- /dev/null
+++ b/src/main/resources/data/minecraft/dimension_type/overworld.json
@@ -0,0 +1,23 @@
+{
+ "ambient_light": 0.0,
+ "bed_works": true,
+ "coordinate_scale": 1.0,
+ "effects": "minecraft:overworld",
+ "has_ceiling": false,
+ "has_raids": true,
+ "has_skylight": true,
+ "height": 256,
+ "infiniburn": "#minecraft:infiniburn_overworld",
+ "logical_height": 256,
+ "min_y": 0,
+ "monster_spawn_block_light_limit": 0,
+ "monster_spawn_light_level": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 0
+ },
+ "natural": true,
+ "piglin_safe": false,
+ "respawn_anchor_works": false,
+ "ultrawarm": false
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/dimension_type/overworld_caves.json b/src/main/resources/data/minecraft/dimension_type/overworld_caves.json
new file mode 100644
index 0000000..fec1892
--- /dev/null
+++ b/src/main/resources/data/minecraft/dimension_type/overworld_caves.json
@@ -0,0 +1,23 @@
+{
+ "ambient_light": 0.0,
+ "bed_works": true,
+ "coordinate_scale": 1.0,
+ "effects": "minecraft:overworld",
+ "has_ceiling": true,
+ "has_raids": true,
+ "has_skylight": true,
+ "height": 256,
+ "infiniburn": "#minecraft:infiniburn_overworld",
+ "logical_height": 256,
+ "min_y": 0,
+ "monster_spawn_block_light_limit": 0,
+ "monster_spawn_light_level": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 0
+ },
+ "natural": true,
+ "piglin_safe": false,
+ "respawn_anchor_works": false,
+ "ultrawarm": false
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/dimension_type/the_end.json b/src/main/resources/data/minecraft/dimension_type/the_end.json
new file mode 100644
index 0000000..7c6710c
--- /dev/null
+++ b/src/main/resources/data/minecraft/dimension_type/the_end.json
@@ -0,0 +1,24 @@
+{
+ "ambient_light": 0.0,
+ "bed_works": false,
+ "coordinate_scale": 1.0,
+ "effects": "minecraft:the_end",
+ "fixed_time": 6000,
+ "has_ceiling": false,
+ "has_raids": true,
+ "has_skylight": false,
+ "height": 256,
+ "infiniburn": "#minecraft:infiniburn_end",
+ "logical_height": 256,
+ "min_y": 0,
+ "monster_spawn_block_light_limit": 0,
+ "monster_spawn_light_level": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 0
+ },
+ "natural": false,
+ "piglin_safe": false,
+ "respawn_anchor_works": false,
+ "ultrawarm": false
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/dimension_type/the_nether.json b/src/main/resources/data/minecraft/dimension_type/the_nether.json
new file mode 100644
index 0000000..2e83188
--- /dev/null
+++ b/src/main/resources/data/minecraft/dimension_type/the_nether.json
@@ -0,0 +1,20 @@
+{
+ "ambient_light": 0.1,
+ "bed_works": false,
+ "coordinate_scale": 8.0,
+ "effects": "minecraft:the_nether",
+ "fixed_time": 18000,
+ "has_ceiling": true,
+ "has_raids": false,
+ "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,
+ "natural": false,
+ "piglin_safe": true,
+ "respawn_anchor_works": true,
+ "ultrawarm": true
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/amethyst.json b/src/main/resources/data/minecraft/trim_material/amethyst.json
new file mode 100644
index 0000000..85945cb
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/amethyst.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "amethyst",
+ "description": {
+ "color": "#9A5CC6",
+ "translate": "trim_material.minecraft.amethyst"
+ },
+ "ingredient": "minecraft:amethyst_shard",
+ "item_model_index": 1.0
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/copper.json b/src/main/resources/data/minecraft/trim_material/copper.json
new file mode 100644
index 0000000..a014bf7
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/copper.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "copper",
+ "description": {
+ "color": "#B4684D",
+ "translate": "trim_material.minecraft.copper"
+ },
+ "ingredient": "minecraft:copper_ingot",
+ "item_model_index": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/diamond.json b/src/main/resources/data/minecraft/trim_material/diamond.json
new file mode 100644
index 0000000..21b27e9
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/diamond.json
@@ -0,0 +1,12 @@
+{
+ "asset_name": "diamond",
+ "description": {
+ "color": "#6EECD2",
+ "translate": "trim_material.minecraft.diamond"
+ },
+ "ingredient": "minecraft:diamond",
+ "item_model_index": 0.8,
+ "override_armor_materials": {
+ "minecraft:diamond": "diamond_darker"
+ }
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/emerald.json b/src/main/resources/data/minecraft/trim_material/emerald.json
new file mode 100644
index 0000000..5776f6c
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/emerald.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "emerald",
+ "description": {
+ "color": "#11A036",
+ "translate": "trim_material.minecraft.emerald"
+ },
+ "ingredient": "minecraft:emerald",
+ "item_model_index": 0.7
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/gold.json b/src/main/resources/data/minecraft/trim_material/gold.json
new file mode 100644
index 0000000..195e14f
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/gold.json
@@ -0,0 +1,12 @@
+{
+ "asset_name": "gold",
+ "description": {
+ "color": "#DEB12D",
+ "translate": "trim_material.minecraft.gold"
+ },
+ "ingredient": "minecraft:gold_ingot",
+ "item_model_index": 0.6,
+ "override_armor_materials": {
+ "minecraft:gold": "gold_darker"
+ }
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/iron.json b/src/main/resources/data/minecraft/trim_material/iron.json
new file mode 100644
index 0000000..69ba5ec
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/iron.json
@@ -0,0 +1,12 @@
+{
+ "asset_name": "iron",
+ "description": {
+ "color": "#ECECEC",
+ "translate": "trim_material.minecraft.iron"
+ },
+ "ingredient": "minecraft:iron_ingot",
+ "item_model_index": 0.2,
+ "override_armor_materials": {
+ "minecraft:iron": "iron_darker"
+ }
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/lapis.json b/src/main/resources/data/minecraft/trim_material/lapis.json
new file mode 100644
index 0000000..eb31702
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/lapis.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "lapis",
+ "description": {
+ "color": "#416E97",
+ "translate": "trim_material.minecraft.lapis"
+ },
+ "ingredient": "minecraft:lapis_lazuli",
+ "item_model_index": 0.9
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/netherite.json b/src/main/resources/data/minecraft/trim_material/netherite.json
new file mode 100644
index 0000000..6cdd97a
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/netherite.json
@@ -0,0 +1,12 @@
+{
+ "asset_name": "netherite",
+ "description": {
+ "color": "#625859",
+ "translate": "trim_material.minecraft.netherite"
+ },
+ "ingredient": "minecraft:netherite_ingot",
+ "item_model_index": 0.3,
+ "override_armor_materials": {
+ "minecraft:netherite": "netherite_darker"
+ }
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/quartz.json b/src/main/resources/data/minecraft/trim_material/quartz.json
new file mode 100644
index 0000000..7600a10
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/quartz.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "quartz",
+ "description": {
+ "color": "#E3D4C4",
+ "translate": "trim_material.minecraft.quartz"
+ },
+ "ingredient": "minecraft:quartz",
+ "item_model_index": 0.1
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_material/redstone.json b/src/main/resources/data/minecraft/trim_material/redstone.json
new file mode 100644
index 0000000..797bd0c
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_material/redstone.json
@@ -0,0 +1,9 @@
+{
+ "asset_name": "redstone",
+ "description": {
+ "color": "#971607",
+ "translate": "trim_material.minecraft.redstone"
+ },
+ "ingredient": "minecraft:redstone",
+ "item_model_index": 0.4
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/coast.json b/src/main/resources/data/minecraft/trim_pattern/coast.json
new file mode 100644
index 0000000..6e77fc3
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/coast.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:coast",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.coast"
+ },
+ "template_item": "minecraft:coast_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/dune.json b/src/main/resources/data/minecraft/trim_pattern/dune.json
new file mode 100644
index 0000000..2b825b3
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/dune.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:dune",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.dune"
+ },
+ "template_item": "minecraft:dune_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/eye.json b/src/main/resources/data/minecraft/trim_pattern/eye.json
new file mode 100644
index 0000000..52260df
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/eye.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:eye",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.eye"
+ },
+ "template_item": "minecraft:eye_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/host.json b/src/main/resources/data/minecraft/trim_pattern/host.json
new file mode 100644
index 0000000..483d3f4
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/host.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:host",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.host"
+ },
+ "template_item": "minecraft:host_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/raiser.json b/src/main/resources/data/minecraft/trim_pattern/raiser.json
new file mode 100644
index 0000000..b7d69d4
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/raiser.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:raiser",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.raiser"
+ },
+ "template_item": "minecraft:raiser_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/rib.json b/src/main/resources/data/minecraft/trim_pattern/rib.json
new file mode 100644
index 0000000..ae0e515
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/rib.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:rib",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.rib"
+ },
+ "template_item": "minecraft:rib_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/sentry.json b/src/main/resources/data/minecraft/trim_pattern/sentry.json
new file mode 100644
index 0000000..1d86454
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/sentry.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:sentry",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.sentry"
+ },
+ "template_item": "minecraft:sentry_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/shaper.json b/src/main/resources/data/minecraft/trim_pattern/shaper.json
new file mode 100644
index 0000000..38a76d9
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/shaper.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:shaper",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.shaper"
+ },
+ "template_item": "minecraft:shaper_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/silence.json b/src/main/resources/data/minecraft/trim_pattern/silence.json
new file mode 100644
index 0000000..0cf9ca8
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/silence.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:silence",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.silence"
+ },
+ "template_item": "minecraft:silence_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/snout.json b/src/main/resources/data/minecraft/trim_pattern/snout.json
new file mode 100644
index 0000000..0b23038
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/snout.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:snout",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.snout"
+ },
+ "template_item": "minecraft:snout_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/spire.json b/src/main/resources/data/minecraft/trim_pattern/spire.json
new file mode 100644
index 0000000..9df73f5
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/spire.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:spire",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.spire"
+ },
+ "template_item": "minecraft:spire_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/tide.json b/src/main/resources/data/minecraft/trim_pattern/tide.json
new file mode 100644
index 0000000..a01adda
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/tide.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:tide",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.tide"
+ },
+ "template_item": "minecraft:tide_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/vex.json b/src/main/resources/data/minecraft/trim_pattern/vex.json
new file mode 100644
index 0000000..bc010f1
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/vex.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:vex",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.vex"
+ },
+ "template_item": "minecraft:vex_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/ward.json b/src/main/resources/data/minecraft/trim_pattern/ward.json
new file mode 100644
index 0000000..e07ffbc
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/ward.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:ward",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.ward"
+ },
+ "template_item": "minecraft:ward_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/wayfinder.json b/src/main/resources/data/minecraft/trim_pattern/wayfinder.json
new file mode 100644
index 0000000..ecb8cc9
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/wayfinder.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:wayfinder",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.wayfinder"
+ },
+ "template_item": "minecraft:wayfinder_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/trim_pattern/wild.json b/src/main/resources/data/minecraft/trim_pattern/wild.json
new file mode 100644
index 0000000..4696f38
--- /dev/null
+++ b/src/main/resources/data/minecraft/trim_pattern/wild.json
@@ -0,0 +1,8 @@
+{
+ "asset_id": "minecraft:wild",
+ "decal": false,
+ "description": {
+ "translate": "trim_pattern.minecraft.wild"
+ },
+ "template_item": "minecraft:wild_armor_trim_smithing_template"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/ashen.json b/src/main/resources/data/minecraft/wolf_variant/ashen.json
new file mode 100644
index 0000000..16ad8ae
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/ashen.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_ashen_angry",
+ "biomes": "minecraft:snowy_taiga",
+ "tame_texture": "minecraft:entity/wolf/wolf_ashen_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_ashen"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/black.json b/src/main/resources/data/minecraft/wolf_variant/black.json
new file mode 100644
index 0000000..fe704d1
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/black.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_black_angry",
+ "biomes": "minecraft:old_growth_pine_taiga",
+ "tame_texture": "minecraft:entity/wolf/wolf_black_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_black"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/chestnut.json b/src/main/resources/data/minecraft/wolf_variant/chestnut.json
new file mode 100644
index 0000000..c94e4f5
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/chestnut.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_chestnut_angry",
+ "biomes": "minecraft:old_growth_spruce_taiga",
+ "tame_texture": "minecraft:entity/wolf/wolf_chestnut_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_chestnut"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/pale.json b/src/main/resources/data/minecraft/wolf_variant/pale.json
new file mode 100644
index 0000000..fde9505
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/pale.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_angry",
+ "biomes": "minecraft:taiga",
+ "tame_texture": "minecraft:entity/wolf/wolf_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/rusty.json b/src/main/resources/data/minecraft/wolf_variant/rusty.json
new file mode 100644
index 0000000..834607a
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/rusty.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_rusty_angry",
+ "biomes": "#minecraft:is_jungle",
+ "tame_texture": "minecraft:entity/wolf/wolf_rusty_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_rusty"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/snowy.json b/src/main/resources/data/minecraft/wolf_variant/snowy.json
new file mode 100644
index 0000000..41441e8
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/snowy.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_snowy_angry",
+ "biomes": "minecraft:grove",
+ "tame_texture": "minecraft:entity/wolf/wolf_snowy_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_snowy"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/spotted.json b/src/main/resources/data/minecraft/wolf_variant/spotted.json
new file mode 100644
index 0000000..f4c5214
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/spotted.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_spotted_angry",
+ "biomes": "#minecraft:is_savanna",
+ "tame_texture": "minecraft:entity/wolf/wolf_spotted_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_spotted"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/striped.json b/src/main/resources/data/minecraft/wolf_variant/striped.json
new file mode 100644
index 0000000..c36f7a6
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/striped.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_striped_angry",
+ "biomes": "#minecraft:is_badlands",
+ "tame_texture": "minecraft:entity/wolf/wolf_striped_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_striped"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/wolf_variant/woods.json b/src/main/resources/data/minecraft/wolf_variant/woods.json
new file mode 100644
index 0000000..7c2afa2
--- /dev/null
+++ b/src/main/resources/data/minecraft/wolf_variant/woods.json
@@ -0,0 +1,6 @@
+{
+ "angry_texture": "minecraft:entity/wolf/wolf_woods_angry",
+ "biomes": "minecraft:forest",
+ "tame_texture": "minecraft:entity/wolf/wolf_woods_tame",
+ "wild_texture": "minecraft:entity/wolf/wolf_woods"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/badlands.json b/src/main/resources/data/minecraft/worldgen/biome/badlands.json
new file mode 100644
index 0000000..e629c60
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/badlands.json
@@ -0,0 +1,180 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "creature_spawn_probability": 0.03,
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 10387789,
+ "grass_color": 9470285,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.badlands"
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_dead_bush_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane_badlands",
+ "minecraft:patch_pumpkin",
+ "minecraft:patch_cactus_decorated"
+ ],
+ [
+ "minecraft:freeze_top_layer"
+ ]
+ ],
+ "has_precipitation": false,
+ "spawn_costs": {},
+ "spawners": {
+ "ambient": [
+ {
+ "type": "minecraft:bat",
+ "maxCount": 8,
+ "minCount": 8,
+ "weight": 10
+ }
+ ],
+ "axolotls": [],
+ "creature": [
+ {
+ "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/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json
new file mode 100644
index 0000000..23422fc
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/bamboo_jungle.json
@@ -0,0 +1,221 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.bamboo_jungle"
+ },
+ "sky_color": 7842047,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json b/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json
new file mode 100644
index 0000000..e062aa6
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/basalt_deltas.json
@@ -0,0 +1,98 @@
+{
+ "carvers": {
+ "air": "minecraft:nether_cave"
+ },
+ "downfall": 0.0,
+ "effects": {
+ "additions_sound": {
+ "sound": "minecraft:ambient.basalt_deltas.additions",
+ "tick_chance": 0.0111
+ },
+ "ambient_sound": "minecraft:ambient.basalt_deltas.loop",
+ "fog_color": 6840176,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.basalt_deltas.mood",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.nether.basalt_deltas"
+ },
+ "particle": {
+ "options": {
+ "type": "minecraft:white_ash"
+ },
+ "probability": 0.118093334
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/beach.json b/src/main/resources/data/minecraft/worldgen/biome/beach.json
new file mode 100644
index 0000000..38afdc6
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/beach.json
@@ -0,0 +1,169 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7907327,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json
new file mode 100644
index 0000000..6338abf
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/birch_forest.json
@@ -0,0 +1,195 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.6,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.forest"
+ },
+ "sky_color": 8037887,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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",
+ "minecraft:flower_default",
+ "minecraft:patch_grass_forest",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json b/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json
new file mode 100644
index 0000000..f96b6a3
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/cherry_grove.json
@@ -0,0 +1,190 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 11983713,
+ "grass_color": 11983713,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.cherry_grove"
+ },
+ "sky_color": 8103167,
+ "water_color": 6141935,
+ "water_fog_color": 6141935
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json
new file mode 100644
index 0000000..cb5835e
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/cold_ocean.json
@@ -0,0 +1,192 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4020182,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "minecraft:seagrass_cold",
+ "minecraft:seagrass_simple",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json b/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json
new file mode 100644
index 0000000..32460a8
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/crimson_forest.json
@@ -0,0 +1,106 @@
+{
+ "carvers": {
+ "air": "minecraft:nether_cave"
+ },
+ "downfall": 0.0,
+ "effects": {
+ "additions_sound": {
+ "sound": "minecraft:ambient.crimson_forest.additions",
+ "tick_chance": 0.0111
+ },
+ "ambient_sound": "minecraft:ambient.crimson_forest.loop",
+ "fog_color": 3343107,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.crimson_forest.mood",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.nether.crimson_forest"
+ },
+ "particle": {
+ "options": {
+ "type": "minecraft:crimson_spore"
+ },
+ "probability": 0.025
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json
new file mode 100644
index 0000000..678b0eb
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/dark_forest.json
@@ -0,0 +1,196 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "grass_color_modifier": "dark_forest",
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.forest"
+ },
+ "sky_color": 7972607,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json
new file mode 100644
index 0000000..9850e3e
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_cold_ocean.json
@@ -0,0 +1,192 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4020182,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "minecraft:seagrass_deep_cold",
+ "minecraft:seagrass_simple",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json
new file mode 100644
index 0000000..d9ee2b7
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_dark.json
@@ -0,0 +1,104 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.deep_dark"
+ },
+ "sky_color": 7907327,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json
new file mode 100644
index 0000000..7240954
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_frozen_ocean.json
@@ -0,0 +1,195 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 3750089,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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
+ }
+ ]
+ },
+ "temperature": 0.5,
+ "temperature_modifier": "frozen"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json
new file mode 100644
index 0000000..413f810
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_lukewarm_ocean.json
@@ -0,0 +1,204 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4566514,
+ "water_fog_color": 267827
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "minecraft:seagrass_deep_warm",
+ "minecraft:seagrass_simple",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json
new file mode 100644
index 0000000..56e5219
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/deep_ocean.json
@@ -0,0 +1,192 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "minecraft:seagrass_deep",
+ "minecraft:seagrass_simple",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/desert.json b/src/main/resources/data/minecraft/worldgen/biome/desert.json
new file mode 100644
index 0000000..395a369
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/desert.json
@@ -0,0 +1,187 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.desert"
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_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": 4
+ }
+ ],
+ "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": 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:husk",
+ "maxCount": 4,
+ "minCount": 4,
+ "weight": 80
+ }
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json
new file mode 100644
index 0000000..6eaaa57
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/dripstone_caves.json
@@ -0,0 +1,180 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.dripstone_caves"
+ },
+ "sky_color": 7907327,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json b/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json
new file mode 100644
index 0000000..1d07576
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_barrens.json
@@ -0,0 +1,37 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 10518688,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 0,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json b/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json
new file mode 100644
index 0000000..05f1380
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_highlands.json
@@ -0,0 +1,52 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 10518688,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 0,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json b/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json
new file mode 100644
index 0000000..1d07576
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/end_midlands.json
@@ -0,0 +1,37 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 10518688,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 0,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json
new file mode 100644
index 0000000..e629c60
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/eroded_badlands.json
@@ -0,0 +1,180 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "creature_spawn_probability": 0.03,
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 10387789,
+ "grass_color": 9470285,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.badlands"
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_dead_bush_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane_badlands",
+ "minecraft:patch_pumpkin",
+ "minecraft:patch_cactus_decorated"
+ ],
+ [
+ "minecraft:freeze_top_layer"
+ ]
+ ],
+ "has_precipitation": false,
+ "spawn_costs": {},
+ "spawners": {
+ "ambient": [
+ {
+ "type": "minecraft:bat",
+ "maxCount": 8,
+ "minCount": 8,
+ "weight": 10
+ }
+ ],
+ "axolotls": [],
+ "creature": [
+ {
+ "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/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json
new file mode 100644
index 0000000..d45edd2
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/flower_forest.json
@@ -0,0 +1,201 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.flower_forest"
+ },
+ "sky_color": 7972607,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/forest.json b/src/main/resources/data/minecraft/worldgen/biome/forest.json
new file mode 100644
index 0000000..d81b355
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/forest.json
@@ -0,0 +1,201 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.forest"
+ },
+ "sky_color": 7972607,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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",
+ "minecraft:flower_default",
+ "minecraft:patch_grass_forest",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json
new file mode 100644
index 0000000..2b9a2ae
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_ocean.json
@@ -0,0 +1,195 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8364543,
+ "water_color": 3750089,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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
+ }
+ ]
+ },
+ "temperature": 0.0,
+ "temperature_modifier": "frozen"
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json
new file mode 100644
index 0000000..6f06b57
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_peaks.json
@@ -0,0 +1,173 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.frozen_peaks"
+ },
+ "sky_color": 8756735,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json
new file mode 100644
index 0000000..5bc3832
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/frozen_river.json
@@ -0,0 +1,183 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8364543,
+ "water_color": 3750089,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/grove.json b/src/main/resources/data/minecraft/worldgen/biome/grove.json
new file mode 100644
index 0000000..e5c46d4
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/grove.json
@@ -0,0 +1,188 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.grove"
+ },
+ "sky_color": 8495359,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json
new file mode 100644
index 0000000..a034b3d
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/ice_spikes.json
@@ -0,0 +1,186 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "creature_spawn_probability": 0.07,
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8364543,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json
new file mode 100644
index 0000000..15a7696
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/jagged_peaks.json
@@ -0,0 +1,173 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.jagged_peaks"
+ },
+ "sky_color": 8756735,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/jungle.json b/src/main/resources/data/minecraft/worldgen/biome/jungle.json
new file mode 100644
index 0000000..2c80557
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/jungle.json
@@ -0,0 +1,221 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.jungle"
+ },
+ "sky_color": 7842047,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json
new file mode 100644
index 0000000..9a259fe
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/lukewarm_ocean.json
@@ -0,0 +1,203 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4566514,
+ "water_fog_color": 267827
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json b/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json
new file mode 100644
index 0000000..b3aef76
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/lush_caves.json
@@ -0,0 +1,185 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.lush_caves"
+ },
+ "sky_color": 8103167,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json
new file mode 100644
index 0000000..e894837
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/mangrove_swamp.json
@@ -0,0 +1,190 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 9285927,
+ "grass_color_modifier": "swamp",
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.swamp"
+ },
+ "sky_color": 7907327,
+ "water_color": 3832426,
+ "water_fog_color": 5077600
+ },
+ "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: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": 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:slime",
+ "maxCount": 1,
+ "minCount": 1,
+ "weight": 1
+ }
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/meadow.json b/src/main/resources/data/minecraft/worldgen/biome/meadow.json
new file mode 100644
index 0000000..4f2ec95
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/meadow.json
@@ -0,0 +1,188 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.meadow"
+ },
+ "sky_color": 8103167,
+ "water_color": 937679,
+ "water_fog_color": 329011
+ },
+ "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_meadow",
+ "minecraft:trees_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/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json
new file mode 100644
index 0000000..e8a21c1
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/mushroom_fields.json
@@ -0,0 +1,119 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 1.0,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7842047,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_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: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/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json b/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json
new file mode 100644
index 0000000..d0e13f0
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/nether_wastes.json
@@ -0,0 +1,112 @@
+{
+ "carvers": {
+ "air": "minecraft:nether_cave"
+ },
+ "downfall": 0.0,
+ "effects": {
+ "additions_sound": {
+ "sound": "minecraft:ambient.nether_wastes.additions",
+ "tick_chance": 0.0111
+ },
+ "ambient_sound": "minecraft:ambient.nether_wastes.loop",
+ "fog_color": 3344392,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.nether_wastes.mood",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.nether.nether_wastes"
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/ocean.json b/src/main/resources/data/minecraft/worldgen/biome/ocean.json
new file mode 100644
index 0000000..32b74be
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/ocean.json
@@ -0,0 +1,192 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "minecraft:seagrass_normal",
+ "minecraft:seagrass_simple",
+ "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
+ }
+ ]
+ },
+ "temperature": 0.5
+}
\ No newline at end of file
diff --git a/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json
new file mode 100644
index 0000000..eb2da85
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_birch_forest.json
@@ -0,0 +1,195 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.6,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.forest"
+ },
+ "sky_color": 8037887,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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:birch_tall",
+ "minecraft:flower_default",
+ "minecraft:patch_grass_forest",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json
new file mode 100644
index 0000000..4618b80
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_pine_taiga.json
@@ -0,0 +1,218 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.old_growth_taiga"
+ },
+ "sky_color": 8168447,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json
new file mode 100644
index 0000000..d51fde7
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/old_growth_spruce_taiga.json
@@ -0,0 +1,218 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.old_growth_taiga"
+ },
+ "sky_color": 8233983,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/plains.json b/src/main/resources/data/minecraft/worldgen/biome/plains.json
new file mode 100644
index 0000000..a223a71
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/plains.json
@@ -0,0 +1,201 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7907327,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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:trees_plains",
+ "minecraft:flower_plains",
+ "minecraft:patch_grass_plain",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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": 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/src/main/resources/data/minecraft/worldgen/biome/river.json b/src/main/resources/data/minecraft/worldgen/biome/river.json
new file mode 100644
index 0000000..bce49ab
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/river.json
@@ -0,0 +1,184 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/savanna.json b/src/main/resources/data/minecraft/worldgen/biome/savanna.json
new file mode 100644
index 0000000..c357a3b
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/savanna.json
@@ -0,0 +1,207 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin"
+ ],
+ [
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json
new file mode 100644
index 0000000..d1bd9db
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/savanna_plateau.json
@@ -0,0 +1,219 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin"
+ ],
+ [
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json b/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json
new file mode 100644
index 0000000..c9e4887
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/small_end_islands.json
@@ -0,0 +1,41 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 10518688,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 0,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json
new file mode 100644
index 0000000..8814e77
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_beach.json
@@ -0,0 +1,162 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8364543,
+ "water_color": 4020182,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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
+ }
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json
new file mode 100644
index 0000000..8d63533
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_plains.json
@@ -0,0 +1,183 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "creature_spawn_probability": 0.07,
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8364543,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json
new file mode 100644
index 0000000..fb9dc70
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_slopes.json
@@ -0,0 +1,181 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.snowy_slopes"
+ },
+ "sky_color": 8560639,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json
new file mode 100644
index 0000000..9dd3624
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/snowy_taiga.json
@@ -0,0 +1,208 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8625919,
+ "water_color": 4020182,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json b/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json
new file mode 100644
index 0000000..efa0043
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/soul_sand_valley.json
@@ -0,0 +1,123 @@
+{
+ "carvers": {
+ "air": "minecraft:nether_cave"
+ },
+ "downfall": 0.0,
+ "effects": {
+ "additions_sound": {
+ "sound": "minecraft:ambient.soul_sand_valley.additions",
+ "tick_chance": 0.0111
+ },
+ "ambient_sound": "minecraft:ambient.soul_sand_valley.loop",
+ "fog_color": 1787717,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.soul_sand_valley.mood",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.nether.soul_sand_valley"
+ },
+ "particle": {
+ "options": {
+ "type": "minecraft:ash"
+ },
+ "probability": 0.00625
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json
new file mode 100644
index 0000000..629e5cc
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/sparse_jungle.json
@@ -0,0 +1,208 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.sparse_jungle"
+ },
+ "sky_color": 7842047,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json b/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json
new file mode 100644
index 0000000..e7605b5
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/stony_peaks.json
@@ -0,0 +1,165 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.stony_peaks"
+ },
+ "sky_color": 7776511,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json
new file mode 100644
index 0000000..f4d4428
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/stony_shore.json
@@ -0,0 +1,162 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8233727,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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
+ }
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json
new file mode 100644
index 0000000..d365e37
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/sunflower_plains.json
@@ -0,0 +1,202 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.4,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7907327,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "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: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": 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/src/main/resources/data/minecraft/worldgen/biome/swamp.json b/src/main/resources/data/minecraft/worldgen/biome/swamp.json
new file mode 100644
index 0000000..498fb47
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/swamp.json
@@ -0,0 +1,213 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.9,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 6975545,
+ "grass_color_modifier": "swamp",
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.swamp"
+ },
+ "sky_color": 7907327,
+ "water_color": 6388580,
+ "water_fog_color": 2302743
+ },
+ "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: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": 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:slime",
+ "maxCount": 1,
+ "minCount": 1,
+ "weight": 1
+ }
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/taiga.json b/src/main/resources/data/minecraft/worldgen/biome/taiga.json
new file mode 100644
index 0000000..24c600b
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/taiga.json
@@ -0,0 +1,208 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.8,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8233983,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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/src/main/resources/data/minecraft/worldgen/biome/the_end.json b/src/main/resources/data/minecraft/worldgen/biome/the_end.json
new file mode 100644
index 0000000..44df211
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/the_end.json
@@ -0,0 +1,45 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 10518688,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 0,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "features": [
+ [],
+ [],
+ [],
+ [],
+ [
+ "minecraft:end_spike"
+ ]
+ ],
+ "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/src/main/resources/data/minecraft/worldgen/biome/the_void.json b/src/main/resources/data/minecraft/worldgen/biome/the_void.json
new file mode 100644
index 0000000..49d0cca
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/the_void.json
@@ -0,0 +1,44 @@
+{
+ "carvers": {},
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json
new file mode 100644
index 0000000..b1e1da6
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/warm_ocean.json
@@ -0,0 +1,198 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.5,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8103167,
+ "water_color": 4445678,
+ "water_fog_color": 270131
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json b/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json
new file mode 100644
index 0000000..4e462ac
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/warped_forest.json
@@ -0,0 +1,101 @@
+{
+ "carvers": {
+ "air": "minecraft:nether_cave"
+ },
+ "downfall": 0.0,
+ "effects": {
+ "additions_sound": {
+ "sound": "minecraft:ambient.warped_forest.additions",
+ "tick_chance": 0.0111
+ },
+ "ambient_sound": "minecraft:ambient.warped_forest.loop",
+ "fog_color": 1705242,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.warped_forest.mood",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.nether.warped_forest"
+ },
+ "particle": {
+ "options": {
+ "type": "minecraft:warped_spore"
+ },
+ "probability": 0.01428
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json
new file mode 100644
index 0000000..2949efc
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_forest.json
@@ -0,0 +1,197 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8233727,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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:flower_default",
+ "minecraft:patch_grass_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json
new file mode 100644
index 0000000..bf89117
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_gravelly_hills.json
@@ -0,0 +1,197 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8233727,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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:flower_default",
+ "minecraft:patch_grass_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json
new file mode 100644
index 0000000..bf89117
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_hills.json
@@ -0,0 +1,197 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.3,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 8233727,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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:flower_default",
+ "minecraft:patch_grass_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane",
+ "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: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/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json
new file mode 100644
index 0000000..522fafd
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/windswept_savanna.json
@@ -0,0 +1,206 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_sugar_cane",
+ "minecraft:patch_pumpkin"
+ ],
+ [
+ "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": 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/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json
new file mode 100644
index 0000000..5490971
--- /dev/null
+++ b/src/main/resources/data/minecraft/worldgen/biome/wooded_badlands.json
@@ -0,0 +1,187 @@
+{
+ "carvers": {
+ "air": [
+ "minecraft:cave",
+ "minecraft:cave_extra_underground",
+ "minecraft:canyon"
+ ]
+ },
+ "creature_spawn_probability": 0.04,
+ "downfall": 0.0,
+ "effects": {
+ "fog_color": 12638463,
+ "foliage_color": 10387789,
+ "grass_color": 9470285,
+ "mood_sound": {
+ "block_search_extent": 8,
+ "offset": 2.0,
+ "sound": "minecraft:ambient.cave",
+ "tick_delay": 6000
+ },
+ "music": {
+ "max_delay": 24000,
+ "min_delay": 12000,
+ "replace_current_music": false,
+ "sound": "minecraft:music.overworld.badlands"
+ },
+ "sky_color": 7254527,
+ "water_color": 4159204,
+ "water_fog_color": 329011
+ },
+ "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_dead_bush_badlands",
+ "minecraft:brown_mushroom_normal",
+ "minecraft:red_mushroom_normal",
+ "minecraft:patch_sugar_cane_badlands",
+ "minecraft:patch_pumpkin",
+ "minecraft:patch_cactus_decorated"
+ ],
+ [
+ "minecraft:freeze_top_layer"
+ ]
+ ],
+ "has_precipitation": false,
+ "spawn_costs": {},
+ "spawners": {
+ "ambient": [
+ {
+ "type": "minecraft:bat",
+ "maxCount": 8,
+ "minCount": 8,
+ "weight": 10
+ }
+ ],
+ "axolotls": [],
+ "creature": [
+ {
+ "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/src/main/resources/dimension_registry.json b/src/main/resources/dimension_registry.json
deleted file mode 100644
index eb7d7aa..0000000
--- a/src/main/resources/dimension_registry.json
+++ /dev/null
@@ -1,8483 +0,0 @@
-{
- "type": "CompoundTag",
- "value": {
- "minecraft:chat_type": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:chat_type"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:chat"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:emote_command"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.emote"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.emote"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:msg_command_incoming"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "commands.message.display.incoming"
- },
- "style": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "gray"
- },
- "italic": {
- "type": "ByteTag",
- "value": 1
- }
- }
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:msg_command_outgoing"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "commands.message.display.outgoing"
- },
- "style": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "gray"
- },
- "italic": {
- "type": "ByteTag",
- "value": 1
- }
- }
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "target",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "paper:raw"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "%s"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "%s"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:say_command"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.announcement"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:team_msg_command_incoming"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.team.text"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "target",
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:team_msg_command_outgoing"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "chat": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.team.sent"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "target",
- "sender",
- "content"
- ]
- }
- }
- }
- },
- "narration": {
- "type": "CompoundTag",
- "value": {
- "translation_key": {
- "type": "StringTag",
- "value": "chat.type.text.narrate"
- },
- "parameters": {
- "type": "ListTag",
- "value": {
- "type": "StringTag",
- "list": [
- "sender",
- "content"
- ]
- }
- }
- }
- }
- }
- }
- }
- ]
- }
- }
- }
- },
- "minecraft:trim_pattern": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:trim_pattern"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:coast"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:coast_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.coast"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:coast"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dune"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:dune_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.dune"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:dune"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:eye"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:eye_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.eye"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:eye"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:host"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:host_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.host"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:host"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:raiser"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:raiser_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.raiser"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:raiser"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:rib"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:rib_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.rib"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:rib"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sentry"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:sentry_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.sentry"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:sentry"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:shaper"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:shaper_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.shaper"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:shaper"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:silence"
- },
- "id": {
- "type": "IntTag",
- "value": 8
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:silence_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.silence"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:silence"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snout"
- },
- "id": {
- "type": "IntTag",
- "value": 9
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:snout_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.snout"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:snout"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:spire"
- },
- "id": {
- "type": "IntTag",
- "value": 10
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:spire_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.spire"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:spire"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:tide"
- },
- "id": {
- "type": "IntTag",
- "value": 11
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:tide_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.tide"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:tide"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:vex"
- },
- "id": {
- "type": "IntTag",
- "value": 12
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:vex_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.vex"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:vex"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:ward"
- },
- "id": {
- "type": "IntTag",
- "value": 13
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:ward_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.ward"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:ward"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wayfinder"
- },
- "id": {
- "type": "IntTag",
- "value": 14
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:wayfinder_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.wayfinder"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:wayfinder"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wild"
- },
- "id": {
- "type": "IntTag",
- "value": 15
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "template_item": {
- "type": "StringTag",
- "value": "minecraft:wild_armor_trim_smithing_template"
- },
- "description": {
- "type": "CompoundTag",
- "value": {
- "translate": {
- "type": "StringTag",
- "value": "trim_pattern.minecraft.wild"
- }
- }
- },
- "asset_id": {
- "type": "StringTag",
- "value": "minecraft:wild"
- },
- "decal": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- }
- ]
- }
- }
- }
- },
- "minecraft:dimension_type": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:dimension_type"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:overworld"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "piglin_safe": {
- "type": "ByteTag",
- "value": 0
- },
- "natural": {
- "type": "ByteTag",
- "value": 1
- },
- "ambient_light": {
- "type": "FloatTag",
- "value": 0
- },
- "monster_spawn_block_light_limit": {
- "type": "IntTag",
- "value": 0
- },
- "infiniburn": {
- "type": "StringTag",
- "value": "#minecraft:infiniburn_overworld"
- },
- "respawn_anchor_works": {
- "type": "ByteTag",
- "value": 0
- },
- "has_skylight": {
- "type": "ByteTag",
- "value": 1
- },
- "bed_works": {
- "type": "ByteTag",
- "value": 1
- },
- "effects": {
- "type": "StringTag",
- "value": "minecraft:overworld"
- },
- "has_raids": {
- "type": "ByteTag",
- "value": 1
- },
- "logical_height": {
- "type": "IntTag",
- "value": 256
- },
- "coordinate_scale": {
- "type": "DoubleTag",
- "value": 1
- },
- "monster_spawn_light_level": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:uniform"
- },
- "value": {
- "type": "CompoundTag",
- "value": {
- "max_inclusive": {
- "type": "IntTag",
- "value": 7
- },
- "min_inclusive": {
- "type": "IntTag",
- "value": 0
- }
- }
- }
- }
- },
- "min_y": {
- "type": "IntTag",
- "value": 0
- },
- "ultrawarm": {
- "type": "ByteTag",
- "value": 0
- },
- "has_ceiling": {
- "type": "ByteTag",
- "value": 0
- },
- "height": {
- "type": "IntTag",
- "value": 256
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:overworld_caves"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "piglin_safe": {
- "type": "ByteTag",
- "value": 0
- },
- "natural": {
- "type": "ByteTag",
- "value": 1
- },
- "ambient_light": {
- "type": "FloatTag",
- "value": 0
- },
- "monster_spawn_block_light_limit": {
- "type": "IntTag",
- "value": 0
- },
- "infiniburn": {
- "type": "StringTag",
- "value": "#minecraft:infiniburn_overworld"
- },
- "respawn_anchor_works": {
- "type": "ByteTag",
- "value": 0
- },
- "has_skylight": {
- "type": "ByteTag",
- "value": 1
- },
- "bed_works": {
- "type": "ByteTag",
- "value": 1
- },
- "effects": {
- "type": "StringTag",
- "value": "minecraft:overworld"
- },
- "has_raids": {
- "type": "ByteTag",
- "value": 1
- },
- "logical_height": {
- "type": "IntTag",
- "value": 256
- },
- "coordinate_scale": {
- "type": "DoubleTag",
- "value": 1
- },
- "monster_spawn_light_level": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:uniform"
- },
- "value": {
- "type": "CompoundTag",
- "value": {
- "max_inclusive": {
- "type": "IntTag",
- "value": 7
- },
- "min_inclusive": {
- "type": "IntTag",
- "value": 0
- }
- }
- }
- }
- },
- "min_y": {
- "type": "IntTag",
- "value": 0
- },
- "ultrawarm": {
- "type": "ByteTag",
- "value": 0
- },
- "has_ceiling": {
- "type": "ByteTag",
- "value": 1
- },
- "height": {
- "type": "IntTag",
- "value": 256
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:the_end"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "piglin_safe": {
- "type": "ByteTag",
- "value": 0
- },
- "natural": {
- "type": "ByteTag",
- "value": 0
- },
- "ambient_light": {
- "type": "FloatTag",
- "value": 0
- },
- "monster_spawn_block_light_limit": {
- "type": "IntTag",
- "value": 0
- },
- "infiniburn": {
- "type": "StringTag",
- "value": "#minecraft:infiniburn_end"
- },
- "respawn_anchor_works": {
- "type": "ByteTag",
- "value": 0
- },
- "has_skylight": {
- "type": "ByteTag",
- "value": 0
- },
- "bed_works": {
- "type": "ByteTag",
- "value": 0
- },
- "effects": {
- "type": "StringTag",
- "value": "minecraft:the_end"
- },
- "fixed_time": {
- "type": "LongTag",
- "value": 6000
- },
- "has_raids": {
- "type": "ByteTag",
- "value": 1
- },
- "logical_height": {
- "type": "IntTag",
- "value": 256
- },
- "coordinate_scale": {
- "type": "DoubleTag",
- "value": 1
- },
- "monster_spawn_light_level": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:uniform"
- },
- "value": {
- "type": "CompoundTag",
- "value": {
- "max_inclusive": {
- "type": "IntTag",
- "value": 7
- },
- "min_inclusive": {
- "type": "IntTag",
- "value": 0
- }
- }
- }
- }
- },
- "min_y": {
- "type": "IntTag",
- "value": 0
- },
- "ultrawarm": {
- "type": "ByteTag",
- "value": 0
- },
- "has_ceiling": {
- "type": "ByteTag",
- "value": 0
- },
- "height": {
- "type": "IntTag",
- "value": 256
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:the_nether"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "piglin_safe": {
- "type": "ByteTag",
- "value": 1
- },
- "natural": {
- "type": "ByteTag",
- "value": 0
- },
- "ambient_light": {
- "type": "FloatTag",
- "value": 0.1
- },
- "monster_spawn_block_light_limit": {
- "type": "IntTag",
- "value": 15
- },
- "infiniburn": {
- "type": "StringTag",
- "value": "#minecraft:infiniburn_nether"
- },
- "respawn_anchor_works": {
- "type": "ByteTag",
- "value": 1
- },
- "has_skylight": {
- "type": "ByteTag",
- "value": 0
- },
- "bed_works": {
- "type": "ByteTag",
- "value": 0
- },
- "effects": {
- "type": "StringTag",
- "value": "minecraft:the_nether"
- },
- "fixed_time": {
- "type": "LongTag",
- "value": 18000
- },
- "has_raids": {
- "type": "ByteTag",
- "value": 0
- },
- "logical_height": {
- "type": "IntTag",
- "value": 128
- },
- "coordinate_scale": {
- "type": "DoubleTag",
- "value": 8
- },
- "monster_spawn_light_level": {
- "type": "IntTag",
- "value": 7
- },
- "min_y": {
- "type": "IntTag",
- "value": 0
- },
- "ultrawarm": {
- "type": "ByteTag",
- "value": 1
- },
- "has_ceiling": {
- "type": "ByteTag",
- "value": 1
- },
- "height": {
- "type": "IntTag",
- "value": 256
- }
- }
- }
- }
- ]
- }
- }
- }
- },
- "minecraft:damage_type": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:damage_type"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:arrow"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "arrow"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:bad_respawn_point"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "always"
- },
- "message_id": {
- "type": "StringTag",
- "value": "badRespawnPoint"
- },
- "death_message_type": {
- "type": "StringTag",
- "value": "intentional_game_design"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:cactus"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "cactus"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:cramming"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "cramming"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dragon_breath"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "dragonBreath"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:drown"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "drown"
- },
- "effects": {
- "type": "StringTag",
- "value": "drowning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dry_out"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "dryout"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:explosion"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "always"
- },
- "message_id": {
- "type": "StringTag",
- "value": "explosion"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:fall"
- },
- "id": {
- "type": "IntTag",
- "value": 8
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "fall"
- },
- "death_message_type": {
- "type": "StringTag",
- "value": "fall_variants"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:falling_anvil"
- },
- "id": {
- "type": "IntTag",
- "value": 9
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "anvil"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:falling_block"
- },
- "id": {
- "type": "IntTag",
- "value": 10
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "fallingBlock"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:falling_stalactite"
- },
- "id": {
- "type": "IntTag",
- "value": 11
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "fallingStalactite"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:fireball"
- },
- "id": {
- "type": "IntTag",
- "value": 12
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "fireball"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:fireworks"
- },
- "id": {
- "type": "IntTag",
- "value": 13
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "fireworks"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:fly_into_wall"
- },
- "id": {
- "type": "IntTag",
- "value": 14
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "flyIntoWall"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:freeze"
- },
- "id": {
- "type": "IntTag",
- "value": 15
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "freeze"
- },
- "effects": {
- "type": "StringTag",
- "value": "freezing"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:generic"
- },
- "id": {
- "type": "IntTag",
- "value": 16
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "generic"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:generic_kill"
- },
- "id": {
- "type": "IntTag",
- "value": 17
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "genericKill"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:hot_floor"
- },
- "id": {
- "type": "IntTag",
- "value": 18
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "hotFloor"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:in_fire"
- },
- "id": {
- "type": "IntTag",
- "value": 19
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "inFire"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:in_wall"
- },
- "id": {
- "type": "IntTag",
- "value": 20
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "inWall"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:indirect_magic"
- },
- "id": {
- "type": "IntTag",
- "value": 21
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "indirectMagic"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lava"
- },
- "id": {
- "type": "IntTag",
- "value": 22
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "lava"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lightning_bolt"
- },
- "id": {
- "type": "IntTag",
- "value": 23
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "lightningBolt"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:magic"
- },
- "id": {
- "type": "IntTag",
- "value": 24
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "magic"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mob_attack"
- },
- "id": {
- "type": "IntTag",
- "value": 25
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "mob"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mob_attack_no_aggro"
- },
- "id": {
- "type": "IntTag",
- "value": 26
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "mob"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mob_projectile"
- },
- "id": {
- "type": "IntTag",
- "value": 27
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "mob"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:on_fire"
- },
- "id": {
- "type": "IntTag",
- "value": 28
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "onFire"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:out_of_world"
- },
- "id": {
- "type": "IntTag",
- "value": 29
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "outOfWorld"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:outside_border"
- },
- "id": {
- "type": "IntTag",
- "value": 30
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "outsideBorder"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:player_attack"
- },
- "id": {
- "type": "IntTag",
- "value": 31
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "player"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:player_explosion"
- },
- "id": {
- "type": "IntTag",
- "value": 32
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "always"
- },
- "message_id": {
- "type": "StringTag",
- "value": "explosion.player"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sonic_boom"
- },
- "id": {
- "type": "IntTag",
- "value": 33
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "always"
- },
- "message_id": {
- "type": "StringTag",
- "value": "sonic_boom"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:stalagmite"
- },
- "id": {
- "type": "IntTag",
- "value": 34
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "stalagmite"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:starve"
- },
- "id": {
- "type": "IntTag",
- "value": 35
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "starve"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sting"
- },
- "id": {
- "type": "IntTag",
- "value": 36
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "sting"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sweet_berry_bush"
- },
- "id": {
- "type": "IntTag",
- "value": 37
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "sweetBerryBush"
- },
- "effects": {
- "type": "StringTag",
- "value": "poking"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:thorns"
- },
- "id": {
- "type": "IntTag",
- "value": 38
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "thorns"
- },
- "effects": {
- "type": "StringTag",
- "value": "thorns"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:thrown"
- },
- "id": {
- "type": "IntTag",
- "value": 39
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "thrown"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:trident"
- },
- "id": {
- "type": "IntTag",
- "value": 40
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "trident"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:unattributed_fireball"
- },
- "id": {
- "type": "IntTag",
- "value": 41
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "onFire"
- },
- "effects": {
- "type": "StringTag",
- "value": "burning"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wither"
- },
- "id": {
- "type": "IntTag",
- "value": 42
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "wither"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wither_skull"
- },
- "id": {
- "type": "IntTag",
- "value": 43
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "exhaustion": {
- "type": "FloatTag",
- "value": 0.1
- },
- "scaling": {
- "type": "StringTag",
- "value": "when_caused_by_living_non_player"
- },
- "message_id": {
- "type": "StringTag",
- "value": "witherSkull"
- }
- }
- }
- }
- ]
- }
- }
- }
- },
- "minecraft:worldgen/biome": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:worldgen/biome"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.badlands"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:bamboo_jungle"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.95
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.bamboo_jungle"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:basalt_deltas"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.nether.basalt_deltas"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.basalt_deltas.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.basalt_deltas.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:white_ash"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.118093334
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 6840176
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.basalt_deltas.mood"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:beach"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:birch_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.6
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.6
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8037887
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:cherry_grove"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.cherry_grove"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "grass_color": {
- "type": "IntTag",
- "value": 11983713
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 6141935
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 11983713
- },
- "water_color": {
- "type": "IntTag",
- "value": 6141935
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:cold_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:crimson_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.nether.crimson_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:crimson_spore"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.025
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 3343107
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.crimson_forest.mood"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dark_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 8
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "dark_forest"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_cold_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 9
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_dark"
- },
- "id": {
- "type": "IntTag",
- "value": 10
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.deep_dark"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_frozen_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 11
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- },
- "temperature_modifier": {
- "type": "StringTag",
- "value": "frozen"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_lukewarm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 12
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 267827
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4566514
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:deep_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 13
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:desert"
- },
- "id": {
- "type": "IntTag",
- "value": 14
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.desert"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:dripstone_caves"
- },
- "id": {
- "type": "IntTag",
- "value": 15
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.dripstone_caves"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:end_barrens"
- },
- "id": {
- "type": "IntTag",
- "value": 16
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 0
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 10518688
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:end_highlands"
- },
- "id": {
- "type": "IntTag",
- "value": 17
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 0
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 10518688
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:end_midlands"
- },
- "id": {
- "type": "IntTag",
- "value": 18
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 0
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 10518688
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:eroded_badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 19
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.badlands"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:flower_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 20
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.flower_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:forest"
- },
- "id": {
- "type": "IntTag",
- "value": 21
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.7
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7972607
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 22
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- },
- "temperature_modifier": {
- "type": "StringTag",
- "value": "frozen"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 23
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.7
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.frozen_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8756735
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:frozen_river"
- },
- "id": {
- "type": "IntTag",
- "value": 24
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 3750089
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:grove"
- },
- "id": {
- "type": "IntTag",
- "value": 25
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.grove"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8495359
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:ice_spikes"
- },
- "id": {
- "type": "IntTag",
- "value": 26
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:jagged_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 27
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.7
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jagged_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8756735
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:jungle"
- },
- "id": {
- "type": "IntTag",
- "value": 28
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.95
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.jungle"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lukewarm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 29
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 267827
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4566514
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lush_caves"
- },
- "id": {
- "type": "IntTag",
- "value": 30
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.lush_caves"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mangrove_swamp"
- },
- "id": {
- "type": "IntTag",
- "value": 31
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "swamp"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.swamp"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 5077600
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 9285927
- },
- "water_color": {
- "type": "IntTag",
- "value": 3832426
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:meadow"
- },
- "id": {
- "type": "IntTag",
- "value": 32
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.meadow"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 937679
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:mushroom_fields"
- },
- "id": {
- "type": "IntTag",
- "value": 33
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.9
- },
- "downfall": {
- "type": "FloatTag",
- "value": 1
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:nether_wastes"
- },
- "id": {
- "type": "IntTag",
- "value": 34
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.nether.nether_wastes"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.additions"
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 3344392
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.nether_wastes.mood"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 35
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_birch_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 36
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.6
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.6
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8037887
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_pine_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 37
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.3
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.old_growth_taiga"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8168447
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:old_growth_spruce_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 38
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.25
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.old_growth_taiga"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233983
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:plains"
- },
- "id": {
- "type": "IntTag",
- "value": 39
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:river"
- },
- "id": {
- "type": "IntTag",
- "value": 40
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:savanna"
- },
- "id": {
- "type": "IntTag",
- "value": 41
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:savanna_plateau"
- },
- "id": {
- "type": "IntTag",
- "value": 42
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:small_end_islands"
- },
- "id": {
- "type": "IntTag",
- "value": 43
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 0
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 10518688
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_beach"
- },
- "id": {
- "type": "IntTag",
- "value": 44
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.05
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_plains"
- },
- "id": {
- "type": "IntTag",
- "value": 45
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8364543
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_slopes"
- },
- "id": {
- "type": "IntTag",
- "value": 46
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.3
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.snowy_slopes"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8560639
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:snowy_taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 47
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": -0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8625919
- },
- "water_color": {
- "type": "IntTag",
- "value": 4020182
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:soul_sand_valley"
- },
- "id": {
- "type": "IntTag",
- "value": 48
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.nether.soul_sand_valley"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:ash"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.00625
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 1787717
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.soul_sand_valley.mood"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sparse_jungle"
- },
- "id": {
- "type": "IntTag",
- "value": 49
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.95
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.sparse_jungle"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7842047
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:stony_peaks"
- },
- "id": {
- "type": "IntTag",
- "value": 50
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 1
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.stony_peaks"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7776511
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:stony_shore"
- },
- "id": {
- "type": "IntTag",
- "value": 51
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:sunflower_plains"
- },
- "id": {
- "type": "IntTag",
- "value": 52
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.4
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:swamp"
- },
- "id": {
- "type": "IntTag",
- "value": 53
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.8
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.9
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "grass_color_modifier": {
- "type": "StringTag",
- "value": "swamp"
- },
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.swamp"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7907327
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 2302743
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 6975545
- },
- "water_color": {
- "type": "IntTag",
- "value": 6388580
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:taiga"
- },
- "id": {
- "type": "IntTag",
- "value": 54
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.25
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.8
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233983
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:the_end"
- },
- "id": {
- "type": "IntTag",
- "value": 55
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 0
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 10518688
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:the_void"
- },
- "id": {
- "type": "IntTag",
- "value": 56
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:warm_ocean"
- },
- "id": {
- "type": "IntTag",
- "value": 57
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.5
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.5
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 270131
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8103167
- },
- "water_color": {
- "type": "IntTag",
- "value": 4445678
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:warped_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 58
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.nether.warped_forest"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "ambient_sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.loop"
- },
- "additions_sound": {
- "type": "CompoundTag",
- "value": {
- "tick_chance": {
- "type": "DoubleTag",
- "value": 0.0111
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.additions"
- }
- }
- },
- "particle": {
- "type": "CompoundTag",
- "value": {
- "options": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:warped_spore"
- }
- }
- },
- "probability": {
- "type": "FloatTag",
- "value": 0.01428
- }
- }
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 1705242
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.warped_forest.mood"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_forest"
- },
- "id": {
- "type": "IntTag",
- "value": 59
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_gravelly_hills"
- },
- "id": {
- "type": "IntTag",
- "value": 60
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_hills"
- },
- "id": {
- "type": "IntTag",
- "value": 61
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 0.2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0.3
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 8233727
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 1
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:windswept_savanna"
- },
- "id": {
- "type": "IntTag",
- "value": 62
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:wooded_badlands"
- },
- "id": {
- "type": "IntTag",
- "value": 63
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "temperature": {
- "type": "FloatTag",
- "value": 2
- },
- "downfall": {
- "type": "FloatTag",
- "value": 0
- },
- "effects": {
- "type": "CompoundTag",
- "value": {
- "music": {
- "type": "CompoundTag",
- "value": {
- "replace_current_music": {
- "type": "ByteTag",
- "value": 0
- },
- "max_delay": {
- "type": "IntTag",
- "value": 24000
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:music.overworld.badlands"
- },
- "min_delay": {
- "type": "IntTag",
- "value": 12000
- }
- }
- },
- "sky_color": {
- "type": "IntTag",
- "value": 7254527
- },
- "grass_color": {
- "type": "IntTag",
- "value": 9470285
- },
- "water_fog_color": {
- "type": "IntTag",
- "value": 329011
- },
- "foliage_color": {
- "type": "IntTag",
- "value": 10387789
- },
- "water_color": {
- "type": "IntTag",
- "value": 4159204
- },
- "fog_color": {
- "type": "IntTag",
- "value": 12638463
- },
- "mood_sound": {
- "type": "CompoundTag",
- "value": {
- "offset": {
- "type": "DoubleTag",
- "value": 2
- },
- "tick_delay": {
- "type": "IntTag",
- "value": 6000
- },
- "block_search_extent": {
- "type": "IntTag",
- "value": 8
- },
- "sound": {
- "type": "StringTag",
- "value": "minecraft:ambient.cave"
- }
- }
- }
- }
- },
- "has_precipitation": {
- "type": "ByteTag",
- "value": 0
- }
- }
- }
- }
- ]
- }
- }
- }
- },
- "minecraft:trim_material": {
- "type": "CompoundTag",
- "value": {
- "type": {
- "type": "StringTag",
- "value": "minecraft:trim_material"
- },
- "value": {
- "type": "ListTag",
- "value": {
- "type": "CompoundTag",
- "list": [
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:amethyst"
- },
- "id": {
- "type": "IntTag",
- "value": 0
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#9A5CC6"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.amethyst"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 1
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:amethyst_shard"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "amethyst"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:copper"
- },
- "id": {
- "type": "IntTag",
- "value": 1
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#B4684D"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.copper"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.5
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:copper_ingot"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "copper"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:diamond"
- },
- "id": {
- "type": "IntTag",
- "value": 2
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#6EECD2"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.diamond"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.8
- },
- "override_armor_materials": {
- "type": "CompoundTag",
- "value": {
- "diamond": {
- "type": "StringTag",
- "value": "diamond_darker"
- }
- }
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:diamond"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "diamond"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:emerald"
- },
- "id": {
- "type": "IntTag",
- "value": 3
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#11A036"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.emerald"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.7
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:emerald"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "emerald"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:gold"
- },
- "id": {
- "type": "IntTag",
- "value": 4
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#DEB12D"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.gold"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.6
- },
- "override_armor_materials": {
- "type": "CompoundTag",
- "value": {
- "gold": {
- "type": "StringTag",
- "value": "gold_darker"
- }
- }
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:gold_ingot"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "gold"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:iron"
- },
- "id": {
- "type": "IntTag",
- "value": 5
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#ECECEC"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.iron"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.2
- },
- "override_armor_materials": {
- "type": "CompoundTag",
- "value": {
- "iron": {
- "type": "StringTag",
- "value": "iron_darker"
- }
- }
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:iron_ingot"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "iron"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:lapis"
- },
- "id": {
- "type": "IntTag",
- "value": 6
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#416E97"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.lapis"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.9
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:lapis_lazuli"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "lapis"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:netherite"
- },
- "id": {
- "type": "IntTag",
- "value": 7
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#625859"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.netherite"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.3
- },
- "override_armor_materials": {
- "type": "CompoundTag",
- "value": {
- "netherite": {
- "type": "StringTag",
- "value": "netherite_darker"
- }
- }
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:netherite_ingot"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "netherite"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:quartz"
- },
- "id": {
- "type": "IntTag",
- "value": 8
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#E3D4C4"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.quartz"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.1
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:quartz"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "quartz"
- }
- }
- }
- },
- {
- "name": {
- "type": "StringTag",
- "value": "minecraft:redstone"
- },
- "id": {
- "type": "IntTag",
- "value": 9
- },
- "element": {
- "type": "CompoundTag",
- "value": {
- "description": {
- "type": "CompoundTag",
- "value": {
- "color": {
- "type": "StringTag",
- "value": "#971607"
- },
- "translate": {
- "type": "StringTag",
- "value": "trim_material.minecraft.redstone"
- }
- }
- },
- "item_model_index": {
- "type": "FloatTag",
- "value": 0.4
- },
- "ingredient": {
- "type": "StringTag",
- "value": "minecraft:redstone"
- },
- "asset_name": {
- "type": "StringTag",
- "value": "redstone"
- }
- }
- }
- }
- ]
- }
- }
- }
- }
- }
-}
\ No newline at end of file
diff --git a/src/main/resources/mapping.json b/src/main/resources/mapping.json
index 365a148..facb580 100644
--- a/src/main/resources/mapping.json
+++ b/src/main/resources/mapping.json
@@ -13,66 +13,66 @@
"PacketLoginOutPluginMessaging": "0x04"
},
"ConfigurationIn": {
- "0x02": "ServerboundFinishConfigurationPacket"
+ "0x03": "ServerboundFinishConfigurationPacket"
},
"ConfigurationOut": {
- "ClientboundRegistryDataPacket": "0x05",
- "ClientboundFinishConfigurationPacket": "0x02"
+ "ClientboundRegistryDataPacket": "0x07",
+ "ClientboundFinishConfigurationPacket": "0x03"
},
"PlayIn": {
- "0x15": "PacketPlayInKeepAlive",
+ "0x18": "PacketPlayInKeepAlive",
"0x04": "ServerboundChatCommandPacket",
- "0x05": "PacketPlayInChat",
- "0x17": "PacketPlayInPosition",
- "0x18": "PacketPlayInPositionAndLook",
- "0x19": "PacketPlayInRotation",
- "0x10": "PacketPlayInPluginMessaging",
- "0x0A": "PacketPlayInTabComplete",
- "0x2C": "PacketPlayInHeldItemChange",
- "0x28": "ServerboundResourcePackPacket",
- "0x35": "PacketPlayInUseItem",
- "0x36": "PacketPlayInBlockPlace",
- "0x2F": "PacketPlayInSetCreativeSlot",
- "0x0D": "PacketPlayInWindowClick",
- "0x0E": "PacketPlayInCloseWindow",
- "0x1D": "PacketPlayInPickItem",
- "0x21": "PacketPlayInBlockDig",
- "0x27": "PacketPlayInItemName"
+ "0x06": "PacketPlayInChat",
+ "0x1A": "PacketPlayInPosition",
+ "0x1B": "PacketPlayInPositionAndLook",
+ "0x1C": "PacketPlayInRotation",
+ "0x12": "PacketPlayInPluginMessaging",
+ "0x0B": "PacketPlayInTabComplete",
+ "0x2F": "PacketPlayInHeldItemChange",
+ "0x2B": "ServerboundResourcePackPacket",
+ "0x38": "PacketPlayInUseItem",
+ "0x39": "PacketPlayInBlockPlace",
+ "0x32": "PacketPlayInSetCreativeSlot",
+ "0x0E": "PacketPlayInWindowClick",
+ "0x0F": "PacketPlayInCloseWindow",
+ "0x20": "PacketPlayInPickItem",
+ "0x24": "PacketPlayInBlockDig",
+ "0x2A": "PacketPlayInItemName"
},
"PlayOut": {
- "PacketPlayOutLogin": "0x29",
- "PacketPlayOutPositionAndLook": "0x3E",
- "PacketPlayOutSpawnPosition": "0x54",
- "ClientboundSystemChatPacket": "0x69",
- "PacketPlayOutPlayerAbilities": "0x36",
- "ClientboundLevelChunkWithLightPacket": "0x25",
- "PacketPlayOutUnloadChunk": "0x1F",
- "PacketPlayOutKeepAlive": "0x15",
- "PacketPlayOutGameStateChange": "0x20",
- "PacketPlayOutPlayerInfo": "0x3C",
- "PacketPlayOutUpdateViewPosition": "0x52",
- "PacketPlayOutDisconnect": "0x1B",
- "PacketPlayOutPluginMessaging": "0x18",
+ "PacketPlayOutLogin": "0x2B",
+ "PacketPlayOutPositionAndLook": "0x40",
+ "PacketPlayOutSpawnPosition": "0x56",
+ "ClientboundSystemChatPacket": "0x6C",
+ "PacketPlayOutPlayerAbilities": "0x38",
+ "ClientboundLevelChunkWithLightPacket": "0x27",
+ "PacketPlayOutUnloadChunk": "0x21",
+ "PacketPlayOutKeepAlive": "0x26",
+ "PacketPlayOutGameStateChange": "0x22",
+ "PacketPlayOutPlayerInfo": "0x3E",
+ "PacketPlayOutUpdateViewPosition": "0x54",
+ "PacketPlayOutDisconnect": "0x1D",
+ "PacketPlayOutPluginMessaging": "0x19",
"PacketPlayOutTabComplete": "0x10",
"PacketPlayOutDeclareCommands": "0x11",
- "PacketPlayOutRespawn": "0x45",
- "PacketPlayOutEntityDestroy": "0x40",
- "PacketPlayOutEntityMetadata": "0x56",
+ "PacketPlayOutRespawn": "0x47",
+ "PacketPlayOutEntityDestroy": "0x42",
+ "PacketPlayOutEntityMetadata": "0x58",
"PacketPlayOutSpawnEntity": "0x01",
- "PacketPlayOutHeldItemChange": "0x51",
- "PacketPlayOutPlayerListHeaderFooter": "0x6A",
- "ClientboundResourcePackPushPacket": "0x44",
- "ClientboundSetTitlesAnimationPacket": "0x64",
- "ClientboundSetTitleTextPacket": "0x63",
- "ClientboundSetSubtitleTextPacket": "0x61",
- "ClientboundSetActionBarTextPacket": "0x4A",
+ "PacketPlayOutHeldItemChange": "0x53",
+ "PacketPlayOutPlayerListHeaderFooter": "0x6D",
+ "ClientboundResourcePackPushPacket": "0x46",
+ "ClientboundSetTitlesAnimationPacket": "0x66",
+ "ClientboundSetTitleTextPacket": "0x65",
+ "ClientboundSetSubtitleTextPacket": "0x63",
+ "ClientboundSetActionBarTextPacket": "0x4C",
"ClientboundClearTitlesPacket": "0x0F",
"PacketPlayOutBoss": "0x0A",
- "PacketPlayOutNamedSoundEffect": "0x66",
- "PacketPlayOutStopSound": "0x68",
+ "PacketPlayOutNamedSoundEffect": "0x68",
+ "PacketPlayOutStopSound": "0x6A",
"PacketPlayOutWindowItems": "0x13",
"PacketPlayOutSetSlot": "0x15",
- "PacketPlayOutOpenWindow": "0x31",
+ "PacketPlayOutOpenWindow": "0x33",
"PacketPlayOutCloseWindow": "0x12",
"PacketPlayOutWindowData": "0x14",
"ClientboundChunkBatchFinishedPacket": "0x0C",
diff --git a/src/main/resources/blocks.json b/src/main/resources/reports/blocks.json
similarity index 97%
rename from src/main/resources/blocks.json
rename to src/main/resources/reports/blocks.json
index 6df886b..769af77 100644
--- a/src/main/resources/blocks.json
+++ b/src/main/resources/reports/blocks.json
@@ -1,5 +1,11 @@
{
"minecraft:acacia_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "acacia",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -214,6 +220,11 @@
]
},
"minecraft:acacia_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "acacia",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -883,6 +894,10 @@
]
},
"minecraft:acacia_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -1230,6 +1245,11 @@
]
},
"minecraft:acacia_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "acacia"
+ },
"properties": {
"facing": [
"north",
@@ -1543,6 +1563,11 @@
]
},
"minecraft:acacia_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "acacia"
+ },
"properties": {
"attached": [
"true",
@@ -2088,6 +2113,10 @@
]
},
"minecraft:acacia_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -2336,6 +2365,10 @@
]
},
"minecraft:acacia_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -2366,6 +2399,10 @@
]
},
"minecraft:acacia_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -2374,6 +2411,11 @@
]
},
"minecraft:acacia_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "acacia",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -2397,6 +2439,11 @@
]
},
"minecraft:acacia_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "acacia"
+ },
"properties": {
"stage": [
"0",
@@ -2420,6 +2467,11 @@
]
},
"minecraft:acacia_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "acacia"
+ },
"properties": {
"rotation": [
"0",
@@ -2673,6 +2725,10 @@
]
},
"minecraft:acacia_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -2731,6 +2787,13 @@
]
},
"minecraft:acacia_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:acacia_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -3479,6 +3542,11 @@
]
},
"minecraft:acacia_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "acacia",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -4148,6 +4216,11 @@
]
},
"minecraft:acacia_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "acacia"
+ },
"properties": {
"facing": [
"north",
@@ -4221,6 +4294,11 @@
]
},
"minecraft:acacia_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "acacia"
+ },
"properties": {
"facing": [
"north",
@@ -4294,6 +4372,10 @@
]
},
"minecraft:acacia_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -4324,6 +4406,10 @@
]
},
"minecraft:activator_rail": {
+ "definition": {
+ "type": "minecraft:powered_rail",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -4539,6 +4625,10 @@
]
},
"minecraft:air": {
+ "definition": {
+ "type": "minecraft:air",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -4547,6 +4637,16 @@
]
},
"minecraft:allium": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 80,
+ "id": "minecraft:fire_resistance"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -4555,6 +4655,10 @@
]
},
"minecraft:amethyst_block": {
+ "definition": {
+ "type": "minecraft:amethyst",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -4563,6 +4667,12 @@
]
},
"minecraft:amethyst_cluster": {
+ "definition": {
+ "type": "minecraft:amethyst_cluster",
+ "aabb_offset": 3.0,
+ "height": 7.0,
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -4666,6 +4776,10 @@
]
},
"minecraft:ancient_debris": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -4674,6 +4788,10 @@
]
},
"minecraft:andesite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -4682,6 +4800,10 @@
]
},
"minecraft:andesite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -4740,6 +4862,13 @@
]
},
"minecraft:andesite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:andesite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -5488,6 +5617,10 @@
]
},
"minecraft:andesite_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -9087,6 +9220,10 @@
]
},
"minecraft:anvil": {
+ "definition": {
+ "type": "minecraft:anvil",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -9124,6 +9261,13 @@
]
},
"minecraft:attached_melon_stem": {
+ "definition": {
+ "type": "minecraft:attached_stem",
+ "fruit": "minecraft:melon",
+ "properties": {},
+ "seed": "minecraft:melon_seeds",
+ "stem": "minecraft:melon_stem"
+ },
"properties": {
"facing": [
"north",
@@ -9161,6 +9305,13 @@
]
},
"minecraft:attached_pumpkin_stem": {
+ "definition": {
+ "type": "minecraft:attached_stem",
+ "fruit": "minecraft:pumpkin",
+ "properties": {},
+ "seed": "minecraft:pumpkin_seeds",
+ "stem": "minecraft:pumpkin_stem"
+ },
"properties": {
"facing": [
"north",
@@ -9198,6 +9349,10 @@
]
},
"minecraft:azalea": {
+ "definition": {
+ "type": "minecraft:azalea",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -9206,6 +9361,10 @@
]
},
"minecraft:azalea_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -9454,6 +9613,15 @@
]
},
"minecraft:azure_bluet": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "id": "minecraft:blindness"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -9462,6 +9630,10 @@
]
},
"minecraft:bamboo": {
+ "definition": {
+ "type": "minecraft:bamboo_stalk",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -9578,6 +9750,10 @@
]
},
"minecraft:bamboo_block": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -9608,6 +9784,12 @@
]
},
"minecraft:bamboo_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "bamboo",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -9822,6 +10004,11 @@
]
},
"minecraft:bamboo_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "bamboo",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -10491,6 +10678,10 @@
]
},
"minecraft:bamboo_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -10838,6 +11029,11 @@
]
},
"minecraft:bamboo_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "bamboo"
+ },
"properties": {
"facing": [
"north",
@@ -11151,6 +11347,11 @@
]
},
"minecraft:bamboo_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "bamboo"
+ },
"properties": {
"attached": [
"true",
@@ -11696,6 +11897,10 @@
]
},
"minecraft:bamboo_mosaic": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -11704,6 +11909,10 @@
]
},
"minecraft:bamboo_mosaic_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -11762,6 +11971,13 @@
]
},
"minecraft:bamboo_mosaic_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:bamboo_mosaic"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -12510,6 +12726,10 @@
]
},
"minecraft:bamboo_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -12518,6 +12738,11 @@
]
},
"minecraft:bamboo_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "bamboo",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -12541,6 +12766,10 @@
]
},
"minecraft:bamboo_sapling": {
+ "definition": {
+ "type": "minecraft:bamboo_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -12549,6 +12778,11 @@
]
},
"minecraft:bamboo_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "bamboo"
+ },
"properties": {
"rotation": [
"0",
@@ -12802,6 +13036,10 @@
]
},
"minecraft:bamboo_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -12860,6 +13098,13 @@
]
},
"minecraft:bamboo_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:bamboo_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -13608,6 +13853,11 @@
]
},
"minecraft:bamboo_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "bamboo",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -14277,6 +14527,11 @@
]
},
"minecraft:bamboo_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "bamboo"
+ },
"properties": {
"facing": [
"north",
@@ -14350,6 +14605,11 @@
]
},
"minecraft:bamboo_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "bamboo"
+ },
"properties": {
"facing": [
"north",
@@ -14423,6 +14683,10 @@
]
},
"minecraft:barrel": {
+ "definition": {
+ "type": "minecraft:barrel",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -14526,6 +14790,10 @@
]
},
"minecraft:barrier": {
+ "definition": {
+ "type": "minecraft:barrier",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -14549,6 +14817,10 @@
]
},
"minecraft:basalt": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -14579,6 +14851,10 @@
]
},
"minecraft:beacon": {
+ "definition": {
+ "type": "minecraft:beacon",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -14587,6 +14863,10 @@
]
},
"minecraft:bedrock": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -14595,6 +14875,10 @@
]
},
"minecraft:bee_nest": {
+ "definition": {
+ "type": "minecraft:beehive",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -14784,6 +15068,10 @@
]
},
"minecraft:beehive": {
+ "definition": {
+ "type": "minecraft:beehive",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -14973,6 +15261,10 @@
]
},
"minecraft:beetroots": {
+ "definition": {
+ "type": "minecraft:beetroot",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -15010,6 +15302,10 @@
]
},
"minecraft:bell": {
+ "definition": {
+ "type": "minecraft:bell",
+ "properties": {}
+ },
"properties": {
"attachment": [
"floor",
@@ -15289,6 +15585,10 @@
]
},
"minecraft:big_dripleaf": {
+ "definition": {
+ "type": "minecraft:big_dripleaf",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -15568,6 +15868,10 @@
]
},
"minecraft:big_dripleaf_stem": {
+ "definition": {
+ "type": "minecraft:big_dripleaf_stem",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -15641,6 +15945,12 @@
]
},
"minecraft:birch_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "birch",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -15855,6 +16165,11 @@
]
},
"minecraft:birch_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "birch",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -16524,6 +16839,10 @@
]
},
"minecraft:birch_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -16871,6 +17190,11 @@
]
},
"minecraft:birch_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "birch"
+ },
"properties": {
"facing": [
"north",
@@ -17184,6 +17508,11 @@
]
},
"minecraft:birch_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "birch"
+ },
"properties": {
"attached": [
"true",
@@ -17729,6 +18058,10 @@
]
},
"minecraft:birch_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -17977,6 +18310,10 @@
]
},
"minecraft:birch_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -18007,6 +18344,10 @@
]
},
"minecraft:birch_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -18015,6 +18356,11 @@
]
},
"minecraft:birch_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "birch",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -18038,6 +18384,11 @@
]
},
"minecraft:birch_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "birch"
+ },
"properties": {
"stage": [
"0",
@@ -18061,6 +18412,11 @@
]
},
"minecraft:birch_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "birch"
+ },
"properties": {
"rotation": [
"0",
@@ -18314,6 +18670,10 @@
]
},
"minecraft:birch_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -18372,6 +18732,13 @@
]
},
"minecraft:birch_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:birch_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -19120,6 +19487,11 @@
]
},
"minecraft:birch_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "birch",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -19789,6 +20161,11 @@
]
},
"minecraft:birch_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "birch"
+ },
"properties": {
"facing": [
"north",
@@ -19862,6 +20239,11 @@
]
},
"minecraft:birch_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "birch"
+ },
"properties": {
"facing": [
"north",
@@ -19935,6 +20317,10 @@
]
},
"minecraft:birch_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -19965,6 +20351,11 @@
]
},
"minecraft:black_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "black",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -20086,6 +20477,11 @@
]
},
"minecraft:black_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "black",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -20235,6 +20631,10 @@
]
},
"minecraft:black_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -20384,6 +20784,11 @@
]
},
"minecraft:black_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:black_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -20407,6 +20812,11 @@
]
},
"minecraft:black_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "black",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20415,6 +20825,10 @@
]
},
"minecraft:black_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20423,6 +20837,11 @@
]
},
"minecraft:black_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:black_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20431,6 +20850,10 @@
]
},
"minecraft:black_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -20468,6 +20891,11 @@
]
},
"minecraft:black_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "black",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -20519,6 +20947,11 @@
]
},
"minecraft:black_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "black",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20527,6 +20960,11 @@
]
},
"minecraft:black_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "black",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -20874,6 +21312,10 @@
]
},
"minecraft:black_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20882,6 +21324,11 @@
]
},
"minecraft:black_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "black",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -20919,6 +21366,10 @@
]
},
"minecraft:black_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20927,6 +21378,10 @@
]
},
"minecraft:blackstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -20935,6 +21390,10 @@
]
},
"minecraft:blackstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -20993,6 +21452,13 @@
]
},
"minecraft:blackstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:blackstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -21741,6 +22207,10 @@
]
},
"minecraft:blackstone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -25340,6 +25810,10 @@
]
},
"minecraft:blast_furnace": {
+ "definition": {
+ "type": "minecraft:blast_furnace",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -25413,6 +25887,11 @@
]
},
"minecraft:blue_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "blue",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -25534,6 +26013,11 @@
]
},
"minecraft:blue_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -25683,6 +26167,10 @@
]
},
"minecraft:blue_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -25832,6 +26320,11 @@
]
},
"minecraft:blue_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:blue_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -25855,6 +26348,11 @@
]
},
"minecraft:blue_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "blue",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -25863,6 +26361,10 @@
]
},
"minecraft:blue_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -25871,6 +26373,11 @@
]
},
"minecraft:blue_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:blue_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -25879,6 +26386,10 @@
]
},
"minecraft:blue_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -25916,6 +26427,10 @@
]
},
"minecraft:blue_ice": {
+ "definition": {
+ "type": "minecraft:half_transparent",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -25924,6 +26439,16 @@
]
},
"minecraft:blue_orchid": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 7,
+ "id": "minecraft:saturation"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -25932,6 +26457,11 @@
]
},
"minecraft:blue_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -25983,6 +26513,11 @@
]
},
"minecraft:blue_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "blue",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -25991,6 +26526,11 @@
]
},
"minecraft:blue_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "blue",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -26338,6 +26878,10 @@
]
},
"minecraft:blue_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -26346,6 +26890,11 @@
]
},
"minecraft:blue_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -26383,6 +26932,10 @@
]
},
"minecraft:blue_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -26391,6 +26944,10 @@
]
},
"minecraft:bone_block": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -26421,6 +26978,10 @@
]
},
"minecraft:bookshelf": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -26429,6 +26990,11 @@
]
},
"minecraft:brain_coral": {
+ "definition": {
+ "type": "minecraft:coral_plant",
+ "dead": "minecraft:dead_brain_coral",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -26452,6 +27018,11 @@
]
},
"minecraft:brain_coral_block": {
+ "definition": {
+ "type": "minecraft:coral",
+ "dead": "minecraft:dead_brain_coral_block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -26460,6 +27031,11 @@
]
},
"minecraft:brain_coral_fan": {
+ "definition": {
+ "type": "minecraft:coral_fan",
+ "dead": "minecraft:dead_brain_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -26483,6 +27059,11 @@
]
},
"minecraft:brain_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:coral_wall_fan",
+ "dead": "minecraft:dead_brain_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -26556,6 +27137,10 @@
]
},
"minecraft:brewing_stand": {
+ "definition": {
+ "type": "minecraft:brewing_stand",
+ "properties": {}
+ },
"properties": {
"has_bottle_0": [
"true",
@@ -26639,6 +27224,10 @@
]
},
"minecraft:brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -26697,6 +27286,13 @@
]
},
"minecraft:brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -27445,6 +28041,10 @@
]
},
"minecraft:brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -31044,6 +31644,10 @@
]
},
"minecraft:bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -31052,6 +31656,11 @@
]
},
"minecraft:brown_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "brown",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -31173,6 +31782,11 @@
]
},
"minecraft:brown_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "brown",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -31322,6 +31936,10 @@
]
},
"minecraft:brown_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -31471,6 +32089,11 @@
]
},
"minecraft:brown_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:brown_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -31494,6 +32117,11 @@
]
},
"minecraft:brown_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "brown",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -31502,6 +32130,10 @@
]
},
"minecraft:brown_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -31510,6 +32142,11 @@
]
},
"minecraft:brown_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:brown_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -31518,6 +32155,10 @@
]
},
"minecraft:brown_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -31555,6 +32196,11 @@
]
},
"minecraft:brown_mushroom": {
+ "definition": {
+ "type": "minecraft:mushroom",
+ "feature": "minecraft:huge_brown_mushroom",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -31563,6 +32209,10 @@
]
},
"minecraft:brown_mushroom_block": {
+ "definition": {
+ "type": "minecraft:huge_mushroom",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -32298,6 +32948,11 @@
]
},
"minecraft:brown_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "brown",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -32349,6 +33004,11 @@
]
},
"minecraft:brown_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "brown",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -32357,6 +33017,11 @@
]
},
"minecraft:brown_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "brown",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -32704,6 +33369,10 @@
]
},
"minecraft:brown_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -32712,6 +33381,11 @@
]
},
"minecraft:brown_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "brown",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -32749,6 +33423,10 @@
]
},
"minecraft:brown_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -32757,6 +33435,10 @@
]
},
"minecraft:bubble_column": {
+ "definition": {
+ "type": "minecraft:bubble_column",
+ "properties": {}
+ },
"properties": {
"drag": [
"true",
@@ -32780,6 +33462,11 @@
]
},
"minecraft:bubble_coral": {
+ "definition": {
+ "type": "minecraft:coral_plant",
+ "dead": "minecraft:dead_bubble_coral",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -32803,6 +33490,11 @@
]
},
"minecraft:bubble_coral_block": {
+ "definition": {
+ "type": "minecraft:coral",
+ "dead": "minecraft:dead_bubble_coral_block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -32811,6 +33503,11 @@
]
},
"minecraft:bubble_coral_fan": {
+ "definition": {
+ "type": "minecraft:coral_fan",
+ "dead": "minecraft:dead_bubble_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -32834,6 +33531,11 @@
]
},
"minecraft:bubble_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:coral_wall_fan",
+ "dead": "minecraft:dead_bubble_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -32907,6 +33609,10 @@
]
},
"minecraft:budding_amethyst": {
+ "definition": {
+ "type": "minecraft:budding_amethyst",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -32915,6 +33621,10 @@
]
},
"minecraft:cactus": {
+ "definition": {
+ "type": "minecraft:cactus",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -33036,6 +33746,10 @@
]
},
"minecraft:cake": {
+ "definition": {
+ "type": "minecraft:cake",
+ "properties": {}
+ },
"properties": {
"bites": [
"0",
@@ -33094,6 +33808,10 @@
]
},
"minecraft:calcite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -33102,6 +33820,10 @@
]
},
"minecraft:calibrated_sculk_sensor": {
+ "definition": {
+ "type": "minecraft:calibrated_sculk_sensor",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -36598,6 +37320,12 @@
]
},
"minecraft:campfire": {
+ "definition": {
+ "type": "minecraft:campfire",
+ "fire_damage": 1,
+ "properties": {},
+ "spawn_particles": true
+ },
"properties": {
"facing": [
"north",
@@ -36911,6 +37639,10 @@
]
},
"minecraft:candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -37060,6 +37792,11 @@
]
},
"minecraft:candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -37083,6 +37820,10 @@
]
},
"minecraft:carrots": {
+ "definition": {
+ "type": "minecraft:carrot",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -37148,6 +37889,10 @@
]
},
"minecraft:cartography_table": {
+ "definition": {
+ "type": "minecraft:cartography_table",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -37156,6 +37901,10 @@
]
},
"minecraft:carved_pumpkin": {
+ "definition": {
+ "type": "minecraft:carved_pumpkin",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -37193,6 +37942,10 @@
]
},
"minecraft:cauldron": {
+ "definition": {
+ "type": "minecraft:cauldron",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -37201,6 +37954,10 @@
]
},
"minecraft:cave_air": {
+ "definition": {
+ "type": "minecraft:air",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -37209,6 +37966,10 @@
]
},
"minecraft:cave_vines": {
+ "definition": {
+ "type": "minecraft:cave_vines",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -37612,6 +38373,10 @@
]
},
"minecraft:cave_vines_plant": {
+ "definition": {
+ "type": "minecraft:cave_vines_plant",
+ "properties": {}
+ },
"properties": {
"berries": [
"true",
@@ -37635,6 +38400,10 @@
]
},
"minecraft:chain": {
+ "definition": {
+ "type": "minecraft:chain",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -37693,6 +38462,11 @@
]
},
"minecraft:chain_command_block": {
+ "definition": {
+ "type": "minecraft:command",
+ "automatic": true,
+ "properties": {}
+ },
"properties": {
"conditional": [
"true",
@@ -37796,6 +38570,12 @@
]
},
"minecraft:cherry_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "cherry",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -38010,6 +38790,11 @@
]
},
"minecraft:cherry_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "cherry",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -38679,6 +39464,10 @@
]
},
"minecraft:cherry_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -39026,6 +39815,11 @@
]
},
"minecraft:cherry_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "cherry"
+ },
"properties": {
"facing": [
"north",
@@ -39339,6 +40133,11 @@
]
},
"minecraft:cherry_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "cherry"
+ },
"properties": {
"attached": [
"true",
@@ -39884,6 +40683,10 @@
]
},
"minecraft:cherry_leaves": {
+ "definition": {
+ "type": "minecraft:cherry_leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -40132,6 +40935,10 @@
]
},
"minecraft:cherry_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -40162,6 +40969,10 @@
]
},
"minecraft:cherry_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -40170,6 +40981,11 @@
]
},
"minecraft:cherry_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "cherry",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -40193,6 +41009,11 @@
]
},
"minecraft:cherry_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "cherry"
+ },
"properties": {
"stage": [
"0",
@@ -40216,6 +41037,11 @@
]
},
"minecraft:cherry_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "cherry"
+ },
"properties": {
"rotation": [
"0",
@@ -40469,6 +41295,10 @@
]
},
"minecraft:cherry_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -40527,6 +41357,13 @@
]
},
"minecraft:cherry_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:cherry_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -41275,6 +42112,11 @@
]
},
"minecraft:cherry_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "cherry",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -41944,6 +42786,11 @@
]
},
"minecraft:cherry_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "cherry"
+ },
"properties": {
"facing": [
"north",
@@ -42017,6 +42864,11 @@
]
},
"minecraft:cherry_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "cherry"
+ },
"properties": {
"facing": [
"north",
@@ -42090,6 +42942,10 @@
]
},
"minecraft:cherry_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -42120,6 +42976,10 @@
]
},
"minecraft:chest": {
+ "definition": {
+ "type": "minecraft:chest",
+ "properties": {}
+ },
"properties": {
"type": [
"single",
@@ -42334,6 +43194,10 @@
]
},
"minecraft:chipped_anvil": {
+ "definition": {
+ "type": "minecraft:anvil",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -42371,6 +43235,10 @@
]
},
"minecraft:chiseled_bookshelf": {
+ "definition": {
+ "type": "minecraft:chiseled_book_shelf",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -45480,6 +46348,11 @@
]
},
"minecraft:chiseled_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"states": [
{
"default": true,
@@ -45488,6 +46361,10 @@
]
},
"minecraft:chiseled_deepslate": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45496,6 +46373,10 @@
]
},
"minecraft:chiseled_nether_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45504,6 +46385,10 @@
]
},
"minecraft:chiseled_polished_blackstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45512,6 +46397,10 @@
]
},
"minecraft:chiseled_quartz_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45520,6 +46409,10 @@
]
},
"minecraft:chiseled_red_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45528,6 +46421,10 @@
]
},
"minecraft:chiseled_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45536,6 +46433,10 @@
]
},
"minecraft:chiseled_stone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45544,6 +46445,10 @@
]
},
"minecraft:chiseled_tuff": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45552,6 +46457,10 @@
]
},
"minecraft:chiseled_tuff_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -45560,6 +46469,11 @@
]
},
"minecraft:chorus_flower": {
+ "definition": {
+ "type": "minecraft:chorus_flower",
+ "plant": "minecraft:chorus_plant",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -45611,6 +46525,10 @@
]
},
"minecraft:chorus_plant": {
+ "definition": {
+ "type": "minecraft:chorus_plant",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -46346,6 +47264,10 @@
]
},
"minecraft:clay": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -46354,6 +47276,10 @@
]
},
"minecraft:coal_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -46362,6 +47288,15 @@
]
},
"minecraft:coal_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 2,
+ "min_inclusive": 0
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -46370,6 +47305,10 @@
]
},
"minecraft:coarse_dirt": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -46378,6 +47317,10 @@
]
},
"minecraft:cobbled_deepslate": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -46386,6 +47329,10 @@
]
},
"minecraft:cobbled_deepslate_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -46444,6 +47391,13 @@
]
},
"minecraft:cobbled_deepslate_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:cobbled_deepslate"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -47192,6 +48146,10 @@
]
},
"minecraft:cobbled_deepslate_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -50791,6 +51749,10 @@
]
},
"minecraft:cobblestone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -50799,6 +51761,10 @@
]
},
"minecraft:cobblestone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -50857,6 +51823,13 @@
]
},
"minecraft:cobblestone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:cobblestone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -51605,6 +52578,10 @@
]
},
"minecraft:cobblestone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -55204,6 +56181,10 @@
]
},
"minecraft:cobweb": {
+ "definition": {
+ "type": "minecraft:web",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -55212,6 +56193,10 @@
]
},
"minecraft:cocoa": {
+ "definition": {
+ "type": "minecraft:cocoa",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -55314,6 +56299,11 @@
]
},
"minecraft:command_block": {
+ "definition": {
+ "type": "minecraft:command",
+ "automatic": false,
+ "properties": {}
+ },
"properties": {
"conditional": [
"true",
@@ -55417,6 +56407,10 @@
]
},
"minecraft:comparator": {
+ "definition": {
+ "type": "minecraft:comparator",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -55566,6 +56560,10 @@
]
},
"minecraft:composter": {
+ "definition": {
+ "type": "minecraft:composter",
+ "properties": {}
+ },
"properties": {
"level": [
"0",
@@ -55638,6 +56636,10 @@
]
},
"minecraft:conduit": {
+ "definition": {
+ "type": "minecraft:conduit",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -55661,6 +56663,11 @@
]
},
"minecraft:copper_block": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"states": [
{
"default": true,
@@ -55669,6 +56676,11 @@
]
},
"minecraft:copper_bulb": {
+ "definition": {
+ "type": "minecraft:weathering_copper_bulb",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"lit": [
"true",
@@ -55712,6 +56724,12 @@
]
},
"minecraft:copper_door": {
+ "definition": {
+ "type": "minecraft:weathering_copper_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"facing": [
"north",
@@ -56381,6 +57399,11 @@
]
},
"minecraft:copper_grate": {
+ "definition": {
+ "type": "minecraft:weathering_copper_grate",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"waterlogged": [
"true",
@@ -56404,6 +57427,11 @@
]
},
"minecraft:copper_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -56412,6 +57440,12 @@
]
},
"minecraft:copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:weathering_copper_trap_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"facing": [
"north",
@@ -57081,6 +58115,16 @@
]
},
"minecraft:cornflower": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 120,
+ "id": "minecraft:jump_boost"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -57089,6 +58133,10 @@
]
},
"minecraft:cracked_deepslate_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57097,6 +58145,10 @@
]
},
"minecraft:cracked_deepslate_tiles": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57105,6 +58157,10 @@
]
},
"minecraft:cracked_nether_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57113,6 +58169,10 @@
]
},
"minecraft:cracked_polished_blackstone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57121,6 +58181,10 @@
]
},
"minecraft:cracked_stone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57129,6 +58193,10 @@
]
},
"minecraft:crafter": {
+ "definition": {
+ "type": "minecraft:crafter",
+ "properties": {}
+ },
"properties": {
"crafting": [
"true",
@@ -57542,6 +58610,10 @@
]
},
"minecraft:crafting_table": {
+ "definition": {
+ "type": "minecraft:crafting_table",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -57550,6 +58622,11 @@
]
},
"minecraft:creeper_head": {
+ "definition": {
+ "type": "minecraft:skull",
+ "kind": "creeper",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -57803,6 +58880,11 @@
]
},
"minecraft:creeper_wall_head": {
+ "definition": {
+ "type": "minecraft:wall_skull",
+ "kind": "creeper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -57876,6 +58958,12 @@
]
},
"minecraft:crimson_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "crimson",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -58090,6 +59178,11 @@
]
},
"minecraft:crimson_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "crimson",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -58759,6 +59852,10 @@
]
},
"minecraft:crimson_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -59106,6 +60203,11 @@
]
},
"minecraft:crimson_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "crimson"
+ },
"properties": {
"facing": [
"north",
@@ -59419,6 +60521,12 @@
]
},
"minecraft:crimson_fungus": {
+ "definition": {
+ "type": "minecraft:fungus",
+ "feature": "minecraft:crimson_fungus_planted",
+ "grows_on": "minecraft:crimson_nylium",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -59427,6 +60535,11 @@
]
},
"minecraft:crimson_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "crimson"
+ },
"properties": {
"attached": [
"true",
@@ -59972,6 +61085,10 @@
]
},
"minecraft:crimson_hyphae": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -60002,6 +61119,10 @@
]
},
"minecraft:crimson_nylium": {
+ "definition": {
+ "type": "minecraft:nylium",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -60010,6 +61131,10 @@
]
},
"minecraft:crimson_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -60018,6 +61143,11 @@
]
},
"minecraft:crimson_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "crimson",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -60041,6 +61171,10 @@
]
},
"minecraft:crimson_roots": {
+ "definition": {
+ "type": "minecraft:roots",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -60049,6 +61183,11 @@
]
},
"minecraft:crimson_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "crimson"
+ },
"properties": {
"rotation": [
"0",
@@ -60302,6 +61441,10 @@
]
},
"minecraft:crimson_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -60360,6 +61503,13 @@
]
},
"minecraft:crimson_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:crimson_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -61108,6 +62258,10 @@
]
},
"minecraft:crimson_stem": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -61138,6 +62292,11 @@
]
},
"minecraft:crimson_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "crimson",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -61807,6 +62966,11 @@
]
},
"minecraft:crimson_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "crimson"
+ },
"properties": {
"facing": [
"north",
@@ -61880,6 +63044,11 @@
]
},
"minecraft:crimson_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "crimson"
+ },
"properties": {
"facing": [
"north",
@@ -61953,6 +63122,10 @@
]
},
"minecraft:crying_obsidian": {
+ "definition": {
+ "type": "minecraft:crying_obsidian",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -61961,6 +63134,11 @@
]
},
"minecraft:cut_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"states": [
{
"default": true,
@@ -61969,6 +63147,11 @@
]
},
"minecraft:cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:weathering_copper_slab",
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"type": [
"top",
@@ -62027,6 +63210,14 @@
]
},
"minecraft:cut_copper_stairs": {
+ "definition": {
+ "type": "minecraft:weathering_copper_stair",
+ "base_state": {
+ "Name": "minecraft:cut_copper"
+ },
+ "properties": {},
+ "weathering_state": "unaffected"
+ },
"properties": {
"facing": [
"north",
@@ -62775,6 +63966,10 @@
]
},
"minecraft:cut_red_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -62783,6 +63978,10 @@
]
},
"minecraft:cut_red_sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -62841,6 +64040,10 @@
]
},
"minecraft:cut_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -62849,6 +64052,10 @@
]
},
"minecraft:cut_sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -62907,6 +64114,11 @@
]
},
"minecraft:cyan_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "cyan",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -63028,6 +64240,11 @@
]
},
"minecraft:cyan_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "cyan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -63177,6 +64394,10 @@
]
},
"minecraft:cyan_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -63326,6 +64547,11 @@
]
},
"minecraft:cyan_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:cyan_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -63349,6 +64575,11 @@
]
},
"minecraft:cyan_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "cyan",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63357,6 +64588,10 @@
]
},
"minecraft:cyan_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63365,6 +64600,11 @@
]
},
"minecraft:cyan_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:cyan_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63373,6 +64613,10 @@
]
},
"minecraft:cyan_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -63410,6 +64654,11 @@
]
},
"minecraft:cyan_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "cyan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -63461,6 +64710,11 @@
]
},
"minecraft:cyan_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "cyan",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63469,6 +64723,11 @@
]
},
"minecraft:cyan_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "cyan",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -63816,6 +65075,10 @@
]
},
"minecraft:cyan_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63824,6 +65087,11 @@
]
},
"minecraft:cyan_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "cyan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -63861,6 +65129,10 @@
]
},
"minecraft:cyan_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -63869,6 +65141,10 @@
]
},
"minecraft:damaged_anvil": {
+ "definition": {
+ "type": "minecraft:anvil",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -63906,6 +65182,16 @@
]
},
"minecraft:dandelion": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 7,
+ "id": "minecraft:saturation"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -63914,6 +65200,12 @@
]
},
"minecraft:dark_oak_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "dark_oak",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -64128,6 +65420,11 @@
]
},
"minecraft:dark_oak_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "dark_oak",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -64797,6 +66094,10 @@
]
},
"minecraft:dark_oak_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -65144,6 +66445,11 @@
]
},
"minecraft:dark_oak_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "dark_oak"
+ },
"properties": {
"facing": [
"north",
@@ -65457,6 +66763,11 @@
]
},
"minecraft:dark_oak_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "dark_oak"
+ },
"properties": {
"attached": [
"true",
@@ -66002,6 +67313,10 @@
]
},
"minecraft:dark_oak_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -66250,6 +67565,10 @@
]
},
"minecraft:dark_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -66280,6 +67599,10 @@
]
},
"minecraft:dark_oak_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -66288,6 +67611,11 @@
]
},
"minecraft:dark_oak_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "dark_oak",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -66311,6 +67639,11 @@
]
},
"minecraft:dark_oak_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "dark_oak"
+ },
"properties": {
"stage": [
"0",
@@ -66334,6 +67667,11 @@
]
},
"minecraft:dark_oak_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "dark_oak"
+ },
"properties": {
"rotation": [
"0",
@@ -66587,6 +67925,10 @@
]
},
"minecraft:dark_oak_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -66645,6 +67987,13 @@
]
},
"minecraft:dark_oak_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:dark_oak_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -67393,6 +68742,11 @@
]
},
"minecraft:dark_oak_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "dark_oak",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -68062,6 +69416,11 @@
]
},
"minecraft:dark_oak_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "dark_oak"
+ },
"properties": {
"facing": [
"north",
@@ -68135,6 +69494,11 @@
]
},
"minecraft:dark_oak_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "dark_oak"
+ },
"properties": {
"facing": [
"north",
@@ -68208,6 +69572,10 @@
]
},
"minecraft:dark_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -68238,6 +69606,10 @@
]
},
"minecraft:dark_prismarine": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -68246,6 +69618,10 @@
]
},
"minecraft:dark_prismarine_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -68304,6 +69680,13 @@
]
},
"minecraft:dark_prismarine_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:dark_prismarine"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69052,6 +70435,10 @@
]
},
"minecraft:daylight_detector": {
+ "definition": {
+ "type": "minecraft:daylight_detector",
+ "properties": {}
+ },
"properties": {
"inverted": [
"true",
@@ -69305,6 +70692,10 @@
]
},
"minecraft:dead_brain_coral": {
+ "definition": {
+ "type": "minecraft:base_coral_plant",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69328,6 +70719,10 @@
]
},
"minecraft:dead_brain_coral_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69336,6 +70731,10 @@
]
},
"minecraft:dead_brain_coral_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69359,6 +70758,10 @@
]
},
"minecraft:dead_brain_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69432,6 +70835,10 @@
]
},
"minecraft:dead_bubble_coral": {
+ "definition": {
+ "type": "minecraft:base_coral_plant",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69455,6 +70862,10 @@
]
},
"minecraft:dead_bubble_coral_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69463,6 +70874,10 @@
]
},
"minecraft:dead_bubble_coral_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69486,6 +70901,10 @@
]
},
"minecraft:dead_bubble_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69559,6 +70978,10 @@
]
},
"minecraft:dead_bush": {
+ "definition": {
+ "type": "minecraft:dead_bush",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69567,6 +70990,10 @@
]
},
"minecraft:dead_fire_coral": {
+ "definition": {
+ "type": "minecraft:base_coral_plant",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69590,6 +71017,10 @@
]
},
"minecraft:dead_fire_coral_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69598,6 +71029,10 @@
]
},
"minecraft:dead_fire_coral_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69621,6 +71056,10 @@
]
},
"minecraft:dead_fire_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69694,6 +71133,10 @@
]
},
"minecraft:dead_horn_coral": {
+ "definition": {
+ "type": "minecraft:base_coral_plant",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69717,6 +71160,10 @@
]
},
"minecraft:dead_horn_coral_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69725,6 +71172,10 @@
]
},
"minecraft:dead_horn_coral_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69748,6 +71199,10 @@
]
},
"minecraft:dead_horn_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69821,6 +71276,10 @@
]
},
"minecraft:dead_tube_coral": {
+ "definition": {
+ "type": "minecraft:base_coral_plant",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69844,6 +71303,10 @@
]
},
"minecraft:dead_tube_coral_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -69852,6 +71315,10 @@
]
},
"minecraft:dead_tube_coral_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -69875,6 +71342,10 @@
]
},
"minecraft:dead_tube_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:base_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -69948,6 +71419,10 @@
]
},
"minecraft:decorated_pot": {
+ "definition": {
+ "type": "minecraft:decorated_pot",
+ "properties": {}
+ },
"properties": {
"cracked": [
"true",
@@ -70097,6 +71572,10 @@
]
},
"minecraft:deepslate": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -70127,6 +71606,10 @@
]
},
"minecraft:deepslate_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -70185,6 +71668,13 @@
]
},
"minecraft:deepslate_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:deepslate_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -70933,6 +72423,10 @@
]
},
"minecraft:deepslate_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -74532,6 +76026,10 @@
]
},
"minecraft:deepslate_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74540,6 +76038,15 @@
]
},
"minecraft:deepslate_coal_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 2,
+ "min_inclusive": 0
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74548,6 +76055,11 @@
]
},
"minecraft:deepslate_copper_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74556,6 +76068,15 @@
]
},
"minecraft:deepslate_diamond_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 3
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74564,6 +76085,15 @@
]
},
"minecraft:deepslate_emerald_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 3
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74572,6 +76102,11 @@
]
},
"minecraft:deepslate_gold_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74580,6 +76115,11 @@
]
},
"minecraft:deepslate_iron_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74588,6 +76128,15 @@
]
},
"minecraft:deepslate_lapis_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 5,
+ "min_inclusive": 2
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -74596,6 +76145,10 @@
]
},
"minecraft:deepslate_redstone_ore": {
+ "definition": {
+ "type": "minecraft:redstone_ore",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -74619,6 +76172,10 @@
]
},
"minecraft:deepslate_tile_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -74677,6 +76234,13 @@
]
},
"minecraft:deepslate_tile_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:deepslate_tiles"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -75425,6 +76989,10 @@
]
},
"minecraft:deepslate_tile_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -79024,6 +80592,10 @@
]
},
"minecraft:deepslate_tiles": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -79032,6 +80604,10 @@
]
},
"minecraft:detector_rail": {
+ "definition": {
+ "type": "minecraft:detector_rail",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -79247,6 +80823,10 @@
]
},
"minecraft:diamond_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -79255,6 +80835,15 @@
]
},
"minecraft:diamond_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 3
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -79263,6 +80852,10 @@
]
},
"minecraft:diorite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -79271,6 +80864,10 @@
]
},
"minecraft:diorite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -79329,6 +80926,13 @@
]
},
"minecraft:diorite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:diorite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -80077,6 +81681,10 @@
]
},
"minecraft:diorite_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -83676,6 +85284,10 @@
]
},
"minecraft:dirt": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -83684,6 +85296,10 @@
]
},
"minecraft:dirt_path": {
+ "definition": {
+ "type": "minecraft:dirt_path",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -83692,6 +85308,10 @@
]
},
"minecraft:dispenser": {
+ "definition": {
+ "type": "minecraft:dispenser",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -83795,6 +85415,10 @@
]
},
"minecraft:dragon_egg": {
+ "definition": {
+ "type": "minecraft:dragon_egg",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -83803,6 +85427,11 @@
]
},
"minecraft:dragon_head": {
+ "definition": {
+ "type": "minecraft:skull",
+ "kind": "dragon",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -84056,6 +85685,11 @@
]
},
"minecraft:dragon_wall_head": {
+ "definition": {
+ "type": "minecraft:wall_skull",
+ "kind": "dragon",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -84129,6 +85763,10 @@
]
},
"minecraft:dried_kelp_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84137,6 +85775,10 @@
]
},
"minecraft:dripstone_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84145,6 +85787,10 @@
]
},
"minecraft:dropper": {
+ "definition": {
+ "type": "minecraft:dropper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -84248,6 +85894,10 @@
]
},
"minecraft:emerald_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84256,6 +85906,15 @@
]
},
"minecraft:emerald_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 7,
+ "min_inclusive": 3
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84264,6 +85923,10 @@
]
},
"minecraft:enchanting_table": {
+ "definition": {
+ "type": "minecraft:enchantment_table",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84272,6 +85935,10 @@
]
},
"minecraft:end_gateway": {
+ "definition": {
+ "type": "minecraft:end_gateway",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84280,6 +85947,10 @@
]
},
"minecraft:end_portal": {
+ "definition": {
+ "type": "minecraft:end_portal",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84288,6 +85959,10 @@
]
},
"minecraft:end_portal_frame": {
+ "definition": {
+ "type": "minecraft:end_portal_frame",
+ "properties": {}
+ },
"properties": {
"eye": [
"true",
@@ -84361,6 +86036,10 @@
]
},
"minecraft:end_rod": {
+ "definition": {
+ "type": "minecraft:end_rod",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -84412,6 +86091,10 @@
]
},
"minecraft:end_stone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -84420,6 +86103,10 @@
]
},
"minecraft:end_stone_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -84478,6 +86165,13 @@
]
},
"minecraft:end_stone_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:end_stone_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -85226,6 +86920,10 @@
]
},
"minecraft:end_stone_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -88825,6 +90523,10 @@
]
},
"minecraft:end_stone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -88833,6 +90535,10 @@
]
},
"minecraft:ender_chest": {
+ "definition": {
+ "type": "minecraft:ender_chest",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -88906,6 +90612,11 @@
]
},
"minecraft:exposed_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"states": [
{
"default": true,
@@ -88914,6 +90625,11 @@
]
},
"minecraft:exposed_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"states": [
{
"default": true,
@@ -88922,6 +90638,11 @@
]
},
"minecraft:exposed_copper_bulb": {
+ "definition": {
+ "type": "minecraft:weathering_copper_bulb",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"properties": {
"lit": [
"true",
@@ -88965,6 +90686,12 @@
]
},
"minecraft:exposed_copper_door": {
+ "definition": {
+ "type": "minecraft:weathering_copper_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"properties": {
"facing": [
"north",
@@ -89634,6 +91361,11 @@
]
},
"minecraft:exposed_copper_grate": {
+ "definition": {
+ "type": "minecraft:weathering_copper_grate",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"properties": {
"waterlogged": [
"true",
@@ -89657,6 +91389,12 @@
]
},
"minecraft:exposed_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:weathering_copper_trap_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"properties": {
"facing": [
"north",
@@ -90326,6 +92064,11 @@
]
},
"minecraft:exposed_cut_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"states": [
{
"default": true,
@@ -90334,6 +92077,11 @@
]
},
"minecraft:exposed_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:weathering_copper_slab",
+ "properties": {},
+ "weathering_state": "exposed"
+ },
"properties": {
"type": [
"top",
@@ -90392,6 +92140,14 @@
]
},
"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",
@@ -91140,6 +92896,10 @@
]
},
"minecraft:farmland": {
+ "definition": {
+ "type": "minecraft:farm",
+ "properties": {}
+ },
"properties": {
"moisture": [
"0",
@@ -91205,6 +92965,10 @@
]
},
"minecraft:fern": {
+ "definition": {
+ "type": "minecraft:tall_grass",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -91213,6 +92977,10 @@
]
},
"minecraft:fire": {
+ "definition": {
+ "type": "minecraft:fire",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -96890,6 +98658,11 @@
]
},
"minecraft:fire_coral": {
+ "definition": {
+ "type": "minecraft:coral_plant",
+ "dead": "minecraft:dead_fire_coral",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -96913,6 +98686,11 @@
]
},
"minecraft:fire_coral_block": {
+ "definition": {
+ "type": "minecraft:coral",
+ "dead": "minecraft:dead_fire_coral_block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -96921,6 +98699,11 @@
]
},
"minecraft:fire_coral_fan": {
+ "definition": {
+ "type": "minecraft:coral_fan",
+ "dead": "minecraft:dead_fire_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -96944,6 +98727,11 @@
]
},
"minecraft:fire_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:coral_wall_fan",
+ "dead": "minecraft:dead_fire_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -97017,6 +98805,10 @@
]
},
"minecraft:fletching_table": {
+ "definition": {
+ "type": "minecraft:fletching_table",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97025,6 +98817,11 @@
]
},
"minecraft:flower_pot": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:air",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97033,6 +98830,10 @@
]
},
"minecraft:flowering_azalea": {
+ "definition": {
+ "type": "minecraft:azalea",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97041,6 +98842,10 @@
]
},
"minecraft:flowering_azalea_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -97289,6 +99094,10 @@
]
},
"minecraft:frogspawn": {
+ "definition": {
+ "type": "minecraft:frogspawn",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97297,6 +99106,10 @@
]
},
"minecraft:frosted_ice": {
+ "definition": {
+ "type": "minecraft:frosted_ice",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -97334,6 +99147,10 @@
]
},
"minecraft:furnace": {
+ "definition": {
+ "type": "minecraft:furnace",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -97407,6 +99224,10 @@
]
},
"minecraft:gilded_blackstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97415,6 +99236,10 @@
]
},
"minecraft:glass": {
+ "definition": {
+ "type": "minecraft:transparent",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -97423,6 +99248,10 @@
]
},
"minecraft:glass_pane": {
+ "definition": {
+ "type": "minecraft:iron_bars",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -97770,6 +99599,10 @@
]
},
"minecraft:glow_lichen": {
+ "definition": {
+ "type": "minecraft:glow_lichen",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -99341,6 +101174,10 @@
]
},
"minecraft:glowstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -99349,6 +101186,10 @@
]
},
"minecraft:gold_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -99357,6 +101198,11 @@
]
},
"minecraft:gold_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -99365,6 +101211,10 @@
]
},
"minecraft:granite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -99373,6 +101223,10 @@
]
},
"minecraft:granite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -99431,6 +101285,13 @@
]
},
"minecraft:granite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:granite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -100179,6 +102040,10 @@
]
},
"minecraft:granite_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -103778,6 +105643,10 @@
]
},
"minecraft:grass_block": {
+ "definition": {
+ "type": "minecraft:grass",
+ "properties": {}
+ },
"properties": {
"snowy": [
"true",
@@ -103801,6 +105670,11 @@
]
},
"minecraft:gravel": {
+ "definition": {
+ "type": "minecraft:colored_falling",
+ "falling_dust_color": "#FF807C7B",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -103809,6 +105683,11 @@
]
},
"minecraft:gray_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "gray",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -103930,6 +105809,11 @@
]
},
"minecraft:gray_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -104079,6 +105963,10 @@
]
},
"minecraft:gray_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -104228,6 +106116,11 @@
]
},
"minecraft:gray_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:gray_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -104251,6 +106144,11 @@
]
},
"minecraft:gray_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "gray",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104259,6 +106157,10 @@
]
},
"minecraft:gray_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104267,6 +106169,11 @@
]
},
"minecraft:gray_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:gray_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104275,6 +106182,10 @@
]
},
"minecraft:gray_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -104312,6 +106223,11 @@
]
},
"minecraft:gray_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -104363,6 +106279,11 @@
]
},
"minecraft:gray_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "gray",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104371,6 +106292,11 @@
]
},
"minecraft:gray_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "gray",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -104718,6 +106644,10 @@
]
},
"minecraft:gray_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104726,6 +106656,11 @@
]
},
"minecraft:gray_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -104763,6 +106698,10 @@
]
},
"minecraft:gray_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -104771,6 +106710,11 @@
]
},
"minecraft:green_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "green",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -104892,6 +106836,11 @@
]
},
"minecraft:green_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "green",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -105041,6 +106990,10 @@
]
},
"minecraft:green_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -105190,6 +107143,11 @@
]
},
"minecraft:green_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:green_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -105213,6 +107171,11 @@
]
},
"minecraft:green_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "green",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105221,6 +107184,10 @@
]
},
"minecraft:green_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105229,6 +107196,11 @@
]
},
"minecraft:green_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:green_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105237,6 +107209,10 @@
]
},
"minecraft:green_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -105274,6 +107250,11 @@
]
},
"minecraft:green_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "green",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -105325,6 +107306,11 @@
]
},
"minecraft:green_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "green",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105333,6 +107319,11 @@
]
},
"minecraft:green_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "green",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -105680,6 +107671,10 @@
]
},
"minecraft:green_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105688,6 +107683,11 @@
]
},
"minecraft:green_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "green",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -105725,6 +107725,10 @@
]
},
"minecraft:green_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -105733,6 +107737,10 @@
]
},
"minecraft:grindstone": {
+ "definition": {
+ "type": "minecraft:grindstone",
+ "properties": {}
+ },
"properties": {
"face": [
"floor",
@@ -105835,6 +107843,10 @@
]
},
"minecraft:hanging_roots": {
+ "definition": {
+ "type": "minecraft:hanging_roots",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -105858,6 +107870,10 @@
]
},
"minecraft:hay_block": {
+ "definition": {
+ "type": "minecraft:hay",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -105887,7 +107903,40 @@
}
]
},
+ "minecraft:heavy_core": {
+ "definition": {
+ "type": "minecraft:heavy_core",
+ "properties": {}
+ },
+ "properties": {
+ "waterlogged": [
+ "true",
+ "false"
+ ]
+ },
+ "states": [
+ {
+ "id": 26682,
+ "properties": {
+ "waterlogged": "true"
+ }
+ },
+ {
+ "default": true,
+ "id": 26683,
+ "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",
@@ -106009,6 +108058,10 @@
]
},
"minecraft:honey_block": {
+ "definition": {
+ "type": "minecraft:honey",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106017,6 +108070,10 @@
]
},
"minecraft:honeycomb_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106025,6 +108082,10 @@
]
},
"minecraft:hopper": {
+ "definition": {
+ "type": "minecraft:hopper",
+ "properties": {}
+ },
"properties": {
"enabled": [
"true",
@@ -106113,6 +108174,11 @@
]
},
"minecraft:horn_coral": {
+ "definition": {
+ "type": "minecraft:coral_plant",
+ "dead": "minecraft:dead_horn_coral",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -106136,6 +108202,11 @@
]
},
"minecraft:horn_coral_block": {
+ "definition": {
+ "type": "minecraft:coral",
+ "dead": "minecraft:dead_horn_coral_block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106144,6 +108215,11 @@
]
},
"minecraft:horn_coral_fan": {
+ "definition": {
+ "type": "minecraft:coral_fan",
+ "dead": "minecraft:dead_horn_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -106167,6 +108243,11 @@
]
},
"minecraft:horn_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:coral_wall_fan",
+ "dead": "minecraft:dead_horn_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -106240,6 +108321,10 @@
]
},
"minecraft:ice": {
+ "definition": {
+ "type": "minecraft:ice",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106248,6 +108333,11 @@
]
},
"minecraft:infested_chiseled_stone_bricks": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:chiseled_stone_bricks",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106256,6 +108346,11 @@
]
},
"minecraft:infested_cobblestone": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:cobblestone",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106264,6 +108359,11 @@
]
},
"minecraft:infested_cracked_stone_bricks": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:cracked_stone_bricks",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106272,6 +108372,11 @@
]
},
"minecraft:infested_deepslate": {
+ "definition": {
+ "type": "minecraft:infested_rotated_pillar",
+ "host": "minecraft:deepslate",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -106302,6 +108407,11 @@
]
},
"minecraft:infested_mossy_stone_bricks": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:mossy_stone_bricks",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106310,6 +108420,11 @@
]
},
"minecraft:infested_stone": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:stone",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106318,6 +108433,11 @@
]
},
"minecraft:infested_stone_bricks": {
+ "definition": {
+ "type": "minecraft:infested",
+ "host": "minecraft:stone_bricks",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106326,6 +108446,10 @@
]
},
"minecraft:iron_bars": {
+ "definition": {
+ "type": "minecraft:iron_bars",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -106673,6 +108797,10 @@
]
},
"minecraft:iron_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -106681,6 +108809,11 @@
]
},
"minecraft:iron_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "iron",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -107350,6 +109483,11 @@
]
},
"minecraft:iron_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": 0,
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -107358,6 +109496,11 @@
]
},
"minecraft:iron_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "iron",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -108027,6 +110170,10 @@
]
},
"minecraft:jack_o_lantern": {
+ "definition": {
+ "type": "minecraft:jack_o_lantern",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -108064,6 +110211,10 @@
]
},
"minecraft:jigsaw": {
+ "definition": {
+ "type": "minecraft:jigsaw",
+ "properties": {}
+ },
"properties": {
"orientation": [
"down_east",
@@ -108157,6 +110308,10 @@
]
},
"minecraft:jukebox": {
+ "definition": {
+ "type": "minecraft:jukebox",
+ "properties": {}
+ },
"properties": {
"has_record": [
"true",
@@ -108180,6 +110335,12 @@
]
},
"minecraft:jungle_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "jungle",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -108394,6 +110555,11 @@
]
},
"minecraft:jungle_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "jungle",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -109063,6 +111229,10 @@
]
},
"minecraft:jungle_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -109410,6 +111580,11 @@
]
},
"minecraft:jungle_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "jungle"
+ },
"properties": {
"facing": [
"north",
@@ -109723,6 +111898,11 @@
]
},
"minecraft:jungle_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "jungle"
+ },
"properties": {
"attached": [
"true",
@@ -110268,6 +112448,10 @@
]
},
"minecraft:jungle_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -110516,6 +112700,10 @@
]
},
"minecraft:jungle_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -110546,6 +112734,10 @@
]
},
"minecraft:jungle_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -110554,6 +112746,11 @@
]
},
"minecraft:jungle_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "jungle",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -110577,6 +112774,11 @@
]
},
"minecraft:jungle_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "jungle"
+ },
"properties": {
"stage": [
"0",
@@ -110600,6 +112802,11 @@
]
},
"minecraft:jungle_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "jungle"
+ },
"properties": {
"rotation": [
"0",
@@ -110853,6 +113060,10 @@
]
},
"minecraft:jungle_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -110911,6 +113122,13 @@
]
},
"minecraft:jungle_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:jungle_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -111659,6 +113877,11 @@
]
},
"minecraft:jungle_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "jungle",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -112328,6 +114551,11 @@
]
},
"minecraft:jungle_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "jungle"
+ },
"properties": {
"facing": [
"north",
@@ -112401,6 +114629,11 @@
]
},
"minecraft:jungle_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "jungle"
+ },
"properties": {
"facing": [
"north",
@@ -112474,6 +114707,10 @@
]
},
"minecraft:jungle_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -112504,6 +114741,10 @@
]
},
"minecraft:kelp": {
+ "definition": {
+ "type": "minecraft:kelp",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -112695,6 +114936,10 @@
]
},
"minecraft:kelp_plant": {
+ "definition": {
+ "type": "minecraft:kelp_plant",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -112703,6 +114948,10 @@
]
},
"minecraft:ladder": {
+ "definition": {
+ "type": "minecraft:ladder",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -112776,6 +115025,10 @@
]
},
"minecraft:lantern": {
+ "definition": {
+ "type": "minecraft:lantern",
+ "properties": {}
+ },
"properties": {
"hanging": [
"true",
@@ -112819,6 +115072,10 @@
]
},
"minecraft:lapis_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -112827,6 +115084,15 @@
]
},
"minecraft:lapis_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 5,
+ "min_inclusive": 2
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -112835,6 +115101,12 @@
]
},
"minecraft:large_amethyst_bud": {
+ "definition": {
+ "type": "minecraft:amethyst_cluster",
+ "aabb_offset": 3.0,
+ "height": 5.0,
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -112938,6 +115210,10 @@
]
},
"minecraft:large_fern": {
+ "definition": {
+ "type": "minecraft:double_plant",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -112961,6 +115237,11 @@
]
},
"minecraft:lava": {
+ "definition": {
+ "type": "minecraft:liquid",
+ "fluid": "minecraft:lava",
+ "properties": {}
+ },
"properties": {
"level": [
"0",
@@ -113082,6 +115363,10 @@
]
},
"minecraft:lava_cauldron": {
+ "definition": {
+ "type": "minecraft:lava_cauldron",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -113090,6 +115375,10 @@
]
},
"minecraft:lectern": {
+ "definition": {
+ "type": "minecraft:lectern",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -113239,6 +115528,10 @@
]
},
"minecraft:lever": {
+ "definition": {
+ "type": "minecraft:lever",
+ "properties": {}
+ },
"properties": {
"face": [
"floor",
@@ -113453,6 +115746,10 @@
]
},
"minecraft:light": {
+ "definition": {
+ "type": "minecraft:light",
+ "properties": {}
+ },
"properties": {
"level": [
"0",
@@ -113706,6 +116003,11 @@
]
},
"minecraft:light_blue_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "light_blue",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -113827,6 +116129,11 @@
]
},
"minecraft:light_blue_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "light_blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -113976,6 +116283,10 @@
]
},
"minecraft:light_blue_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -114125,6 +116436,11 @@
]
},
"minecraft:light_blue_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:light_blue_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -114148,6 +116464,11 @@
]
},
"minecraft:light_blue_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "light_blue",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114156,6 +116477,10 @@
]
},
"minecraft:light_blue_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114164,6 +116489,11 @@
]
},
"minecraft:light_blue_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:light_blue_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114172,6 +116502,10 @@
]
},
"minecraft:light_blue_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -114209,6 +116543,11 @@
]
},
"minecraft:light_blue_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "light_blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -114260,6 +116599,11 @@
]
},
"minecraft:light_blue_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "light_blue",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114268,6 +116612,11 @@
]
},
"minecraft:light_blue_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "light_blue",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -114615,6 +116964,10 @@
]
},
"minecraft:light_blue_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114623,6 +116976,11 @@
]
},
"minecraft:light_blue_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "light_blue",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -114660,6 +117018,10 @@
]
},
"minecraft:light_blue_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -114668,6 +117030,11 @@
]
},
"minecraft:light_gray_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "light_gray",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -114789,6 +117156,11 @@
]
},
"minecraft:light_gray_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "light_gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -114938,6 +117310,10 @@
]
},
"minecraft:light_gray_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -115087,6 +117463,11 @@
]
},
"minecraft:light_gray_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:light_gray_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -115110,6 +117491,11 @@
]
},
"minecraft:light_gray_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "light_gray",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115118,6 +117504,10 @@
]
},
"minecraft:light_gray_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115126,6 +117516,11 @@
]
},
"minecraft:light_gray_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:light_gray_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115134,6 +117529,10 @@
]
},
"minecraft:light_gray_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -115171,6 +117570,11 @@
]
},
"minecraft:light_gray_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "light_gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -115222,6 +117626,11 @@
]
},
"minecraft:light_gray_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "light_gray",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115230,6 +117639,11 @@
]
},
"minecraft:light_gray_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "light_gray",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -115577,6 +117991,10 @@
]
},
"minecraft:light_gray_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115585,6 +118003,11 @@
]
},
"minecraft:light_gray_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "light_gray",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -115622,6 +118045,10 @@
]
},
"minecraft:light_gray_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -115630,6 +118057,12 @@
]
},
"minecraft:light_weighted_pressure_plate": {
+ "definition": {
+ "type": "minecraft:weighted_pressure_plate",
+ "block_set_type": "gold",
+ "max_weight": 15,
+ "properties": {}
+ },
"properties": {
"power": [
"0",
@@ -115751,6 +118184,10 @@
]
},
"minecraft:lightning_rod": {
+ "definition": {
+ "type": "minecraft:lightning_rod",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -115966,6 +118403,10 @@
]
},
"minecraft:lilac": {
+ "definition": {
+ "type": "minecraft:tall_flower",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -115989,6 +118430,16 @@
]
},
"minecraft:lily_of_the_valley": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 240,
+ "id": "minecraft:poison"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -115997,6 +118448,10 @@
]
},
"minecraft:lily_pad": {
+ "definition": {
+ "type": "minecraft:waterlily",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116005,6 +118460,11 @@
]
},
"minecraft:lime_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "lime",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -116126,6 +118586,11 @@
]
},
"minecraft:lime_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "lime",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -116275,6 +118740,10 @@
]
},
"minecraft:lime_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -116424,6 +118893,11 @@
]
},
"minecraft:lime_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:lime_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -116447,6 +118921,11 @@
]
},
"minecraft:lime_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "lime",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116455,6 +118934,10 @@
]
},
"minecraft:lime_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116463,6 +118946,11 @@
]
},
"minecraft:lime_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:lime_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116471,6 +118959,10 @@
]
},
"minecraft:lime_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -116508,6 +119000,11 @@
]
},
"minecraft:lime_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "lime",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -116559,6 +119056,11 @@
]
},
"minecraft:lime_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "lime",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116567,6 +119069,11 @@
]
},
"minecraft:lime_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "lime",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -116914,6 +119421,10 @@
]
},
"minecraft:lime_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116922,6 +119433,11 @@
]
},
"minecraft:lime_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "lime",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -116959,6 +119475,10 @@
]
},
"minecraft:lime_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116967,6 +119487,10 @@
]
},
"minecraft:lodestone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -116975,6 +119499,10 @@
]
},
"minecraft:loom": {
+ "definition": {
+ "type": "minecraft:loom",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -117012,6 +119540,11 @@
]
},
"minecraft:magenta_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "magenta",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -117133,6 +119666,11 @@
]
},
"minecraft:magenta_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "magenta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -117282,6 +119820,10 @@
]
},
"minecraft:magenta_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -117431,6 +119973,11 @@
]
},
"minecraft:magenta_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:magenta_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -117454,6 +120001,11 @@
]
},
"minecraft:magenta_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "magenta",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117462,6 +120014,10 @@
]
},
"minecraft:magenta_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117470,6 +120026,11 @@
]
},
"minecraft:magenta_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:magenta_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117478,6 +120039,10 @@
]
},
"minecraft:magenta_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -117515,6 +120080,11 @@
]
},
"minecraft:magenta_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "magenta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -117566,6 +120136,11 @@
]
},
"minecraft:magenta_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "magenta",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117574,6 +120149,11 @@
]
},
"minecraft:magenta_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "magenta",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -117921,6 +120501,10 @@
]
},
"minecraft:magenta_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117929,6 +120513,11 @@
]
},
"minecraft:magenta_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "magenta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -117966,6 +120555,10 @@
]
},
"minecraft:magenta_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117974,6 +120567,10 @@
]
},
"minecraft:magma_block": {
+ "definition": {
+ "type": "minecraft:magma",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -117982,6 +120579,12 @@
]
},
"minecraft:mangrove_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "mangrove",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -118196,6 +120799,11 @@
]
},
"minecraft:mangrove_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "mangrove",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -118865,6 +121473,10 @@
]
},
"minecraft:mangrove_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -119212,6 +121824,11 @@
]
},
"minecraft:mangrove_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "mangrove"
+ },
"properties": {
"facing": [
"north",
@@ -119525,6 +122142,11 @@
]
},
"minecraft:mangrove_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "mangrove"
+ },
"properties": {
"attached": [
"true",
@@ -120070,6 +122692,10 @@
]
},
"minecraft:mangrove_leaves": {
+ "definition": {
+ "type": "minecraft:mangrove_leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -120318,6 +122944,10 @@
]
},
"minecraft:mangrove_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -120348,6 +122978,10 @@
]
},
"minecraft:mangrove_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -120356,6 +122990,11 @@
]
},
"minecraft:mangrove_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "mangrove",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -120379,6 +123018,11 @@
]
},
"minecraft:mangrove_propagule": {
+ "definition": {
+ "type": "minecraft:mangrove_propagule",
+ "properties": {},
+ "tree": "mangrove"
+ },
"properties": {
"age": [
"0",
@@ -120765,6 +123409,10 @@
]
},
"minecraft:mangrove_roots": {
+ "definition": {
+ "type": "minecraft:mangrove_roots",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -120788,6 +123436,11 @@
]
},
"minecraft:mangrove_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "mangrove"
+ },
"properties": {
"rotation": [
"0",
@@ -121041,6 +123694,10 @@
]
},
"minecraft:mangrove_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -121099,6 +123756,13 @@
]
},
"minecraft:mangrove_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:mangrove_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -121847,6 +124511,11 @@
]
},
"minecraft:mangrove_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "mangrove",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -122516,6 +125185,11 @@
]
},
"minecraft:mangrove_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "mangrove"
+ },
"properties": {
"facing": [
"north",
@@ -122589,6 +125263,11 @@
]
},
"minecraft:mangrove_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "mangrove"
+ },
"properties": {
"facing": [
"north",
@@ -122662,6 +125341,10 @@
]
},
"minecraft:mangrove_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -122692,6 +125375,12 @@
]
},
"minecraft:medium_amethyst_bud": {
+ "definition": {
+ "type": "minecraft:amethyst_cluster",
+ "aabb_offset": 3.0,
+ "height": 4.0,
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -122795,6 +125484,10 @@
]
},
"minecraft:melon": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -122803,6 +125496,13 @@
]
},
"minecraft:melon_stem": {
+ "definition": {
+ "type": "minecraft:stem",
+ "attached_stem": "minecraft:attached_melon_stem",
+ "fruit": "minecraft:melon",
+ "properties": {},
+ "seed": "minecraft:melon_seeds"
+ },
"properties": {
"age": [
"0",
@@ -122868,6 +125568,10 @@
]
},
"minecraft:moss_block": {
+ "definition": {
+ "type": "minecraft:moss",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -122876,6 +125580,10 @@
]
},
"minecraft:moss_carpet": {
+ "definition": {
+ "type": "minecraft:carpet",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -122884,6 +125592,10 @@
]
},
"minecraft:mossy_cobblestone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -122892,6 +125604,10 @@
]
},
"minecraft:mossy_cobblestone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -122950,6 +125666,13 @@
]
},
"minecraft:mossy_cobblestone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:mossy_cobblestone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -123698,6 +126421,10 @@
]
},
"minecraft:mossy_cobblestone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -127297,6 +130024,10 @@
]
},
"minecraft:mossy_stone_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -127355,6 +130086,13 @@
]
},
"minecraft:mossy_stone_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:mossy_stone_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -128103,6 +130841,10 @@
]
},
"minecraft:mossy_stone_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -131702,6 +134444,10 @@
]
},
"minecraft:mossy_stone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -131710,6 +134456,10 @@
]
},
"minecraft:moving_piston": {
+ "definition": {
+ "type": "minecraft:moving_piston",
+ "properties": {}
+ },
"properties": {
"type": [
"normal",
@@ -131813,6 +134563,10 @@
]
},
"minecraft:mud": {
+ "definition": {
+ "type": "minecraft:mud",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -131821,6 +134575,10 @@
]
},
"minecraft:mud_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -131879,6 +134637,13 @@
]
},
"minecraft:mud_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:mud_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -132627,6 +135392,10 @@
]
},
"minecraft:mud_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -136226,6 +138995,10 @@
]
},
"minecraft:mud_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -136234,6 +139007,10 @@
]
},
"minecraft:muddy_mangrove_roots": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -136264,6 +139041,10 @@
]
},
"minecraft:mushroom_stem": {
+ "definition": {
+ "type": "minecraft:huge_mushroom",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -136999,6 +139780,10 @@
]
},
"minecraft:mycelium": {
+ "definition": {
+ "type": "minecraft:mycelium",
+ "properties": {}
+ },
"properties": {
"snowy": [
"true",
@@ -137022,6 +139807,10 @@
]
},
"minecraft:nether_brick_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -137369,6 +140158,10 @@
]
},
"minecraft:nether_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -137427,6 +140220,13 @@
]
},
"minecraft:nether_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:nether_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -138175,6 +140975,10 @@
]
},
"minecraft:nether_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -141774,6 +144578,10 @@
]
},
"minecraft:nether_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141782,6 +144590,15 @@
]
},
"minecraft:nether_gold_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 1,
+ "min_inclusive": 0
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141790,6 +144607,10 @@
]
},
"minecraft:nether_portal": {
+ "definition": {
+ "type": "minecraft:nether_portal",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -141813,6 +144634,15 @@
]
},
"minecraft:nether_quartz_ore": {
+ "definition": {
+ "type": "minecraft:drop_experience",
+ "experience": {
+ "type": "minecraft:uniform",
+ "max_inclusive": 5,
+ "min_inclusive": 2
+ },
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141821,6 +144651,10 @@
]
},
"minecraft:nether_sprouts": {
+ "definition": {
+ "type": "minecraft:nether_sprouts",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141829,6 +144663,10 @@
]
},
"minecraft:nether_wart": {
+ "definition": {
+ "type": "minecraft:nether_wart",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -141866,6 +144704,10 @@
]
},
"minecraft:nether_wart_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141874,6 +144716,10 @@
]
},
"minecraft:netherite_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141882,6 +144728,10 @@
]
},
"minecraft:netherrack": {
+ "definition": {
+ "type": "minecraft:netherrack",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -141890,6 +144740,10 @@
]
},
"minecraft:note_block": {
+ "definition": {
+ "type": "minecraft:note",
+ "properties": {}
+ },
"properties": {
"instrument": [
"harp",
@@ -151153,6 +154007,12 @@
]
},
"minecraft:oak_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "oak",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -151367,6 +154227,11 @@
]
},
"minecraft:oak_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "oak",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -152036,6 +154901,10 @@
]
},
"minecraft:oak_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -152383,6 +155252,11 @@
]
},
"minecraft:oak_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "oak"
+ },
"properties": {
"facing": [
"north",
@@ -152696,6 +155570,11 @@
]
},
"minecraft:oak_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "oak"
+ },
"properties": {
"attached": [
"true",
@@ -153241,6 +156120,10 @@
]
},
"minecraft:oak_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -153489,6 +156372,10 @@
]
},
"minecraft:oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -153519,6 +156406,10 @@
]
},
"minecraft:oak_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -153527,6 +156418,11 @@
]
},
"minecraft:oak_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "oak",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -153550,6 +156446,11 @@
]
},
"minecraft:oak_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "oak"
+ },
"properties": {
"stage": [
"0",
@@ -153573,6 +156474,11 @@
]
},
"minecraft:oak_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "oak"
+ },
"properties": {
"rotation": [
"0",
@@ -153826,6 +156732,10 @@
]
},
"minecraft:oak_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -153884,6 +156794,13 @@
]
},
"minecraft:oak_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:oak_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -154632,6 +157549,11 @@
]
},
"minecraft:oak_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "oak",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -155301,6 +158223,11 @@
]
},
"minecraft:oak_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "oak"
+ },
"properties": {
"facing": [
"north",
@@ -155374,6 +158301,11 @@
]
},
"minecraft:oak_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "oak"
+ },
"properties": {
"facing": [
"north",
@@ -155447,6 +158379,10 @@
]
},
"minecraft:oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -155477,6 +158413,10 @@
]
},
"minecraft:observer": {
+ "definition": {
+ "type": "minecraft:observer",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -155580,6 +158520,10 @@
]
},
"minecraft:obsidian": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -155588,6 +158532,10 @@
]
},
"minecraft:ochre_froglight": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -155618,6 +158566,11 @@
]
},
"minecraft:orange_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "orange",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -155739,6 +158692,11 @@
]
},
"minecraft:orange_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "orange",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -155888,6 +158846,10 @@
]
},
"minecraft:orange_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -156037,6 +158999,11 @@
]
},
"minecraft:orange_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:orange_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -156060,6 +159027,11 @@
]
},
"minecraft:orange_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "orange",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156068,6 +159040,10 @@
]
},
"minecraft:orange_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156076,6 +159052,11 @@
]
},
"minecraft:orange_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:orange_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156084,6 +159065,10 @@
]
},
"minecraft:orange_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -156121,6 +159106,11 @@
]
},
"minecraft:orange_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "orange",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -156172,6 +159162,11 @@
]
},
"minecraft:orange_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "orange",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156180,6 +159175,11 @@
]
},
"minecraft:orange_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "orange",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -156527,6 +159527,10 @@
]
},
"minecraft:orange_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156535,6 +159539,16 @@
]
},
"minecraft:orange_tulip": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 180,
+ "id": "minecraft:weakness"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -156543,6 +159557,11 @@
]
},
"minecraft:orange_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "orange",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -156580,6 +159599,10 @@
]
},
"minecraft:orange_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -156588,6 +159611,15 @@
]
},
"minecraft:oxeye_daisy": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "id": "minecraft:regeneration"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -156596,6 +159628,11 @@
]
},
"minecraft:oxidized_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"states": [
{
"default": true,
@@ -156604,6 +159641,11 @@
]
},
"minecraft:oxidized_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"states": [
{
"default": true,
@@ -156612,6 +159654,11 @@
]
},
"minecraft:oxidized_copper_bulb": {
+ "definition": {
+ "type": "minecraft:weathering_copper_bulb",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"properties": {
"lit": [
"true",
@@ -156655,6 +159702,12 @@
]
},
"minecraft:oxidized_copper_door": {
+ "definition": {
+ "type": "minecraft:weathering_copper_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"properties": {
"facing": [
"north",
@@ -157324,6 +160377,11 @@
]
},
"minecraft:oxidized_copper_grate": {
+ "definition": {
+ "type": "minecraft:weathering_copper_grate",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"properties": {
"waterlogged": [
"true",
@@ -157347,6 +160405,12 @@
]
},
"minecraft:oxidized_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:weathering_copper_trap_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"properties": {
"facing": [
"north",
@@ -158016,6 +161080,11 @@
]
},
"minecraft:oxidized_cut_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"states": [
{
"default": true,
@@ -158024,6 +161093,11 @@
]
},
"minecraft:oxidized_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:weathering_copper_slab",
+ "properties": {},
+ "weathering_state": "oxidized"
+ },
"properties": {
"type": [
"top",
@@ -158082,6 +161156,14 @@
]
},
"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",
@@ -158830,6 +161912,10 @@
]
},
"minecraft:packed_ice": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -158838,6 +161924,10 @@
]
},
"minecraft:packed_mud": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -158846,6 +161936,10 @@
]
},
"minecraft:pearlescent_froglight": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -158876,6 +161970,10 @@
]
},
"minecraft:peony": {
+ "definition": {
+ "type": "minecraft:tall_flower",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -158899,6 +161997,10 @@
]
},
"minecraft:petrified_oak_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -158957,6 +162059,11 @@
]
},
"minecraft:piglin_head": {
+ "definition": {
+ "type": "minecraft:skull",
+ "kind": "piglin",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -159210,6 +162317,10 @@
]
},
"minecraft:piglin_wall_head": {
+ "definition": {
+ "type": "minecraft:piglinwallskull",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -159283,6 +162394,11 @@
]
},
"minecraft:pink_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "pink",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -159404,6 +162520,11 @@
]
},
"minecraft:pink_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "pink",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -159553,6 +162674,10 @@
]
},
"minecraft:pink_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -159702,6 +162827,11 @@
]
},
"minecraft:pink_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:pink_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -159725,6 +162855,11 @@
]
},
"minecraft:pink_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "pink",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -159733,6 +162868,10 @@
]
},
"minecraft:pink_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -159741,6 +162880,11 @@
]
},
"minecraft:pink_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:pink_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -159749,6 +162893,10 @@
]
},
"minecraft:pink_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -159786,6 +162934,10 @@
]
},
"minecraft:pink_petals": {
+ "definition": {
+ "type": "minecraft:pink_petals",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -159917,6 +163069,11 @@
]
},
"minecraft:pink_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "pink",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -159968,6 +163125,11 @@
]
},
"minecraft:pink_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "pink",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -159976,6 +163138,11 @@
]
},
"minecraft:pink_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "pink",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -160323,6 +163490,10 @@
]
},
"minecraft:pink_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -160331,6 +163502,16 @@
]
},
"minecraft:pink_tulip": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 180,
+ "id": "minecraft:weakness"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -160339,6 +163520,11 @@
]
},
"minecraft:pink_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "pink",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -160376,6 +163562,10 @@
]
},
"minecraft:pink_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -160384,6 +163574,11 @@
]
},
"minecraft:piston": {
+ "definition": {
+ "type": "minecraft:piston_base",
+ "properties": {},
+ "sticky": false
+ },
"properties": {
"extended": [
"true",
@@ -160487,6 +163682,10 @@
]
},
"minecraft:piston_head": {
+ "definition": {
+ "type": "minecraft:piston_head",
+ "properties": {}
+ },
"properties": {
"type": [
"normal",
@@ -160702,6 +163901,10 @@
]
},
"minecraft:pitcher_crop": {
+ "definition": {
+ "type": "minecraft:pitcher_crop",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -160790,6 +163993,10 @@
]
},
"minecraft:pitcher_plant": {
+ "definition": {
+ "type": "minecraft:double_plant",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -160813,6 +164020,10 @@
]
},
"minecraft:player_head": {
+ "definition": {
+ "type": "minecraft:player_head",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -161066,6 +164277,10 @@
]
},
"minecraft:player_wall_head": {
+ "definition": {
+ "type": "minecraft:player_wall_head",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -161139,6 +164354,10 @@
]
},
"minecraft:podzol": {
+ "definition": {
+ "type": "minecraft:snowy_dirt",
+ "properties": {}
+ },
"properties": {
"snowy": [
"true",
@@ -161162,6 +164381,10 @@
]
},
"minecraft:pointed_dripstone": {
+ "definition": {
+ "type": "minecraft:pointed_dripstone",
+ "properties": {}
+ },
"properties": {
"thickness": [
"tip_merge",
@@ -161344,6 +164567,10 @@
]
},
"minecraft:polished_andesite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -161352,6 +164579,10 @@
]
},
"minecraft:polished_andesite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -161410,6 +164641,13 @@
]
},
"minecraft:polished_andesite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_andesite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -162158,6 +165396,10 @@
]
},
"minecraft:polished_basalt": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -162188,6 +165430,10 @@
]
},
"minecraft:polished_blackstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -162196,6 +165442,10 @@
]
},
"minecraft:polished_blackstone_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -162254,6 +165504,13 @@
]
},
"minecraft:polished_blackstone_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_blackstone_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -163002,6 +166259,10 @@
]
},
"minecraft:polished_blackstone_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -166601,6 +169862,10 @@
]
},
"minecraft:polished_blackstone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -166609,6 +169874,12 @@
]
},
"minecraft:polished_blackstone_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "stone",
+ "properties": {},
+ "ticks_to_stay_pressed": 20
+ },
"properties": {
"face": [
"floor",
@@ -166823,6 +170094,11 @@
]
},
"minecraft:polished_blackstone_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "polished_blackstone",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -166846,6 +170122,10 @@
]
},
"minecraft:polished_blackstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -166904,6 +170184,13 @@
]
},
"minecraft:polished_blackstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_blackstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -167652,6 +170939,10 @@
]
},
"minecraft:polished_blackstone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -171251,6 +174542,10 @@
]
},
"minecraft:polished_deepslate": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -171259,6 +174554,10 @@
]
},
"minecraft:polished_deepslate_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -171317,6 +174616,13 @@
]
},
"minecraft:polished_deepslate_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_deepslate"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -172065,6 +175371,10 @@
]
},
"minecraft:polished_deepslate_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -175664,6 +178974,10 @@
]
},
"minecraft:polished_diorite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -175672,6 +178986,10 @@
]
},
"minecraft:polished_diorite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -175730,6 +179048,13 @@
]
},
"minecraft:polished_diorite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_diorite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -176478,6 +179803,10 @@
]
},
"minecraft:polished_granite": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -176486,6 +179815,10 @@
]
},
"minecraft:polished_granite_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -176544,6 +179877,13 @@
]
},
"minecraft:polished_granite_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_granite"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -177292,6 +180632,10 @@
]
},
"minecraft:polished_tuff": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -177300,6 +180644,10 @@
]
},
"minecraft:polished_tuff_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -177358,6 +180706,13 @@
]
},
"minecraft:polished_tuff_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:polished_tuff"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -178106,6 +181461,10 @@
]
},
"minecraft:polished_tuff_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -181705,6 +185064,16 @@
]
},
"minecraft:poppy": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 100,
+ "id": "minecraft:night_vision"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -181713,6 +185082,10 @@
]
},
"minecraft:potatoes": {
+ "definition": {
+ "type": "minecraft:potato",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -181778,6 +185151,11 @@
]
},
"minecraft:potted_acacia_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:acacia_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181786,6 +185164,11 @@
]
},
"minecraft:potted_allium": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:allium",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181794,6 +185177,11 @@
]
},
"minecraft:potted_azalea_bush": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:azalea",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181802,6 +185190,11 @@
]
},
"minecraft:potted_azure_bluet": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:azure_bluet",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181810,6 +185203,11 @@
]
},
"minecraft:potted_bamboo": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:bamboo",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181818,6 +185216,11 @@
]
},
"minecraft:potted_birch_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:birch_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181826,6 +185229,11 @@
]
},
"minecraft:potted_blue_orchid": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:blue_orchid",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181834,6 +185242,11 @@
]
},
"minecraft:potted_brown_mushroom": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:brown_mushroom",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181842,6 +185255,11 @@
]
},
"minecraft:potted_cactus": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:cactus",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181850,6 +185268,11 @@
]
},
"minecraft:potted_cherry_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:cherry_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181858,6 +185281,11 @@
]
},
"minecraft:potted_cornflower": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:cornflower",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181866,6 +185294,11 @@
]
},
"minecraft:potted_crimson_fungus": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:crimson_fungus",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181874,6 +185307,11 @@
]
},
"minecraft:potted_crimson_roots": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:crimson_roots",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181882,6 +185320,11 @@
]
},
"minecraft:potted_dandelion": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:dandelion",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181890,6 +185333,11 @@
]
},
"minecraft:potted_dark_oak_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:dark_oak_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181898,6 +185346,11 @@
]
},
"minecraft:potted_dead_bush": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:dead_bush",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181906,6 +185359,11 @@
]
},
"minecraft:potted_fern": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:fern",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181914,6 +185372,11 @@
]
},
"minecraft:potted_flowering_azalea_bush": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:flowering_azalea",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181922,6 +185385,11 @@
]
},
"minecraft:potted_jungle_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:jungle_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181930,6 +185398,11 @@
]
},
"minecraft:potted_lily_of_the_valley": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:lily_of_the_valley",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181938,6 +185411,11 @@
]
},
"minecraft:potted_mangrove_propagule": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:mangrove_propagule",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181946,6 +185424,11 @@
]
},
"minecraft:potted_oak_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:oak_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181954,6 +185437,11 @@
]
},
"minecraft:potted_orange_tulip": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:orange_tulip",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181962,6 +185450,11 @@
]
},
"minecraft:potted_oxeye_daisy": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:oxeye_daisy",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181970,6 +185463,11 @@
]
},
"minecraft:potted_pink_tulip": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:pink_tulip",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181978,6 +185476,11 @@
]
},
"minecraft:potted_poppy": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:poppy",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181986,6 +185489,11 @@
]
},
"minecraft:potted_red_mushroom": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:red_mushroom",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -181994,6 +185502,11 @@
]
},
"minecraft:potted_red_tulip": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:red_tulip",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182002,6 +185515,11 @@
]
},
"minecraft:potted_spruce_sapling": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:spruce_sapling",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182010,6 +185528,11 @@
]
},
"minecraft:potted_torchflower": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:torchflower",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182018,6 +185541,11 @@
]
},
"minecraft:potted_warped_fungus": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:warped_fungus",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182026,6 +185554,11 @@
]
},
"minecraft:potted_warped_roots": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:warped_roots",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182034,6 +185567,11 @@
]
},
"minecraft:potted_white_tulip": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:white_tulip",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182042,6 +185580,11 @@
]
},
"minecraft:potted_wither_rose": {
+ "definition": {
+ "type": "minecraft:flower_pot",
+ "potted": "minecraft:wither_rose",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182050,6 +185593,10 @@
]
},
"minecraft:powder_snow": {
+ "definition": {
+ "type": "minecraft:powder_snow",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182058,6 +185605,12 @@
]
},
"minecraft:powder_snow_cauldron": {
+ "definition": {
+ "type": "minecraft:layered_cauldron",
+ "interactions": "powder_snow",
+ "precipitation": "snow",
+ "properties": {}
+ },
"properties": {
"level": [
"1",
@@ -182088,6 +185641,10 @@
]
},
"minecraft:powered_rail": {
+ "definition": {
+ "type": "minecraft:powered_rail",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -182303,6 +185860,10 @@
]
},
"minecraft:prismarine": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -182311,6 +185872,10 @@
]
},
"minecraft:prismarine_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -182369,6 +185934,13 @@
]
},
"minecraft:prismarine_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:prismarine_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -183117,6 +186689,10 @@
]
},
"minecraft:prismarine_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -183125,6 +186701,10 @@
]
},
"minecraft:prismarine_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -183183,6 +186763,13 @@
]
},
"minecraft:prismarine_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:prismarine"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -183931,6 +187518,10 @@
]
},
"minecraft:prismarine_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -187530,6 +191121,10 @@
]
},
"minecraft:pumpkin": {
+ "definition": {
+ "type": "minecraft:pumpkin",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -187538,6 +191133,13 @@
]
},
"minecraft:pumpkin_stem": {
+ "definition": {
+ "type": "minecraft:stem",
+ "attached_stem": "minecraft:attached_pumpkin_stem",
+ "fruit": "minecraft:pumpkin",
+ "properties": {},
+ "seed": "minecraft:pumpkin_seeds"
+ },
"properties": {
"age": [
"0",
@@ -187603,6 +191205,11 @@
]
},
"minecraft:purple_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "purple",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -187724,6 +191331,11 @@
]
},
"minecraft:purple_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "purple",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -187873,6 +191485,10 @@
]
},
"minecraft:purple_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -188022,6 +191638,11 @@
]
},
"minecraft:purple_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:purple_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -188045,6 +191666,11 @@
]
},
"minecraft:purple_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "purple",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188053,6 +191679,10 @@
]
},
"minecraft:purple_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188061,6 +191691,11 @@
]
},
"minecraft:purple_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:purple_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188069,6 +191704,10 @@
]
},
"minecraft:purple_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -188106,6 +191745,11 @@
]
},
"minecraft:purple_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "purple",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -188157,6 +191801,11 @@
]
},
"minecraft:purple_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "purple",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188165,6 +191814,11 @@
]
},
"minecraft:purple_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "purple",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -188512,6 +192166,10 @@
]
},
"minecraft:purple_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188520,6 +192178,11 @@
]
},
"minecraft:purple_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "purple",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -188557,6 +192220,10 @@
]
},
"minecraft:purple_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188565,6 +192232,10 @@
]
},
"minecraft:purpur_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -188573,6 +192244,10 @@
]
},
"minecraft:purpur_pillar": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -188603,6 +192278,10 @@
]
},
"minecraft:purpur_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -188661,6 +192340,13 @@
]
},
"minecraft:purpur_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:purpur_block"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -189409,6 +193095,10 @@
]
},
"minecraft:quartz_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -189417,6 +193107,10 @@
]
},
"minecraft:quartz_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -189425,6 +193119,10 @@
]
},
"minecraft:quartz_pillar": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -189455,6 +193153,10 @@
]
},
"minecraft:quartz_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -189513,6 +193215,13 @@
]
},
"minecraft:quartz_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:quartz_block"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -190261,6 +193970,10 @@
]
},
"minecraft:rail": {
+ "definition": {
+ "type": "minecraft:rail",
+ "properties": {}
+ },
"properties": {
"shape": [
"north_south",
@@ -190424,6 +194137,10 @@
]
},
"minecraft:raw_copper_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190432,6 +194149,10 @@
]
},
"minecraft:raw_gold_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190440,6 +194161,10 @@
]
},
"minecraft:raw_iron_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190448,6 +194173,11 @@
]
},
"minecraft:red_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "red",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -190569,6 +194299,11 @@
]
},
"minecraft:red_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "red",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -190718,6 +194453,10 @@
]
},
"minecraft:red_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -190867,6 +194606,11 @@
]
},
"minecraft:red_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:red_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -190890,6 +194634,11 @@
]
},
"minecraft:red_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "red",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190898,6 +194647,10 @@
]
},
"minecraft:red_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190906,6 +194659,11 @@
]
},
"minecraft:red_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:red_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190914,6 +194672,10 @@
]
},
"minecraft:red_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -190951,6 +194713,11 @@
]
},
"minecraft:red_mushroom": {
+ "definition": {
+ "type": "minecraft:mushroom",
+ "feature": "minecraft:huge_red_mushroom",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -190959,6 +194726,10 @@
]
},
"minecraft:red_mushroom_block": {
+ "definition": {
+ "type": "minecraft:huge_mushroom",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -191694,6 +195465,10 @@
]
},
"minecraft:red_nether_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -191752,6 +195527,13 @@
]
},
"minecraft:red_nether_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:red_nether_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -192500,6 +196282,10 @@
]
},
"minecraft:red_nether_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -196099,6 +199885,10 @@
]
},
"minecraft:red_nether_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -196107,6 +199897,11 @@
]
},
"minecraft:red_sand": {
+ "definition": {
+ "type": "minecraft:colored_falling",
+ "falling_dust_color": "#00A95821",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -196115,6 +199910,10 @@
]
},
"minecraft:red_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -196123,6 +199922,10 @@
]
},
"minecraft:red_sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -196181,6 +199984,13 @@
]
},
"minecraft:red_sandstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:red_sandstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -196929,6 +200739,10 @@
]
},
"minecraft:red_sandstone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -200528,6 +204342,11 @@
]
},
"minecraft:red_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "red",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -200579,6 +204398,11 @@
]
},
"minecraft:red_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "red",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -200587,6 +204411,11 @@
]
},
"minecraft:red_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "red",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -200934,6 +204763,10 @@
]
},
"minecraft:red_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -200942,6 +204775,16 @@
]
},
"minecraft:red_tulip": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 180,
+ "id": "minecraft:weakness"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -200950,6 +204793,11 @@
]
},
"minecraft:red_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "red",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -200987,6 +204835,10 @@
]
},
"minecraft:red_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -200995,6 +204847,10 @@
]
},
"minecraft:redstone_block": {
+ "definition": {
+ "type": "minecraft:powered",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -201003,6 +204859,10 @@
]
},
"minecraft:redstone_lamp": {
+ "definition": {
+ "type": "minecraft:redstone_lamp",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -201026,6 +204886,10 @@
]
},
"minecraft:redstone_ore": {
+ "definition": {
+ "type": "minecraft:redstone_ore",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -201049,6 +204913,10 @@
]
},
"minecraft:redstone_torch": {
+ "definition": {
+ "type": "minecraft:redstone_torch",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -201072,6 +204940,10 @@
]
},
"minecraft:redstone_wall_torch": {
+ "definition": {
+ "type": "minecraft:redstone_wall_torch",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -201145,6 +205017,10 @@
]
},
"minecraft:redstone_wire": {
+ "definition": {
+ "type": "minecraft:redstone_wire",
+ "properties": {}
+ },
"properties": {
"east": [
"up",
@@ -214150,6 +218026,10 @@
]
},
"minecraft:reinforced_deepslate": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -214158,6 +218038,10 @@
]
},
"minecraft:repeater": {
+ "definition": {
+ "type": "minecraft:repeater",
+ "properties": {}
+ },
"properties": {
"delay": [
"1",
@@ -214761,6 +218645,11 @@
]
},
"minecraft:repeating_command_block": {
+ "definition": {
+ "type": "minecraft:command",
+ "automatic": false,
+ "properties": {}
+ },
"properties": {
"conditional": [
"true",
@@ -214864,6 +218753,10 @@
]
},
"minecraft:respawn_anchor": {
+ "definition": {
+ "type": "minecraft:respawn_anchor",
+ "properties": {}
+ },
"properties": {
"charges": [
"0",
@@ -214908,6 +218801,10 @@
]
},
"minecraft:rooted_dirt": {
+ "definition": {
+ "type": "minecraft:rooted_dirt",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -214916,6 +218813,10 @@
]
},
"minecraft:rose_bush": {
+ "definition": {
+ "type": "minecraft:tall_flower",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -214939,6 +218840,11 @@
]
},
"minecraft:sand": {
+ "definition": {
+ "type": "minecraft:colored_falling",
+ "falling_dust_color": "#00DBD3A0",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -214947,6 +218853,10 @@
]
},
"minecraft:sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -214955,6 +218865,10 @@
]
},
"minecraft:sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -215013,6 +218927,13 @@
]
},
"minecraft:sandstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:sandstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -215761,6 +219682,10 @@
]
},
"minecraft:sandstone_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -219360,6 +223285,10 @@
]
},
"minecraft:scaffolding": {
+ "definition": {
+ "type": "minecraft:scaffolding",
+ "properties": {}
+ },
"properties": {
"bottom": [
"true",
@@ -219641,6 +223570,10 @@
]
},
"minecraft:sculk": {
+ "definition": {
+ "type": "minecraft:sculk",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -219649,6 +223582,10 @@
]
},
"minecraft:sculk_catalyst": {
+ "definition": {
+ "type": "minecraft:sculk_catalyst",
+ "properties": {}
+ },
"properties": {
"bloom": [
"true",
@@ -219672,6 +223609,10 @@
]
},
"minecraft:sculk_sensor": {
+ "definition": {
+ "type": "minecraft:sculk_sensor",
+ "properties": {}
+ },
"properties": {
"power": [
"0",
@@ -220474,6 +224415,10 @@
]
},
"minecraft:sculk_shrieker": {
+ "definition": {
+ "type": "minecraft:sculk_shrieker",
+ "properties": {}
+ },
"properties": {
"can_summon": [
"true",
@@ -220557,6 +224502,10 @@
]
},
"minecraft:sculk_vein": {
+ "definition": {
+ "type": "minecraft:sculk_vein",
+ "properties": {}
+ },
"properties": {
"down": [
"true",
@@ -222128,6 +226077,10 @@
]
},
"minecraft:sea_lantern": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222136,6 +226089,10 @@
]
},
"minecraft:sea_pickle": {
+ "definition": {
+ "type": "minecraft:sea_pickle",
+ "properties": {}
+ },
"properties": {
"pickles": [
"1",
@@ -222209,6 +226166,10 @@
]
},
"minecraft:seagrass": {
+ "definition": {
+ "type": "minecraft:seagrass",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222217,6 +226178,10 @@
]
},
"minecraft:short_grass": {
+ "definition": {
+ "type": "minecraft:tall_grass",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222225,6 +226190,10 @@
]
},
"minecraft:shroomlight": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222233,6 +226202,10 @@
]
},
"minecraft:shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -222284,6 +226257,11 @@
]
},
"minecraft:skeleton_skull": {
+ "definition": {
+ "type": "minecraft:skull",
+ "kind": "skeleton",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -222537,6 +226515,11 @@
]
},
"minecraft:skeleton_wall_skull": {
+ "definition": {
+ "type": "minecraft:wall_skull",
+ "kind": "skeleton",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -222610,6 +226593,10 @@
]
},
"minecraft:slime_block": {
+ "definition": {
+ "type": "minecraft:slime",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222618,6 +226605,12 @@
]
},
"minecraft:small_amethyst_bud": {
+ "definition": {
+ "type": "minecraft:amethyst_cluster",
+ "aabb_offset": 4.0,
+ "height": 3.0,
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -222721,6 +226714,10 @@
]
},
"minecraft:small_dripleaf": {
+ "definition": {
+ "type": "minecraft:small_dripleaf",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -222870,6 +226867,10 @@
]
},
"minecraft:smithing_table": {
+ "definition": {
+ "type": "minecraft:smithing_table",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222878,6 +226879,10 @@
]
},
"minecraft:smoker": {
+ "definition": {
+ "type": "minecraft:smoker",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -222951,6 +226956,10 @@
]
},
"minecraft:smooth_basalt": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222959,6 +226968,10 @@
]
},
"minecraft:smooth_quartz": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -222967,6 +226980,10 @@
]
},
"minecraft:smooth_quartz_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -223025,6 +227042,13 @@
]
},
"minecraft:smooth_quartz_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:smooth_quartz"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -223773,6 +227797,10 @@
]
},
"minecraft:smooth_red_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -223781,6 +227809,10 @@
]
},
"minecraft:smooth_red_sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -223839,6 +227871,13 @@
]
},
"minecraft:smooth_red_sandstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:smooth_red_sandstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -224587,6 +228626,10 @@
]
},
"minecraft:smooth_sandstone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -224595,6 +228638,10 @@
]
},
"minecraft:smooth_sandstone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -224653,6 +228700,13 @@
]
},
"minecraft:smooth_sandstone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:smooth_sandstone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -225401,6 +229455,10 @@
]
},
"minecraft:smooth_stone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225409,6 +229467,10 @@
]
},
"minecraft:smooth_stone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -225467,6 +229529,10 @@
]
},
"minecraft:sniffer_egg": {
+ "definition": {
+ "type": "minecraft:sniffer_egg",
+ "properties": {}
+ },
"properties": {
"hatch": [
"0",
@@ -225497,6 +229563,10 @@
]
},
"minecraft:snow": {
+ "definition": {
+ "type": "minecraft:snow_layer",
+ "properties": {}
+ },
"properties": {
"layers": [
"1",
@@ -225562,6 +229632,10 @@
]
},
"minecraft:snow_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225570,6 +229644,12 @@
]
},
"minecraft:soul_campfire": {
+ "definition": {
+ "type": "minecraft:campfire",
+ "fire_damage": 2,
+ "properties": {},
+ "spawn_particles": false
+ },
"properties": {
"facing": [
"north",
@@ -225883,6 +229963,10 @@
]
},
"minecraft:soul_fire": {
+ "definition": {
+ "type": "minecraft:soul_fire",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225891,6 +229975,10 @@
]
},
"minecraft:soul_lantern": {
+ "definition": {
+ "type": "minecraft:lantern",
+ "properties": {}
+ },
"properties": {
"hanging": [
"true",
@@ -225934,6 +230022,10 @@
]
},
"minecraft:soul_sand": {
+ "definition": {
+ "type": "minecraft:soul_sand",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225942,6 +230034,10 @@
]
},
"minecraft:soul_soil": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225950,6 +230046,11 @@
]
},
"minecraft:soul_torch": {
+ "definition": {
+ "type": "minecraft:torch",
+ "particle_options": "minecraft:soul_fire_flame",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -225958,6 +230059,11 @@
]
},
"minecraft:soul_wall_torch": {
+ "definition": {
+ "type": "minecraft:wall_torch",
+ "particle_options": "minecraft:soul_fire_flame",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -225995,6 +230101,10 @@
]
},
"minecraft:spawner": {
+ "definition": {
+ "type": "minecraft:spawner",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -226003,6 +230113,10 @@
]
},
"minecraft:sponge": {
+ "definition": {
+ "type": "minecraft:sponge",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -226011,6 +230125,10 @@
]
},
"minecraft:spore_blossom": {
+ "definition": {
+ "type": "minecraft:spore_blossom",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -226019,6 +230137,12 @@
]
},
"minecraft:spruce_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "spruce",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -226233,6 +230357,11 @@
]
},
"minecraft:spruce_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "spruce",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -226902,6 +231031,10 @@
]
},
"minecraft:spruce_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -227249,6 +231382,11 @@
]
},
"minecraft:spruce_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "spruce"
+ },
"properties": {
"facing": [
"north",
@@ -227562,6 +231700,11 @@
]
},
"minecraft:spruce_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "spruce"
+ },
"properties": {
"attached": [
"true",
@@ -228107,6 +232250,10 @@
]
},
"minecraft:spruce_leaves": {
+ "definition": {
+ "type": "minecraft:leaves",
+ "properties": {}
+ },
"properties": {
"distance": [
"1",
@@ -228355,6 +232502,10 @@
]
},
"minecraft:spruce_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -228385,6 +232536,10 @@
]
},
"minecraft:spruce_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -228393,6 +232548,11 @@
]
},
"minecraft:spruce_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "spruce",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -228416,6 +232576,11 @@
]
},
"minecraft:spruce_sapling": {
+ "definition": {
+ "type": "minecraft:sapling",
+ "properties": {},
+ "tree": "spruce"
+ },
"properties": {
"stage": [
"0",
@@ -228439,6 +232604,11 @@
]
},
"minecraft:spruce_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "spruce"
+ },
"properties": {
"rotation": [
"0",
@@ -228692,6 +232862,10 @@
]
},
"minecraft:spruce_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -228750,6 +232924,13 @@
]
},
"minecraft:spruce_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:spruce_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -229498,6 +233679,11 @@
]
},
"minecraft:spruce_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "spruce",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -230167,6 +234353,11 @@
]
},
"minecraft:spruce_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "spruce"
+ },
"properties": {
"facing": [
"north",
@@ -230240,6 +234431,11 @@
]
},
"minecraft:spruce_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "spruce"
+ },
"properties": {
"facing": [
"north",
@@ -230313,6 +234509,10 @@
]
},
"minecraft:spruce_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -230343,6 +234543,11 @@
]
},
"minecraft:sticky_piston": {
+ "definition": {
+ "type": "minecraft:piston_base",
+ "properties": {},
+ "sticky": true
+ },
"properties": {
"extended": [
"true",
@@ -230446,6 +234651,10 @@
]
},
"minecraft:stone": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -230454,6 +234663,10 @@
]
},
"minecraft:stone_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -230512,6 +234725,13 @@
]
},
"minecraft:stone_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:stone_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -231260,6 +235480,10 @@
]
},
"minecraft:stone_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -234859,6 +239083,10 @@
]
},
"minecraft:stone_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -234867,6 +239095,12 @@
]
},
"minecraft:stone_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "stone",
+ "properties": {},
+ "ticks_to_stay_pressed": 20
+ },
"properties": {
"face": [
"floor",
@@ -235081,6 +239315,11 @@
]
},
"minecraft:stone_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "stone",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -235104,6 +239343,10 @@
]
},
"minecraft:stone_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -235162,6 +239405,13 @@
]
},
"minecraft:stone_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:stone"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -235910,6 +240160,10 @@
]
},
"minecraft:stonecutter": {
+ "definition": {
+ "type": "minecraft:stonecutter",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -235947,6 +240201,10 @@
]
},
"minecraft:stripped_acacia_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -235977,6 +240235,10 @@
]
},
"minecraft:stripped_acacia_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236007,6 +240269,10 @@
]
},
"minecraft:stripped_bamboo_block": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236037,6 +240303,10 @@
]
},
"minecraft:stripped_birch_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236067,6 +240337,10 @@
]
},
"minecraft:stripped_birch_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236097,6 +240371,10 @@
]
},
"minecraft:stripped_cherry_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236127,6 +240405,10 @@
]
},
"minecraft:stripped_cherry_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236157,6 +240439,10 @@
]
},
"minecraft:stripped_crimson_hyphae": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236187,6 +240473,10 @@
]
},
"minecraft:stripped_crimson_stem": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236217,6 +240507,10 @@
]
},
"minecraft:stripped_dark_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236247,6 +240541,10 @@
]
},
"minecraft:stripped_dark_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236277,6 +240575,10 @@
]
},
"minecraft:stripped_jungle_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236307,6 +240609,10 @@
]
},
"minecraft:stripped_jungle_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236337,6 +240643,10 @@
]
},
"minecraft:stripped_mangrove_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236367,6 +240677,10 @@
]
},
"minecraft:stripped_mangrove_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236397,6 +240711,10 @@
]
},
"minecraft:stripped_oak_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236427,6 +240745,10 @@
]
},
"minecraft:stripped_oak_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236457,6 +240779,10 @@
]
},
"minecraft:stripped_spruce_log": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236487,6 +240813,10 @@
]
},
"minecraft:stripped_spruce_wood": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236517,6 +240847,10 @@
]
},
"minecraft:stripped_warped_hyphae": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236547,6 +240881,10 @@
]
},
"minecraft:stripped_warped_stem": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -236577,6 +240915,10 @@
]
},
"minecraft:structure_block": {
+ "definition": {
+ "type": "minecraft:structure",
+ "properties": {}
+ },
"properties": {
"mode": [
"save",
@@ -236614,6 +240956,10 @@
]
},
"minecraft:structure_void": {
+ "definition": {
+ "type": "minecraft:structure_void",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -236622,6 +240968,10 @@
]
},
"minecraft:sugar_cane": {
+ "definition": {
+ "type": "minecraft:sugar_cane",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -236743,6 +241093,10 @@
]
},
"minecraft:sunflower": {
+ "definition": {
+ "type": "minecraft:tall_flower",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -236766,6 +241120,13 @@
]
},
"minecraft:suspicious_gravel": {
+ "definition": {
+ "type": "minecraft:brushable",
+ "brush_comleted_sound": "minecraft:item.brush.brushing.gravel.complete",
+ "brush_sound": "minecraft:item.brush.brushing.gravel",
+ "properties": {},
+ "turns_into": "minecraft:gravel"
+ },
"properties": {
"dusted": [
"0",
@@ -236803,6 +241164,13 @@
]
},
"minecraft:suspicious_sand": {
+ "definition": {
+ "type": "minecraft:brushable",
+ "brush_comleted_sound": "minecraft:item.brush.brushing.sand.complete",
+ "brush_sound": "minecraft:item.brush.brushing.sand",
+ "properties": {},
+ "turns_into": "minecraft:sand"
+ },
"properties": {
"dusted": [
"0",
@@ -236840,6 +241208,10 @@
]
},
"minecraft:sweet_berry_bush": {
+ "definition": {
+ "type": "minecraft:sweet_berry_bush",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -236877,6 +241249,10 @@
]
},
"minecraft:tall_grass": {
+ "definition": {
+ "type": "minecraft:double_plant",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -236900,6 +241276,10 @@
]
},
"minecraft:tall_seagrass": {
+ "definition": {
+ "type": "minecraft:tall_seagrass",
+ "properties": {}
+ },
"properties": {
"half": [
"upper",
@@ -236923,6 +241303,10 @@
]
},
"minecraft:target": {
+ "definition": {
+ "type": "minecraft:target",
+ "properties": {}
+ },
"properties": {
"power": [
"0",
@@ -237044,6 +241428,10 @@
]
},
"minecraft:terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -237052,6 +241440,10 @@
]
},
"minecraft:tinted_glass": {
+ "definition": {
+ "type": "minecraft:tinted_glass",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -237060,6 +241452,10 @@
]
},
"minecraft:tnt": {
+ "definition": {
+ "type": "minecraft:tnt",
+ "properties": {}
+ },
"properties": {
"unstable": [
"true",
@@ -237083,6 +241479,11 @@
]
},
"minecraft:torch": {
+ "definition": {
+ "type": "minecraft:torch",
+ "particle_options": "minecraft:flame",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -237091,6 +241492,16 @@
]
},
"minecraft:torchflower": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 100,
+ "id": "minecraft:night_vision"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -237099,6 +241510,10 @@
]
},
"minecraft:torchflower_crop": {
+ "definition": {
+ "type": "minecraft:torchflower_crop",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -237122,6 +241537,10 @@
]
},
"minecraft:trapped_chest": {
+ "definition": {
+ "type": "minecraft:trapped_chest",
+ "properties": {}
+ },
"properties": {
"type": [
"single",
@@ -237336,7 +241755,15 @@
]
},
"minecraft:trial_spawner": {
+ "definition": {
+ "type": "minecraft:trial_spawner",
+ "properties": {}
+ },
"properties": {
+ "ominous": [
+ "true",
+ "false"
+ ],
"trial_spawner_state": [
"inactive",
"waiting_for_players",
@@ -237348,45 +241775,98 @@
},
"states": [
{
- "default": true,
"id": 26638,
"properties": {
+ "ominous": "true",
"trial_spawner_state": "inactive"
}
},
{
"id": 26639,
"properties": {
+ "ominous": "true",
"trial_spawner_state": "waiting_for_players"
}
},
{
"id": 26640,
"properties": {
+ "ominous": "true",
"trial_spawner_state": "active"
}
},
{
"id": 26641,
"properties": {
+ "ominous": "true",
"trial_spawner_state": "waiting_for_reward_ejection"
}
},
{
"id": 26642,
"properties": {
+ "ominous": "true",
"trial_spawner_state": "ejecting_reward"
}
},
{
"id": 26643,
"properties": {
+ "ominous": "true",
+ "trial_spawner_state": "cooldown"
+ }
+ },
+ {
+ "default": true,
+ "id": 26644,
+ "properties": {
+ "ominous": "false",
+ "trial_spawner_state": "inactive"
+ }
+ },
+ {
+ "id": 26645,
+ "properties": {
+ "ominous": "false",
+ "trial_spawner_state": "waiting_for_players"
+ }
+ },
+ {
+ "id": 26646,
+ "properties": {
+ "ominous": "false",
+ "trial_spawner_state": "active"
+ }
+ },
+ {
+ "id": 26647,
+ "properties": {
+ "ominous": "false",
+ "trial_spawner_state": "waiting_for_reward_ejection"
+ }
+ },
+ {
+ "id": 26648,
+ "properties": {
+ "ominous": "false",
+ "trial_spawner_state": "ejecting_reward"
+ }
+ },
+ {
+ "id": 26649,
+ "properties": {
+ "ominous": "false",
"trial_spawner_state": "cooldown"
}
}
]
},
"minecraft:tripwire": {
+ "definition": {
+ "type": "minecraft:tripwire",
+ "hook": "minecraft:tripwire_hook",
+ "properties": {}
+ },
"properties": {
"attached": [
"true",
@@ -238958,6 +243438,10 @@
]
},
"minecraft:tripwire_hook": {
+ "definition": {
+ "type": "minecraft:trip_wire_hook",
+ "properties": {}
+ },
"properties": {
"attached": [
"true",
@@ -239107,6 +243591,11 @@
]
},
"minecraft:tube_coral": {
+ "definition": {
+ "type": "minecraft:coral_plant",
+ "dead": "minecraft:dead_tube_coral",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -239130,6 +243619,11 @@
]
},
"minecraft:tube_coral_block": {
+ "definition": {
+ "type": "minecraft:coral",
+ "dead": "minecraft:dead_tube_coral_block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -239138,6 +243632,11 @@
]
},
"minecraft:tube_coral_fan": {
+ "definition": {
+ "type": "minecraft:coral_fan",
+ "dead": "minecraft:dead_tube_coral_fan",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -239161,6 +243660,11 @@
]
},
"minecraft:tube_coral_wall_fan": {
+ "definition": {
+ "type": "minecraft:coral_wall_fan",
+ "dead": "minecraft:dead_tube_coral_wall_fan",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -239234,6 +243738,10 @@
]
},
"minecraft:tuff": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -239242,6 +243750,10 @@
]
},
"minecraft:tuff_brick_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -239300,6 +243812,13 @@
]
},
"minecraft:tuff_brick_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:tuff_bricks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -240048,6 +244567,10 @@
]
},
"minecraft:tuff_brick_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -243647,6 +248170,10 @@
]
},
"minecraft:tuff_bricks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -243655,6 +248182,10 @@
]
},
"minecraft:tuff_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -243713,6 +248244,13 @@
]
},
"minecraft:tuff_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:tuff"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -244461,6 +248999,10 @@
]
},
"minecraft:tuff_wall": {
+ "definition": {
+ "type": "minecraft:wall",
+ "properties": {}
+ },
"properties": {
"east": [
"none",
@@ -248060,6 +252602,10 @@
]
},
"minecraft:turtle_egg": {
+ "definition": {
+ "type": "minecraft:turtle_egg",
+ "properties": {}
+ },
"properties": {
"eggs": [
"1",
@@ -248162,6 +252708,10 @@
]
},
"minecraft:twisting_vines": {
+ "definition": {
+ "type": "minecraft:twisting_vines",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -248353,6 +252903,10 @@
]
},
"minecraft:twisting_vines_plant": {
+ "definition": {
+ "type": "minecraft:twisting_vines_plant",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -248360,7 +252914,294 @@
}
]
},
+ "minecraft:vault": {
+ "definition": {
+ "type": "minecraft:vault",
+ "properties": {}
+ },
+ "properties": {
+ "facing": [
+ "north",
+ "south",
+ "west",
+ "east"
+ ],
+ "ominous": [
+ "true",
+ "false"
+ ],
+ "vault_state": [
+ "inactive",
+ "active",
+ "unlocking",
+ "ejecting"
+ ]
+ },
+ "states": [
+ {
+ "id": 26650,
+ "properties": {
+ "facing": "north",
+ "ominous": "true",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26651,
+ "properties": {
+ "facing": "north",
+ "ominous": "true",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26652,
+ "properties": {
+ "facing": "north",
+ "ominous": "true",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26653,
+ "properties": {
+ "facing": "north",
+ "ominous": "true",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "default": true,
+ "id": 26654,
+ "properties": {
+ "facing": "north",
+ "ominous": "false",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26655,
+ "properties": {
+ "facing": "north",
+ "ominous": "false",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26656,
+ "properties": {
+ "facing": "north",
+ "ominous": "false",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26657,
+ "properties": {
+ "facing": "north",
+ "ominous": "false",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26658,
+ "properties": {
+ "facing": "south",
+ "ominous": "true",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26659,
+ "properties": {
+ "facing": "south",
+ "ominous": "true",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26660,
+ "properties": {
+ "facing": "south",
+ "ominous": "true",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26661,
+ "properties": {
+ "facing": "south",
+ "ominous": "true",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26662,
+ "properties": {
+ "facing": "south",
+ "ominous": "false",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26663,
+ "properties": {
+ "facing": "south",
+ "ominous": "false",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26664,
+ "properties": {
+ "facing": "south",
+ "ominous": "false",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26665,
+ "properties": {
+ "facing": "south",
+ "ominous": "false",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26666,
+ "properties": {
+ "facing": "west",
+ "ominous": "true",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26667,
+ "properties": {
+ "facing": "west",
+ "ominous": "true",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26668,
+ "properties": {
+ "facing": "west",
+ "ominous": "true",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26669,
+ "properties": {
+ "facing": "west",
+ "ominous": "true",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26670,
+ "properties": {
+ "facing": "west",
+ "ominous": "false",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26671,
+ "properties": {
+ "facing": "west",
+ "ominous": "false",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26672,
+ "properties": {
+ "facing": "west",
+ "ominous": "false",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26673,
+ "properties": {
+ "facing": "west",
+ "ominous": "false",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26674,
+ "properties": {
+ "facing": "east",
+ "ominous": "true",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26675,
+ "properties": {
+ "facing": "east",
+ "ominous": "true",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26676,
+ "properties": {
+ "facing": "east",
+ "ominous": "true",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26677,
+ "properties": {
+ "facing": "east",
+ "ominous": "true",
+ "vault_state": "ejecting"
+ }
+ },
+ {
+ "id": 26678,
+ "properties": {
+ "facing": "east",
+ "ominous": "false",
+ "vault_state": "inactive"
+ }
+ },
+ {
+ "id": 26679,
+ "properties": {
+ "facing": "east",
+ "ominous": "false",
+ "vault_state": "active"
+ }
+ },
+ {
+ "id": 26680,
+ "properties": {
+ "facing": "east",
+ "ominous": "false",
+ "vault_state": "unlocking"
+ }
+ },
+ {
+ "id": 26681,
+ "properties": {
+ "facing": "east",
+ "ominous": "false",
+ "vault_state": "ejecting"
+ }
+ }
+ ]
+ },
"minecraft:verdant_froglight": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -248391,6 +253232,10 @@
]
},
"minecraft:vine": {
+ "definition": {
+ "type": "minecraft:vine",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -248738,6 +253583,10 @@
]
},
"minecraft:void_air": {
+ "definition": {
+ "type": "minecraft:air",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -248746,6 +253595,11 @@
]
},
"minecraft:wall_torch": {
+ "definition": {
+ "type": "minecraft:wall_torch",
+ "particle_options": "minecraft:flame",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -248783,6 +253637,12 @@
]
},
"minecraft:warped_button": {
+ "definition": {
+ "type": "minecraft:button",
+ "block_set_type": "warped",
+ "properties": {},
+ "ticks_to_stay_pressed": 30
+ },
"properties": {
"face": [
"floor",
@@ -248997,6 +253857,11 @@
]
},
"minecraft:warped_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "warped",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -249666,6 +254531,10 @@
]
},
"minecraft:warped_fence": {
+ "definition": {
+ "type": "minecraft:fence",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -250013,6 +254882,11 @@
]
},
"minecraft:warped_fence_gate": {
+ "definition": {
+ "type": "minecraft:fence_gate",
+ "properties": {},
+ "wood_type": "warped"
+ },
"properties": {
"facing": [
"north",
@@ -250326,6 +255200,12 @@
]
},
"minecraft:warped_fungus": {
+ "definition": {
+ "type": "minecraft:fungus",
+ "feature": "minecraft:warped_fungus_planted",
+ "grows_on": "minecraft:warped_nylium",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -250334,6 +255214,11 @@
]
},
"minecraft:warped_hanging_sign": {
+ "definition": {
+ "type": "minecraft:ceiling_hanging_sign",
+ "properties": {},
+ "wood_type": "warped"
+ },
"properties": {
"attached": [
"true",
@@ -250879,6 +255764,10 @@
]
},
"minecraft:warped_hyphae": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -250909,6 +255798,10 @@
]
},
"minecraft:warped_nylium": {
+ "definition": {
+ "type": "minecraft:nylium",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -250917,6 +255810,10 @@
]
},
"minecraft:warped_planks": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -250925,6 +255822,11 @@
]
},
"minecraft:warped_pressure_plate": {
+ "definition": {
+ "type": "minecraft:pressure_plate",
+ "block_set_type": "warped",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -250948,6 +255850,10 @@
]
},
"minecraft:warped_roots": {
+ "definition": {
+ "type": "minecraft:roots",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -250956,6 +255862,11 @@
]
},
"minecraft:warped_sign": {
+ "definition": {
+ "type": "minecraft:standing_sign",
+ "properties": {},
+ "wood_type": "warped"
+ },
"properties": {
"rotation": [
"0",
@@ -251209,6 +256120,10 @@
]
},
"minecraft:warped_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -251267,6 +256182,13 @@
]
},
"minecraft:warped_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:warped_planks"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -252015,6 +256937,10 @@
]
},
"minecraft:warped_stem": {
+ "definition": {
+ "type": "minecraft:rotated_pillar",
+ "properties": {}
+ },
"properties": {
"axis": [
"x",
@@ -252045,6 +256971,11 @@
]
},
"minecraft:warped_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "warped",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -252714,6 +257645,11 @@
]
},
"minecraft:warped_wall_hanging_sign": {
+ "definition": {
+ "type": "minecraft:wall_hanging_sign",
+ "properties": {},
+ "wood_type": "warped"
+ },
"properties": {
"facing": [
"north",
@@ -252787,6 +257723,11 @@
]
},
"minecraft:warped_wall_sign": {
+ "definition": {
+ "type": "minecraft:wall_sign",
+ "properties": {},
+ "wood_type": "warped"
+ },
"properties": {
"facing": [
"north",
@@ -252860,6 +257801,10 @@
]
},
"minecraft:warped_wart_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -252868,6 +257813,11 @@
]
},
"minecraft:water": {
+ "definition": {
+ "type": "minecraft:liquid",
+ "fluid": "minecraft:water",
+ "properties": {}
+ },
"properties": {
"level": [
"0",
@@ -252989,6 +257939,12 @@
]
},
"minecraft:water_cauldron": {
+ "definition": {
+ "type": "minecraft:layered_cauldron",
+ "interactions": "water",
+ "precipitation": "rain",
+ "properties": {}
+ },
"properties": {
"level": [
"1",
@@ -253019,6 +257975,10 @@
]
},
"minecraft:waxed_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -253027,6 +257987,10 @@
]
},
"minecraft:waxed_copper_block": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -253035,6 +257999,10 @@
]
},
"minecraft:waxed_copper_bulb": {
+ "definition": {
+ "type": "minecraft:copper_bulb_block",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -253078,6 +258046,11 @@
]
},
"minecraft:waxed_copper_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -253747,6 +258720,10 @@
]
},
"minecraft:waxed_copper_grate": {
+ "definition": {
+ "type": "minecraft:waterlogged_transparent",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -253770,6 +258747,11 @@
]
},
"minecraft:waxed_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -254439,6 +259421,10 @@
]
},
"minecraft:waxed_cut_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -254447,6 +259433,10 @@
]
},
"minecraft:waxed_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -254505,6 +259495,13 @@
]
},
"minecraft:waxed_cut_copper_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:waxed_cut_copper"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -255253,6 +260250,10 @@
]
},
"minecraft:waxed_exposed_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -255261,6 +260262,10 @@
]
},
"minecraft:waxed_exposed_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -255269,6 +260274,10 @@
]
},
"minecraft:waxed_exposed_copper_bulb": {
+ "definition": {
+ "type": "minecraft:copper_bulb_block",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -255312,6 +260321,11 @@
]
},
"minecraft:waxed_exposed_copper_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -255981,6 +260995,10 @@
]
},
"minecraft:waxed_exposed_copper_grate": {
+ "definition": {
+ "type": "minecraft:waterlogged_transparent",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -256004,6 +261022,11 @@
]
},
"minecraft:waxed_exposed_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -256673,6 +261696,10 @@
]
},
"minecraft:waxed_exposed_cut_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -256681,6 +261708,10 @@
]
},
"minecraft:waxed_exposed_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -256739,6 +261770,13 @@
]
},
"minecraft:waxed_exposed_cut_copper_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:waxed_exposed_cut_copper"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -257487,6 +262525,10 @@
]
},
"minecraft:waxed_oxidized_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -257495,6 +262537,10 @@
]
},
"minecraft:waxed_oxidized_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -257503,6 +262549,10 @@
]
},
"minecraft:waxed_oxidized_copper_bulb": {
+ "definition": {
+ "type": "minecraft:copper_bulb_block",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -257546,6 +262596,11 @@
]
},
"minecraft:waxed_oxidized_copper_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -258215,6 +263270,10 @@
]
},
"minecraft:waxed_oxidized_copper_grate": {
+ "definition": {
+ "type": "minecraft:waterlogged_transparent",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -258238,6 +263297,11 @@
]
},
"minecraft:waxed_oxidized_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -258907,6 +263971,10 @@
]
},
"minecraft:waxed_oxidized_cut_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -258915,6 +263983,10 @@
]
},
"minecraft:waxed_oxidized_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -258973,6 +264045,13 @@
]
},
"minecraft:waxed_oxidized_cut_copper_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:waxed_oxidized_cut_copper"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -259721,6 +264800,10 @@
]
},
"minecraft:waxed_weathered_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -259729,6 +264812,10 @@
]
},
"minecraft:waxed_weathered_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -259737,6 +264824,10 @@
]
},
"minecraft:waxed_weathered_copper_bulb": {
+ "definition": {
+ "type": "minecraft:copper_bulb_block",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -259780,6 +264871,11 @@
]
},
"minecraft:waxed_weathered_copper_door": {
+ "definition": {
+ "type": "minecraft:door",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -260449,6 +265545,10 @@
]
},
"minecraft:waxed_weathered_copper_grate": {
+ "definition": {
+ "type": "minecraft:waterlogged_transparent",
+ "properties": {}
+ },
"properties": {
"waterlogged": [
"true",
@@ -260472,6 +265572,11 @@
]
},
"minecraft:waxed_weathered_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:trapdoor",
+ "block_set_type": "copper",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -261141,6 +266246,10 @@
]
},
"minecraft:waxed_weathered_cut_copper": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -261149,6 +266258,10 @@
]
},
"minecraft:waxed_weathered_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:slab",
+ "properties": {}
+ },
"properties": {
"type": [
"top",
@@ -261207,6 +266320,13 @@
]
},
"minecraft:waxed_weathered_cut_copper_stairs": {
+ "definition": {
+ "type": "minecraft:stair",
+ "base_state": {
+ "Name": "minecraft:waxed_weathered_cut_copper"
+ },
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -261955,6 +267075,11 @@
]
},
"minecraft:weathered_chiseled_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"states": [
{
"default": true,
@@ -261963,6 +267088,11 @@
]
},
"minecraft:weathered_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"states": [
{
"default": true,
@@ -261971,6 +267101,11 @@
]
},
"minecraft:weathered_copper_bulb": {
+ "definition": {
+ "type": "minecraft:weathering_copper_bulb",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"properties": {
"lit": [
"true",
@@ -262014,6 +267149,12 @@
]
},
"minecraft:weathered_copper_door": {
+ "definition": {
+ "type": "minecraft:weathering_copper_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"properties": {
"facing": [
"north",
@@ -262683,6 +267824,11 @@
]
},
"minecraft:weathered_copper_grate": {
+ "definition": {
+ "type": "minecraft:weathering_copper_grate",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"properties": {
"waterlogged": [
"true",
@@ -262706,6 +267852,12 @@
]
},
"minecraft:weathered_copper_trapdoor": {
+ "definition": {
+ "type": "minecraft:weathering_copper_trap_door",
+ "block_set_type": "copper",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"properties": {
"facing": [
"north",
@@ -263375,6 +268527,11 @@
]
},
"minecraft:weathered_cut_copper": {
+ "definition": {
+ "type": "minecraft:weathering_copper_full",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"states": [
{
"default": true,
@@ -263383,6 +268540,11 @@
]
},
"minecraft:weathered_cut_copper_slab": {
+ "definition": {
+ "type": "minecraft:weathering_copper_slab",
+ "properties": {},
+ "weathering_state": "weathered"
+ },
"properties": {
"type": [
"top",
@@ -263441,6 +268603,14 @@
]
},
"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",
@@ -264189,6 +269359,10 @@
]
},
"minecraft:weeping_vines": {
+ "definition": {
+ "type": "minecraft:weeping_vines",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -264380,6 +269554,10 @@
]
},
"minecraft:weeping_vines_plant": {
+ "definition": {
+ "type": "minecraft:weeping_vines_plant",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -264388,6 +269566,10 @@
]
},
"minecraft:wet_sponge": {
+ "definition": {
+ "type": "minecraft:wet_sponge",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -264396,6 +269578,10 @@
]
},
"minecraft:wheat": {
+ "definition": {
+ "type": "minecraft:crop",
+ "properties": {}
+ },
"properties": {
"age": [
"0",
@@ -264461,6 +269647,11 @@
]
},
"minecraft:white_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "white",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -264582,6 +269773,11 @@
]
},
"minecraft:white_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "white",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -264731,6 +269927,10 @@
]
},
"minecraft:white_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -264880,6 +270080,11 @@
]
},
"minecraft:white_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:white_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -264903,6 +270108,11 @@
]
},
"minecraft:white_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "white",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -264911,6 +270121,10 @@
]
},
"minecraft:white_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -264919,6 +270133,11 @@
]
},
"minecraft:white_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:white_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -264927,6 +270146,10 @@
]
},
"minecraft:white_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -264964,6 +270187,11 @@
]
},
"minecraft:white_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "white",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -265015,6 +270243,11 @@
]
},
"minecraft:white_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "white",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -265023,6 +270256,11 @@
]
},
"minecraft:white_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "white",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -265370,6 +270608,10 @@
]
},
"minecraft:white_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -265378,6 +270620,16 @@
]
},
"minecraft:white_tulip": {
+ "definition": {
+ "type": "minecraft:flower",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "duration": 180,
+ "id": "minecraft:weakness"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -265386,6 +270638,11 @@
]
},
"minecraft:white_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "white",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -265423,6 +270680,10 @@
]
},
"minecraft:white_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -265431,6 +270692,15 @@
]
},
"minecraft:wither_rose": {
+ "definition": {
+ "type": "minecraft:wither_rose",
+ "properties": {},
+ "suspicious_stew_effects": [
+ {
+ "id": "minecraft:wither"
+ }
+ ]
+ },
"states": [
{
"default": true,
@@ -265439,6 +270709,10 @@
]
},
"minecraft:wither_skeleton_skull": {
+ "definition": {
+ "type": "minecraft:wither_skull",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -265692,6 +270966,10 @@
]
},
"minecraft:wither_skeleton_wall_skull": {
+ "definition": {
+ "type": "minecraft:wither_wall_skull",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -265765,6 +271043,11 @@
]
},
"minecraft:yellow_banner": {
+ "definition": {
+ "type": "minecraft:banner",
+ "color": "yellow",
+ "properties": {}
+ },
"properties": {
"rotation": [
"0",
@@ -265886,6 +271169,11 @@
]
},
"minecraft:yellow_bed": {
+ "definition": {
+ "type": "minecraft:bed",
+ "color": "yellow",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -266035,6 +271323,10 @@
]
},
"minecraft:yellow_candle": {
+ "definition": {
+ "type": "minecraft:candle",
+ "properties": {}
+ },
"properties": {
"candles": [
"1",
@@ -266184,6 +271476,11 @@
]
},
"minecraft:yellow_candle_cake": {
+ "definition": {
+ "type": "minecraft:candle_cake",
+ "candle": "minecraft:yellow_candle",
+ "properties": {}
+ },
"properties": {
"lit": [
"true",
@@ -266207,6 +271504,11 @@
]
},
"minecraft:yellow_carpet": {
+ "definition": {
+ "type": "minecraft:wool_carpet",
+ "color": "yellow",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266215,6 +271517,10 @@
]
},
"minecraft:yellow_concrete": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266223,6 +271529,11 @@
]
},
"minecraft:yellow_concrete_powder": {
+ "definition": {
+ "type": "minecraft:concrete_powder",
+ "concrete": "minecraft:yellow_concrete",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266231,6 +271542,10 @@
]
},
"minecraft:yellow_glazed_terracotta": {
+ "definition": {
+ "type": "minecraft:glazed_terracotta",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -266268,6 +271583,11 @@
]
},
"minecraft:yellow_shulker_box": {
+ "definition": {
+ "type": "minecraft:shulker_box",
+ "color": "yellow",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -266319,6 +271639,11 @@
]
},
"minecraft:yellow_stained_glass": {
+ "definition": {
+ "type": "minecraft:stained_glass",
+ "color": "yellow",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266327,6 +271652,11 @@
]
},
"minecraft:yellow_stained_glass_pane": {
+ "definition": {
+ "type": "minecraft:stained_glass_pane",
+ "color": "yellow",
+ "properties": {}
+ },
"properties": {
"east": [
"true",
@@ -266674,6 +272004,10 @@
]
},
"minecraft:yellow_terracotta": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266682,6 +272016,11 @@
]
},
"minecraft:yellow_wall_banner": {
+ "definition": {
+ "type": "minecraft:wall_banner",
+ "color": "yellow",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
@@ -266719,6 +272058,10 @@
]
},
"minecraft:yellow_wool": {
+ "definition": {
+ "type": "minecraft:block",
+ "properties": {}
+ },
"states": [
{
"default": true,
@@ -266727,6 +272070,11 @@
]
},
"minecraft:zombie_head": {
+ "definition": {
+ "type": "minecraft:skull",
+ "kind": "zombie",
+ "properties": {}
+ },
"properties": {
"powered": [
"true",
@@ -266980,6 +272328,11 @@
]
},
"minecraft:zombie_wall_head": {
+ "definition": {
+ "type": "minecraft:wall_skull",
+ "kind": "zombie",
+ "properties": {}
+ },
"properties": {
"facing": [
"north",
diff --git a/src/main/resources/registries.json b/src/main/resources/reports/registries.json
similarity index 95%
rename from src/main/resources/registries.json
rename to src/main/resources/reports/registries.json
index 4d3347c..0f4fdcb 100644
--- a/src/main/resources/registries.json
+++ b/src/main/resources/reports/registries.json
@@ -82,6 +82,35 @@
},
"protocol_id": 30
},
+ "minecraft:armor_material": {
+ "entries": {
+ "minecraft:armadillo": {
+ "protocol_id": 7
+ },
+ "minecraft:chainmail": {
+ "protocol_id": 1
+ },
+ "minecraft:diamond": {
+ "protocol_id": 4
+ },
+ "minecraft:gold": {
+ "protocol_id": 3
+ },
+ "minecraft:iron": {
+ "protocol_id": 2
+ },
+ "minecraft:leather": {
+ "protocol_id": 0
+ },
+ "minecraft:netherite": {
+ "protocol_id": 6
+ },
+ "minecraft:turtle": {
+ "protocol_id": 5
+ }
+ },
+ "protocol_id": 69
+ },
"minecraft:attribute": {
"entries": {
"minecraft:generic.armor": {
@@ -99,164 +128,60 @@
"minecraft:generic.attack_speed": {
"protocol_id": 4
},
- "minecraft:generic.flying_speed": {
- "protocol_id": 5
- },
- "minecraft:generic.follow_range": {
- "protocol_id": 6
- },
- "minecraft:generic.knockback_resistance": {
+ "minecraft:generic.fall_damage_multiplier": {
"protocol_id": 8
},
- "minecraft:generic.luck": {
+ "minecraft:generic.flying_speed": {
"protocol_id": 9
},
- "minecraft:generic.max_absorption": {
+ "minecraft:generic.follow_range": {
"protocol_id": 10
},
- "minecraft:generic.max_health": {
+ "minecraft:generic.gravity": {
"protocol_id": 11
},
- "minecraft:generic.movement_speed": {
+ "minecraft:generic.jump_strength": {
"protocol_id": 12
},
- "minecraft:horse.jump_strength": {
+ "minecraft:generic.knockback_resistance": {
+ "protocol_id": 13
+ },
+ "minecraft:generic.luck": {
+ "protocol_id": 14
+ },
+ "minecraft:generic.max_absorption": {
+ "protocol_id": 15
+ },
+ "minecraft:generic.max_health": {
+ "protocol_id": 16
+ },
+ "minecraft:generic.movement_speed": {
+ "protocol_id": 17
+ },
+ "minecraft:generic.safe_fall_distance": {
+ "protocol_id": 18
+ },
+ "minecraft:generic.scale": {
+ "protocol_id": 19
+ },
+ "minecraft:generic.step_height": {
+ "protocol_id": 21
+ },
+ "minecraft:player.block_break_speed": {
+ "protocol_id": 5
+ },
+ "minecraft:player.block_interaction_range": {
+ "protocol_id": 6
+ },
+ "minecraft:player.entity_interaction_range": {
"protocol_id": 7
},
"minecraft:zombie.spawn_reinforcements": {
- "protocol_id": 13
+ "protocol_id": 20
}
},
"protocol_id": 20
},
- "minecraft:banner_pattern": {
- "entries": {
- "minecraft:base": {
- "protocol_id": 0
- },
- "minecraft:border": {
- "protocol_id": 30
- },
- "minecraft:bricks": {
- "protocol_id": 34
- },
- "minecraft:circle": {
- "protocol_id": 24
- },
- "minecraft:creeper": {
- "protocol_id": 36
- },
- "minecraft:cross": {
- "protocol_id": 14
- },
- "minecraft:curly_border": {
- "protocol_id": 31
- },
- "minecraft:diagonal_left": {
- "protocol_id": 20
- },
- "minecraft:diagonal_right": {
- "protocol_id": 23
- },
- "minecraft:diagonal_up_left": {
- "protocol_id": 22
- },
- "minecraft:diagonal_up_right": {
- "protocol_id": 21
- },
- "minecraft:flower": {
- "protocol_id": 38
- },
- "minecraft:globe": {
- "protocol_id": 35
- },
- "minecraft:gradient": {
- "protocol_id": 32
- },
- "minecraft:gradient_up": {
- "protocol_id": 33
- },
- "minecraft:half_horizontal": {
- "protocol_id": 27
- },
- "minecraft:half_horizontal_bottom": {
- "protocol_id": 29
- },
- "minecraft:half_vertical": {
- "protocol_id": 26
- },
- "minecraft:half_vertical_right": {
- "protocol_id": 28
- },
- "minecraft:mojang": {
- "protocol_id": 39
- },
- "minecraft:piglin": {
- "protocol_id": 40
- },
- "minecraft:rhombus": {
- "protocol_id": 25
- },
- "minecraft:skull": {
- "protocol_id": 37
- },
- "minecraft:small_stripes": {
- "protocol_id": 13
- },
- "minecraft:square_bottom_left": {
- "protocol_id": 1
- },
- "minecraft:square_bottom_right": {
- "protocol_id": 2
- },
- "minecraft:square_top_left": {
- "protocol_id": 3
- },
- "minecraft:square_top_right": {
- "protocol_id": 4
- },
- "minecraft:straight_cross": {
- "protocol_id": 15
- },
- "minecraft:stripe_bottom": {
- "protocol_id": 5
- },
- "minecraft:stripe_center": {
- "protocol_id": 9
- },
- "minecraft:stripe_downleft": {
- "protocol_id": 12
- },
- "minecraft:stripe_downright": {
- "protocol_id": 11
- },
- "minecraft:stripe_left": {
- "protocol_id": 7
- },
- "minecraft:stripe_middle": {
- "protocol_id": 10
- },
- "minecraft:stripe_right": {
- "protocol_id": 8
- },
- "minecraft:stripe_top": {
- "protocol_id": 6
- },
- "minecraft:triangle_bottom": {
- "protocol_id": 16
- },
- "minecraft:triangle_top": {
- "protocol_id": 17
- },
- "minecraft:triangles_bottom": {
- "protocol_id": 18
- },
- "minecraft:triangles_top": {
- "protocol_id": 19
- }
- },
- "protocol_id": 64
- },
"minecraft:block": {
"default": "minecraft:air",
"entries": {
@@ -1544,6 +1469,9 @@
"minecraft:hay_block": {
"protocol_id": 477
},
+ "minecraft:heavy_core": {
+ "protocol_id": 1059
+ },
"minecraft:heavy_weighted_pressure_plate": {
"protocol_id": 413
},
@@ -3110,6 +3038,9 @@
"minecraft:twisting_vines_plant": {
"protocol_id": 808
},
+ "minecraft:vault": {
+ "protocol_id": 1058
+ },
"minecraft:verdant_froglight": {
"protocol_id": 1051
},
@@ -3567,6 +3498,9 @@
},
"minecraft:trial_spawner": {
"protocol_id": 42
+ },
+ "minecraft:vault": {
+ "protocol_id": 43
}
},
"protocol_id": 10
@@ -3911,425 +3845,431 @@
"minecraft:hay": {
"protocol_id": 98
},
- "minecraft:honey": {
+ "minecraft:heavy_core": {
"protocol_id": 99
},
- "minecraft:hopper": {
+ "minecraft:honey": {
"protocol_id": 100
},
- "minecraft:huge_mushroom": {
+ "minecraft:hopper": {
"protocol_id": 101
},
- "minecraft:ice": {
+ "minecraft:huge_mushroom": {
"protocol_id": 102
},
- "minecraft:infested": {
+ "minecraft:ice": {
"protocol_id": 103
},
- "minecraft:infested_rotated_pillar": {
+ "minecraft:infested": {
"protocol_id": 104
},
- "minecraft:iron_bars": {
+ "minecraft:infested_rotated_pillar": {
"protocol_id": 105
},
- "minecraft:jack_o_lantern": {
+ "minecraft:iron_bars": {
"protocol_id": 106
},
- "minecraft:jigsaw": {
+ "minecraft:jack_o_lantern": {
"protocol_id": 107
},
- "minecraft:jukebox": {
+ "minecraft:jigsaw": {
"protocol_id": 108
},
- "minecraft:kelp": {
+ "minecraft:jukebox": {
"protocol_id": 109
},
- "minecraft:kelp_plant": {
+ "minecraft:kelp": {
"protocol_id": 110
},
- "minecraft:ladder": {
+ "minecraft:kelp_plant": {
"protocol_id": 111
},
- "minecraft:lantern": {
+ "minecraft:ladder": {
"protocol_id": 112
},
- "minecraft:lava_cauldron": {
+ "minecraft:lantern": {
"protocol_id": 113
},
- "minecraft:layered_cauldron": {
+ "minecraft:lava_cauldron": {
"protocol_id": 114
},
- "minecraft:leaves": {
+ "minecraft:layered_cauldron": {
"protocol_id": 115
},
- "minecraft:lectern": {
+ "minecraft:leaves": {
"protocol_id": 116
},
- "minecraft:lever": {
+ "minecraft:lectern": {
"protocol_id": 117
},
- "minecraft:light": {
+ "minecraft:lever": {
"protocol_id": 118
},
- "minecraft:lightning_rod": {
+ "minecraft:light": {
"protocol_id": 119
},
- "minecraft:liquid": {
+ "minecraft:lightning_rod": {
"protocol_id": 120
},
- "minecraft:loom": {
+ "minecraft:liquid": {
"protocol_id": 121
},
- "minecraft:magma": {
+ "minecraft:loom": {
"protocol_id": 122
},
- "minecraft:mangrove_leaves": {
+ "minecraft:magma": {
"protocol_id": 123
},
- "minecraft:mangrove_propagule": {
+ "minecraft:mangrove_leaves": {
"protocol_id": 124
},
- "minecraft:mangrove_roots": {
+ "minecraft:mangrove_propagule": {
"protocol_id": 125
},
- "minecraft:moss": {
+ "minecraft:mangrove_roots": {
"protocol_id": 126
},
- "minecraft:moving_piston": {
+ "minecraft:moss": {
"protocol_id": 127
},
- "minecraft:mud": {
+ "minecraft:moving_piston": {
"protocol_id": 128
},
- "minecraft:mushroom": {
+ "minecraft:mud": {
"protocol_id": 129
},
- "minecraft:mycelium": {
+ "minecraft:mushroom": {
"protocol_id": 130
},
- "minecraft:nether_portal": {
+ "minecraft:mycelium": {
"protocol_id": 131
},
- "minecraft:nether_sprouts": {
- "protocol_id": 133
- },
- "minecraft:nether_wart": {
- "protocol_id": 134
- },
- "minecraft:netherrack": {
+ "minecraft:nether_portal": {
"protocol_id": 132
},
- "minecraft:note": {
+ "minecraft:nether_sprouts": {
+ "protocol_id": 134
+ },
+ "minecraft:nether_wart": {
"protocol_id": 135
},
- "minecraft:nylium": {
+ "minecraft:netherrack": {
+ "protocol_id": 133
+ },
+ "minecraft:note": {
"protocol_id": 136
},
- "minecraft:observer": {
+ "minecraft:nylium": {
"protocol_id": 137
},
- "minecraft:piglinwallskull": {
+ "minecraft:observer": {
"protocol_id": 138
},
- "minecraft:pink_petals": {
+ "minecraft:piglinwallskull": {
"protocol_id": 139
},
- "minecraft:piston_base": {
+ "minecraft:pink_petals": {
"protocol_id": 140
},
- "minecraft:piston_head": {
+ "minecraft:piston_base": {
"protocol_id": 141
},
- "minecraft:pitcher_crop": {
+ "minecraft:piston_head": {
"protocol_id": 142
},
- "minecraft:player_head": {
+ "minecraft:pitcher_crop": {
"protocol_id": 143
},
- "minecraft:player_wall_head": {
+ "minecraft:player_head": {
"protocol_id": 144
},
- "minecraft:pointed_dripstone": {
+ "minecraft:player_wall_head": {
"protocol_id": 145
},
- "minecraft:potato": {
+ "minecraft:pointed_dripstone": {
"protocol_id": 146
},
- "minecraft:powder_snow": {
+ "minecraft:potato": {
"protocol_id": 147
},
- "minecraft:powered": {
+ "minecraft:powder_snow": {
"protocol_id": 148
},
- "minecraft:powered_rail": {
+ "minecraft:powered": {
"protocol_id": 149
},
- "minecraft:pressure_plate": {
+ "minecraft:powered_rail": {
"protocol_id": 150
},
- "minecraft:pumpkin": {
+ "minecraft:pressure_plate": {
"protocol_id": 151
},
- "minecraft:rail": {
+ "minecraft:pumpkin": {
"protocol_id": 152
},
- "minecraft:redstone_lamp": {
+ "minecraft:rail": {
"protocol_id": 153
},
- "minecraft:redstone_ore": {
+ "minecraft:redstone_lamp": {
"protocol_id": 154
},
- "minecraft:redstone_torch": {
+ "minecraft:redstone_ore": {
"protocol_id": 155
},
- "minecraft:redstone_wall_torch": {
+ "minecraft:redstone_torch": {
"protocol_id": 156
},
- "minecraft:redstone_wire": {
+ "minecraft:redstone_wall_torch": {
"protocol_id": 157
},
- "minecraft:repeater": {
+ "minecraft:redstone_wire": {
"protocol_id": 158
},
- "minecraft:respawn_anchor": {
+ "minecraft:repeater": {
"protocol_id": 159
},
- "minecraft:rooted_dirt": {
+ "minecraft:respawn_anchor": {
"protocol_id": 160
},
- "minecraft:roots": {
+ "minecraft:rooted_dirt": {
"protocol_id": 161
},
- "minecraft:rotated_pillar": {
+ "minecraft:roots": {
"protocol_id": 162
},
- "minecraft:sapling": {
+ "minecraft:rotated_pillar": {
"protocol_id": 163
},
- "minecraft:scaffolding": {
+ "minecraft:sapling": {
"protocol_id": 164
},
- "minecraft:sculk": {
- "protocol_id": 166
- },
- "minecraft:sculk_catalyst": {
+ "minecraft:scaffolding": {
"protocol_id": 165
},
- "minecraft:sculk_sensor": {
+ "minecraft:sculk": {
"protocol_id": 167
},
- "minecraft:sculk_shrieker": {
+ "minecraft:sculk_catalyst": {
+ "protocol_id": 166
+ },
+ "minecraft:sculk_sensor": {
"protocol_id": 168
},
- "minecraft:sculk_vein": {
+ "minecraft:sculk_shrieker": {
"protocol_id": 169
},
- "minecraft:sea_pickle": {
- "protocol_id": 171
- },
- "minecraft:seagrass": {
+ "minecraft:sculk_vein": {
"protocol_id": 170
},
- "minecraft:shulker_box": {
+ "minecraft:sea_pickle": {
"protocol_id": 172
},
- "minecraft:skull": {
+ "minecraft:seagrass": {
+ "protocol_id": 171
+ },
+ "minecraft:shulker_box": {
"protocol_id": 173
},
- "minecraft:slab": {
+ "minecraft:skull": {
"protocol_id": 174
},
- "minecraft:slime": {
+ "minecraft:slab": {
"protocol_id": 175
},
- "minecraft:small_dripleaf": {
+ "minecraft:slime": {
"protocol_id": 176
},
- "minecraft:smithing_table": {
+ "minecraft:small_dripleaf": {
"protocol_id": 177
},
- "minecraft:smoker": {
+ "minecraft:smithing_table": {
"protocol_id": 178
},
- "minecraft:sniffer_egg": {
+ "minecraft:smoker": {
"protocol_id": 179
},
- "minecraft:snow_layer": {
+ "minecraft:sniffer_egg": {
"protocol_id": 180
},
- "minecraft:snowy_dirt": {
+ "minecraft:snow_layer": {
"protocol_id": 181
},
- "minecraft:soul_fire": {
+ "minecraft:snowy_dirt": {
"protocol_id": 182
},
- "minecraft:soul_sand": {
+ "minecraft:soul_fire": {
"protocol_id": 183
},
- "minecraft:spawner": {
+ "minecraft:soul_sand": {
"protocol_id": 184
},
- "minecraft:sponge": {
+ "minecraft:spawner": {
"protocol_id": 185
},
- "minecraft:spore_blossom": {
+ "minecraft:sponge": {
"protocol_id": 186
},
- "minecraft:stained_glass": {
- "protocol_id": 188
- },
- "minecraft:stained_glass_pane": {
+ "minecraft:spore_blossom": {
"protocol_id": 187
},
- "minecraft:stair": {
+ "minecraft:stained_glass": {
"protocol_id": 189
},
- "minecraft:standing_sign": {
+ "minecraft:stained_glass_pane": {
+ "protocol_id": 188
+ },
+ "minecraft:stair": {
"protocol_id": 190
},
- "minecraft:stem": {
+ "minecraft:standing_sign": {
"protocol_id": 191
},
- "minecraft:stonecutter": {
+ "minecraft:stem": {
"protocol_id": 192
},
- "minecraft:structure": {
+ "minecraft:stonecutter": {
"protocol_id": 193
},
- "minecraft:structure_void": {
+ "minecraft:structure": {
"protocol_id": 194
},
- "minecraft:sugar_cane": {
+ "minecraft:structure_void": {
"protocol_id": 195
},
- "minecraft:sweet_berry_bush": {
+ "minecraft:sugar_cane": {
"protocol_id": 196
},
- "minecraft:tall_flower": {
+ "minecraft:sweet_berry_bush": {
"protocol_id": 197
},
- "minecraft:tall_grass": {
+ "minecraft:tall_flower": {
"protocol_id": 198
},
- "minecraft:tall_seagrass": {
+ "minecraft:tall_grass": {
"protocol_id": 199
},
- "minecraft:target": {
+ "minecraft:tall_seagrass": {
"protocol_id": 200
},
- "minecraft:tinted_glass": {
+ "minecraft:target": {
"protocol_id": 201
},
- "minecraft:tnt": {
+ "minecraft:tinted_glass": {
"protocol_id": 202
},
- "minecraft:torch": {
- "protocol_id": 204
- },
- "minecraft:torchflower_crop": {
+ "minecraft:tnt": {
"protocol_id": 203
},
- "minecraft:transparent": {
+ "minecraft:torch": {
"protocol_id": 205
},
- "minecraft:trapdoor": {
+ "minecraft:torchflower_crop": {
+ "protocol_id": 204
+ },
+ "minecraft:transparent": {
"protocol_id": 206
},
- "minecraft:trapped_chest": {
+ "minecraft:trapdoor": {
"protocol_id": 207
},
- "minecraft:trial_spawner": {
+ "minecraft:trapped_chest": {
"protocol_id": 208
},
- "minecraft:trip_wire_hook": {
+ "minecraft:trial_spawner": {
"protocol_id": 209
},
- "minecraft:tripwire": {
+ "minecraft:trip_wire_hook": {
"protocol_id": 210
},
- "minecraft:turtle_egg": {
+ "minecraft:tripwire": {
"protocol_id": 211
},
- "minecraft:twisting_vines": {
- "protocol_id": 213
- },
- "minecraft:twisting_vines_plant": {
+ "minecraft:turtle_egg": {
"protocol_id": 212
},
- "minecraft:vine": {
+ "minecraft:twisting_vines": {
"protocol_id": 214
},
- "minecraft:wall": {
- "protocol_id": 220
+ "minecraft:twisting_vines_plant": {
+ "protocol_id": 213
},
- "minecraft:wall_banner": {
+ "minecraft:vault": {
"protocol_id": 215
},
- "minecraft:wall_hanging_sign": {
+ "minecraft:vine": {
"protocol_id": 216
},
- "minecraft:wall_sign": {
- "protocol_id": 217
- },
- "minecraft:wall_skull": {
- "protocol_id": 218
- },
- "minecraft:wall_torch": {
- "protocol_id": 219
- },
- "minecraft:waterlily": {
- "protocol_id": 221
- },
- "minecraft:waterlogged_transparent": {
+ "minecraft:wall": {
"protocol_id": 222
},
- "minecraft:weathering_copper_bulb": {
+ "minecraft:wall_banner": {
+ "protocol_id": 217
+ },
+ "minecraft:wall_hanging_sign": {
+ "protocol_id": 218
+ },
+ "minecraft:wall_sign": {
+ "protocol_id": 219
+ },
+ "minecraft:wall_skull": {
+ "protocol_id": 220
+ },
+ "minecraft:wall_torch": {
+ "protocol_id": 221
+ },
+ "minecraft:waterlily": {
"protocol_id": 223
},
- "minecraft:weathering_copper_door": {
+ "minecraft:waterlogged_transparent": {
"protocol_id": 224
},
- "minecraft:weathering_copper_full": {
+ "minecraft:weathering_copper_bulb": {
"protocol_id": 225
},
- "minecraft:weathering_copper_grate": {
+ "minecraft:weathering_copper_door": {
"protocol_id": 226
},
- "minecraft:weathering_copper_slab": {
+ "minecraft:weathering_copper_full": {
"protocol_id": 227
},
- "minecraft:weathering_copper_stair": {
+ "minecraft:weathering_copper_grate": {
"protocol_id": 228
},
- "minecraft:weathering_copper_trap_door": {
+ "minecraft:weathering_copper_slab": {
"protocol_id": 229
},
- "minecraft:web": {
+ "minecraft:weathering_copper_stair": {
"protocol_id": 230
},
- "minecraft:weeping_vines": {
- "protocol_id": 232
- },
- "minecraft:weeping_vines_plant": {
+ "minecraft:weathering_copper_trap_door": {
"protocol_id": 231
},
- "minecraft:weighted_pressure_plate": {
- "protocol_id": 233
+ "minecraft:web": {
+ "protocol_id": 232
},
- "minecraft:wet_sponge": {
+ "minecraft:weeping_vines": {
"protocol_id": 234
},
- "minecraft:wither_rose": {
+ "minecraft:weeping_vines_plant": {
+ "protocol_id": 233
+ },
+ "minecraft:weighted_pressure_plate": {
"protocol_id": 235
},
- "minecraft:wither_skull": {
+ "minecraft:wet_sponge": {
"protocol_id": 236
},
- "minecraft:wither_wall_skull": {
+ "minecraft:wither_rose": {
"protocol_id": 237
},
- "minecraft:wool_carpet": {
+ "minecraft:wither_skull": {
"protocol_id": 238
+ },
+ "minecraft:wither_wall_skull": {
+ "protocol_id": 239
+ },
+ "minecraft:wool_carpet": {
+ "protocol_id": 240
}
},
"protocol_id": 58
@@ -4456,31 +4396,31 @@
"protocol_id": 17
},
"minecraft:dimension": {
- "protocol_id": 39
+ "protocol_id": 40
},
"minecraft:entity": {
"protocol_id": 6
},
"minecraft:entity_anchor": {
- "protocol_id": 36
+ "protocol_id": 37
},
"minecraft:float_range": {
- "protocol_id": 38
+ "protocol_id": 39
},
"minecraft:function": {
- "protocol_id": 35
+ "protocol_id": 36
},
"minecraft:game_profile": {
"protocol_id": 7
},
"minecraft:gamemode": {
- "protocol_id": 40
+ "protocol_id": 41
},
"minecraft:heightmap": {
- "protocol_id": 48
+ "protocol_id": 49
},
"minecraft:int_range": {
- "protocol_id": 37
+ "protocol_id": 38
},
"minecraft:item_predicate": {
"protocol_id": 15
@@ -4488,9 +4428,21 @@
"minecraft:item_slot": {
"protocol_id": 33
},
+ "minecraft:item_slots": {
+ "protocol_id": 34
+ },
"minecraft:item_stack": {
"protocol_id": 14
},
+ "minecraft:loot_modifier": {
+ "protocol_id": 52
+ },
+ "minecraft:loot_predicate": {
+ "protocol_id": 51
+ },
+ "minecraft:loot_table": {
+ "protocol_id": 50
+ },
"minecraft:message": {
"protocol_id": 19
},
@@ -4516,19 +4468,19 @@
"protocol_id": 26
},
"minecraft:resource": {
- "protocol_id": 44
- },
- "minecraft:resource_key": {
"protocol_id": 45
},
+ "minecraft:resource_key": {
+ "protocol_id": 46
+ },
"minecraft:resource_location": {
- "protocol_id": 34
+ "protocol_id": 35
},
"minecraft:resource_or_tag": {
- "protocol_id": 42
+ "protocol_id": 43
},
"minecraft:resource_or_tag_key": {
- "protocol_id": 43
+ "protocol_id": 44
},
"minecraft:rotation": {
"protocol_id": 28
@@ -4549,16 +4501,16 @@
"protocol_id": 32
},
"minecraft:template_mirror": {
- "protocol_id": 46
- },
- "minecraft:template_rotation": {
"protocol_id": 47
},
+ "minecraft:template_rotation": {
+ "protocol_id": 48
+ },
"minecraft:time": {
- "protocol_id": 41
+ "protocol_id": 42
},
"minecraft:uuid": {
- "protocol_id": 49
+ "protocol_id": 53
},
"minecraft:vec2": {
"protocol_id": 11
@@ -4614,7 +4566,7 @@
"protocol_id": 7
}
},
- "protocol_id": 67
+ "protocol_id": 66
},
"minecraft:custom_stat": {
"entries": {
@@ -4846,6 +4798,179 @@
},
"protocol_id": 12
},
+ "minecraft:data_component_type": {
+ "entries": {
+ "minecraft:attribute_modifiers": {
+ "protocol_id": 12
+ },
+ "minecraft:banner_patterns": {
+ "protocol_id": 48
+ },
+ "minecraft:base_color": {
+ "protocol_id": 49
+ },
+ "minecraft:bees": {
+ "protocol_id": 53
+ },
+ "minecraft:block_entity_data": {
+ "protocol_id": 39
+ },
+ "minecraft:block_state": {
+ "protocol_id": 52
+ },
+ "minecraft:bucket_entity_data": {
+ "protocol_id": 38
+ },
+ "minecraft:bundle_contents": {
+ "protocol_id": 30
+ },
+ "minecraft:can_break": {
+ "protocol_id": 11
+ },
+ "minecraft:can_place_on": {
+ "protocol_id": 10
+ },
+ "minecraft:charged_projectiles": {
+ "protocol_id": 29
+ },
+ "minecraft:container": {
+ "protocol_id": 51
+ },
+ "minecraft:container_loot": {
+ "protocol_id": 55
+ },
+ "minecraft:creative_slot_lock": {
+ "protocol_id": 17
+ },
+ "minecraft:custom_data": {
+ "protocol_id": 0
+ },
+ "minecraft:custom_model_data": {
+ "protocol_id": 13
+ },
+ "minecraft:custom_name": {
+ "protocol_id": 5
+ },
+ "minecraft:damage": {
+ "protocol_id": 3
+ },
+ "minecraft:debug_stick_state": {
+ "protocol_id": 36
+ },
+ "minecraft:dyed_color": {
+ "protocol_id": 24
+ },
+ "minecraft:enchantment_glint_override": {
+ "protocol_id": 18
+ },
+ "minecraft:enchantments": {
+ "protocol_id": 9
+ },
+ "minecraft:entity_data": {
+ "protocol_id": 37
+ },
+ "minecraft:fire_resistant": {
+ "protocol_id": 21
+ },
+ "minecraft:firework_explosion": {
+ "protocol_id": 44
+ },
+ "minecraft:fireworks": {
+ "protocol_id": 45
+ },
+ "minecraft:food": {
+ "protocol_id": 20
+ },
+ "minecraft:hide_additional_tooltip": {
+ "protocol_id": 14
+ },
+ "minecraft:hide_tooltip": {
+ "protocol_id": 15
+ },
+ "minecraft:instrument": {
+ "protocol_id": 40
+ },
+ "minecraft:intangible_projectile": {
+ "protocol_id": 19
+ },
+ "minecraft:item_name": {
+ "protocol_id": 6
+ },
+ "minecraft:lock": {
+ "protocol_id": 54
+ },
+ "minecraft:lodestone_tracker": {
+ "protocol_id": 43
+ },
+ "minecraft:lore": {
+ "protocol_id": 7
+ },
+ "minecraft:map_color": {
+ "protocol_id": 25
+ },
+ "minecraft:map_decorations": {
+ "protocol_id": 27
+ },
+ "minecraft:map_id": {
+ "protocol_id": 26
+ },
+ "minecraft:map_post_processing": {
+ "protocol_id": 28
+ },
+ "minecraft:max_damage": {
+ "protocol_id": 2
+ },
+ "minecraft:max_stack_size": {
+ "protocol_id": 1
+ },
+ "minecraft:note_block_sound": {
+ "protocol_id": 47
+ },
+ "minecraft:ominous_bottle_amplifier": {
+ "protocol_id": 41
+ },
+ "minecraft:pot_decorations": {
+ "protocol_id": 50
+ },
+ "minecraft:potion_contents": {
+ "protocol_id": 31
+ },
+ "minecraft:profile": {
+ "protocol_id": 46
+ },
+ "minecraft:rarity": {
+ "protocol_id": 8
+ },
+ "minecraft:recipes": {
+ "protocol_id": 42
+ },
+ "minecraft:repair_cost": {
+ "protocol_id": 16
+ },
+ "minecraft:stored_enchantments": {
+ "protocol_id": 23
+ },
+ "minecraft:suspicious_stew_effects": {
+ "protocol_id": 32
+ },
+ "minecraft:tool": {
+ "protocol_id": 22
+ },
+ "minecraft:trim": {
+ "protocol_id": 35
+ },
+ "minecraft:unbreakable": {
+ "protocol_id": 4
+ },
+ "minecraft:writable_book_content": {
+ "protocol_id": 33
+ },
+ "minecraft:written_book_content": {
+ "protocol_id": 34
+ }
+ },
+ "protocol_id": 70
+ },
"minecraft:decorated_pot_patterns": {
"entries": {
"minecraft:angler_pottery_pattern": {
@@ -4870,7 +4995,7 @@
"protocol_id": 7
},
"minecraft:decorated_pot_base": {
- "protocol_id": 21
+ "protocol_id": 24
},
"minecraft:decorated_pot_side": {
"protocol_id": 0
@@ -4878,44 +5003,53 @@
"minecraft:explorer_pottery_pattern": {
"protocol_id": 8
},
- "minecraft:friend_pottery_pattern": {
+ "minecraft:flow_pottery_pattern": {
"protocol_id": 9
},
- "minecraft:heart_pottery_pattern": {
+ "minecraft:friend_pottery_pattern": {
"protocol_id": 10
},
- "minecraft:heartbreak_pottery_pattern": {
+ "minecraft:guster_pottery_pattern": {
"protocol_id": 11
},
- "minecraft:howl_pottery_pattern": {
+ "minecraft:heart_pottery_pattern": {
"protocol_id": 12
},
- "minecraft:miner_pottery_pattern": {
+ "minecraft:heartbreak_pottery_pattern": {
"protocol_id": 13
},
- "minecraft:mourner_pottery_pattern": {
+ "minecraft:howl_pottery_pattern": {
"protocol_id": 14
},
- "minecraft:plenty_pottery_pattern": {
+ "minecraft:miner_pottery_pattern": {
"protocol_id": 15
},
- "minecraft:prize_pottery_pattern": {
+ "minecraft:mourner_pottery_pattern": {
"protocol_id": 16
},
- "minecraft:sheaf_pottery_pattern": {
+ "minecraft:plenty_pottery_pattern": {
"protocol_id": 17
},
- "minecraft:shelter_pottery_pattern": {
+ "minecraft:prize_pottery_pattern": {
"protocol_id": 18
},
- "minecraft:skull_pottery_pattern": {
+ "minecraft:scrape_pottery_pattern": {
"protocol_id": 19
},
- "minecraft:snort_pottery_pattern": {
+ "minecraft:sheaf_pottery_pattern": {
"protocol_id": 20
+ },
+ "minecraft:shelter_pottery_pattern": {
+ "protocol_id": 21
+ },
+ "minecraft:skull_pottery_pattern": {
+ "protocol_id": 22
+ },
+ "minecraft:snort_pottery_pattern": {
+ "protocol_id": 23
}
},
- "protocol_id": 66
+ "protocol_id": 65
},
"minecraft:enchantment": {
"entries": {
@@ -4931,9 +5065,15 @@
"minecraft:blast_protection": {
"protocol_id": 3
},
+ "minecraft:breach": {
+ "protocol_id": 38
+ },
"minecraft:channeling": {
"protocol_id": 33
},
+ "minecraft:density": {
+ "protocol_id": 37
+ },
"minecraft:depth_strider": {
"protocol_id": 8
},
@@ -4980,7 +5120,7 @@
"protocol_id": 29
},
"minecraft:mending": {
- "protocol_id": 37
+ "protocol_id": 40
},
"minecraft:multishot": {
"protocol_id": 34
@@ -5021,7 +5161,7 @@
"minecraft:soul_speed": {
"protocol_id": 11
},
- "minecraft:sweeping": {
+ "minecraft:sweeping_edge": {
"protocol_id": 19
},
"minecraft:swift_sneak": {
@@ -5034,11 +5174,76 @@
"protocol_id": 22
},
"minecraft:vanishing_curse": {
- "protocol_id": 38
+ "protocol_id": 41
+ },
+ "minecraft:wind_burst": {
+ "protocol_id": 39
}
},
"protocol_id": 5
},
+ "minecraft:entity_sub_predicate_type": {
+ "entries": {
+ "minecraft:axolotl": {
+ "protocol_id": 5
+ },
+ "minecraft:boat": {
+ "protocol_id": 6
+ },
+ "minecraft:cat": {
+ "protocol_id": 16
+ },
+ "minecraft:fishing_hook": {
+ "protocol_id": 1
+ },
+ "minecraft:fox": {
+ "protocol_id": 7
+ },
+ "minecraft:frog": {
+ "protocol_id": 17
+ },
+ "minecraft:horse": {
+ "protocol_id": 10
+ },
+ "minecraft:lightning": {
+ "protocol_id": 0
+ },
+ "minecraft:llama": {
+ "protocol_id": 11
+ },
+ "minecraft:mooshroom": {
+ "protocol_id": 8
+ },
+ "minecraft:painting": {
+ "protocol_id": 15
+ },
+ "minecraft:parrot": {
+ "protocol_id": 13
+ },
+ "minecraft:player": {
+ "protocol_id": 2
+ },
+ "minecraft:rabbit": {
+ "protocol_id": 9
+ },
+ "minecraft:raider": {
+ "protocol_id": 4
+ },
+ "minecraft:slime": {
+ "protocol_id": 3
+ },
+ "minecraft:tropical_fish": {
+ "protocol_id": 14
+ },
+ "minecraft:villager": {
+ "protocol_id": 12
+ },
+ "minecraft:wolf": {
+ "protocol_id": 18
+ }
+ },
+ "protocol_id": 71
+ },
"minecraft:entity_type": {
"default": "minecraft:pig",
"entries": {
@@ -5048,377 +5253,389 @@
"minecraft:area_effect_cloud": {
"protocol_id": 1
},
- "minecraft:armor_stand": {
+ "minecraft:armadillo": {
"protocol_id": 2
},
- "minecraft:arrow": {
+ "minecraft:armor_stand": {
"protocol_id": 3
},
- "minecraft:axolotl": {
+ "minecraft:arrow": {
"protocol_id": 4
},
- "minecraft:bat": {
+ "minecraft:axolotl": {
"protocol_id": 5
},
- "minecraft:bee": {
+ "minecraft:bat": {
"protocol_id": 6
},
- "minecraft:blaze": {
+ "minecraft:bee": {
"protocol_id": 7
},
- "minecraft:block_display": {
+ "minecraft:blaze": {
"protocol_id": 8
},
- "minecraft:boat": {
+ "minecraft:block_display": {
"protocol_id": 9
},
- "minecraft:breeze": {
+ "minecraft:boat": {
"protocol_id": 10
},
- "minecraft:camel": {
+ "minecraft:bogged": {
"protocol_id": 11
},
- "minecraft:cat": {
+ "minecraft:breeze": {
"protocol_id": 12
},
- "minecraft:cave_spider": {
+ "minecraft:breeze_wind_charge": {
"protocol_id": 13
},
- "minecraft:chest_boat": {
+ "minecraft:camel": {
"protocol_id": 14
},
- "minecraft:chest_minecart": {
+ "minecraft:cat": {
"protocol_id": 15
},
- "minecraft:chicken": {
+ "minecraft:cave_spider": {
"protocol_id": 16
},
- "minecraft:cod": {
+ "minecraft:chest_boat": {
"protocol_id": 17
},
- "minecraft:command_block_minecart": {
+ "minecraft:chest_minecart": {
"protocol_id": 18
},
- "minecraft:cow": {
+ "minecraft:chicken": {
"protocol_id": 19
},
- "minecraft:creeper": {
+ "minecraft:cod": {
"protocol_id": 20
},
- "minecraft:dolphin": {
+ "minecraft:command_block_minecart": {
"protocol_id": 21
},
- "minecraft:donkey": {
+ "minecraft:cow": {
"protocol_id": 22
},
- "minecraft:dragon_fireball": {
+ "minecraft:creeper": {
"protocol_id": 23
},
- "minecraft:drowned": {
+ "minecraft:dolphin": {
"protocol_id": 24
},
- "minecraft:egg": {
+ "minecraft:donkey": {
"protocol_id": 25
},
- "minecraft:elder_guardian": {
+ "minecraft:dragon_fireball": {
"protocol_id": 26
},
- "minecraft:end_crystal": {
+ "minecraft:drowned": {
"protocol_id": 27
},
- "minecraft:ender_dragon": {
+ "minecraft:egg": {
"protocol_id": 28
},
- "minecraft:ender_pearl": {
+ "minecraft:elder_guardian": {
"protocol_id": 29
},
- "minecraft:enderman": {
+ "minecraft:end_crystal": {
"protocol_id": 30
},
- "minecraft:endermite": {
+ "minecraft:ender_dragon": {
"protocol_id": 31
},
- "minecraft:evoker": {
+ "minecraft:ender_pearl": {
"protocol_id": 32
},
- "minecraft:evoker_fangs": {
+ "minecraft:enderman": {
"protocol_id": 33
},
- "minecraft:experience_bottle": {
+ "minecraft:endermite": {
"protocol_id": 34
},
- "minecraft:experience_orb": {
+ "minecraft:evoker": {
"protocol_id": 35
},
- "minecraft:eye_of_ender": {
+ "minecraft:evoker_fangs": {
"protocol_id": 36
},
- "minecraft:falling_block": {
+ "minecraft:experience_bottle": {
"protocol_id": 37
},
- "minecraft:fireball": {
- "protocol_id": 58
- },
- "minecraft:firework_rocket": {
+ "minecraft:experience_orb": {
"protocol_id": 38
},
- "minecraft:fishing_bobber": {
- "protocol_id": 125
- },
- "minecraft:fox": {
+ "minecraft:eye_of_ender": {
"protocol_id": 39
},
- "minecraft:frog": {
+ "minecraft:falling_block": {
"protocol_id": 40
},
- "minecraft:furnace_minecart": {
- "protocol_id": 41
- },
- "minecraft:ghast": {
- "protocol_id": 42
- },
- "minecraft:giant": {
- "protocol_id": 43
- },
- "minecraft:glow_item_frame": {
- "protocol_id": 44
- },
- "minecraft:glow_squid": {
- "protocol_id": 45
- },
- "minecraft:goat": {
- "protocol_id": 46
- },
- "minecraft:guardian": {
- "protocol_id": 47
- },
- "minecraft:hoglin": {
- "protocol_id": 48
- },
- "minecraft:hopper_minecart": {
- "protocol_id": 49
- },
- "minecraft:horse": {
- "protocol_id": 50
- },
- "minecraft:husk": {
- "protocol_id": 51
- },
- "minecraft:illusioner": {
- "protocol_id": 52
- },
- "minecraft:interaction": {
- "protocol_id": 53
- },
- "minecraft:iron_golem": {
- "protocol_id": 54
- },
- "minecraft:item": {
- "protocol_id": 55
- },
- "minecraft:item_display": {
- "protocol_id": 56
- },
- "minecraft:item_frame": {
- "protocol_id": 57
- },
- "minecraft:leash_knot": {
- "protocol_id": 59
- },
- "minecraft:lightning_bolt": {
- "protocol_id": 60
- },
- "minecraft:llama": {
- "protocol_id": 61
- },
- "minecraft:llama_spit": {
+ "minecraft:fireball": {
"protocol_id": 62
},
- "minecraft:magma_cube": {
+ "minecraft:firework_rocket": {
+ "protocol_id": 41
+ },
+ "minecraft:fishing_bobber": {
+ "protocol_id": 129
+ },
+ "minecraft:fox": {
+ "protocol_id": 42
+ },
+ "minecraft:frog": {
+ "protocol_id": 43
+ },
+ "minecraft:furnace_minecart": {
+ "protocol_id": 44
+ },
+ "minecraft:ghast": {
+ "protocol_id": 45
+ },
+ "minecraft:giant": {
+ "protocol_id": 46
+ },
+ "minecraft:glow_item_frame": {
+ "protocol_id": 47
+ },
+ "minecraft:glow_squid": {
+ "protocol_id": 48
+ },
+ "minecraft:goat": {
+ "protocol_id": 49
+ },
+ "minecraft:guardian": {
+ "protocol_id": 50
+ },
+ "minecraft:hoglin": {
+ "protocol_id": 51
+ },
+ "minecraft:hopper_minecart": {
+ "protocol_id": 52
+ },
+ "minecraft:horse": {
+ "protocol_id": 53
+ },
+ "minecraft:husk": {
+ "protocol_id": 54
+ },
+ "minecraft:illusioner": {
+ "protocol_id": 55
+ },
+ "minecraft:interaction": {
+ "protocol_id": 56
+ },
+ "minecraft:iron_golem": {
+ "protocol_id": 57
+ },
+ "minecraft:item": {
+ "protocol_id": 58
+ },
+ "minecraft:item_display": {
+ "protocol_id": 59
+ },
+ "minecraft:item_frame": {
+ "protocol_id": 60
+ },
+ "minecraft:leash_knot": {
"protocol_id": 63
},
- "minecraft:marker": {
+ "minecraft:lightning_bolt": {
"protocol_id": 64
},
- "minecraft:minecart": {
+ "minecraft:llama": {
"protocol_id": 65
},
- "minecraft:mooshroom": {
+ "minecraft:llama_spit": {
"protocol_id": 66
},
- "minecraft:mule": {
+ "minecraft:magma_cube": {
"protocol_id": 67
},
- "minecraft:ocelot": {
+ "minecraft:marker": {
"protocol_id": 68
},
- "minecraft:painting": {
+ "minecraft:minecart": {
"protocol_id": 69
},
- "minecraft:panda": {
+ "minecraft:mooshroom": {
"protocol_id": 70
},
- "minecraft:parrot": {
+ "minecraft:mule": {
"protocol_id": 71
},
- "minecraft:phantom": {
+ "minecraft:ocelot": {
"protocol_id": 72
},
- "minecraft:pig": {
+ "minecraft:ominous_item_spawner": {
+ "protocol_id": 61
+ },
+ "minecraft:painting": {
"protocol_id": 73
},
- "minecraft:piglin": {
+ "minecraft:panda": {
"protocol_id": 74
},
- "minecraft:piglin_brute": {
+ "minecraft:parrot": {
"protocol_id": 75
},
- "minecraft:pillager": {
+ "minecraft:phantom": {
"protocol_id": 76
},
- "minecraft:player": {
- "protocol_id": 124
- },
- "minecraft:polar_bear": {
+ "minecraft:pig": {
"protocol_id": 77
},
- "minecraft:potion": {
+ "minecraft:piglin": {
"protocol_id": 78
},
- "minecraft:pufferfish": {
+ "minecraft:piglin_brute": {
"protocol_id": 79
},
- "minecraft:rabbit": {
+ "minecraft:pillager": {
"protocol_id": 80
},
- "minecraft:ravager": {
+ "minecraft:player": {
+ "protocol_id": 128
+ },
+ "minecraft:polar_bear": {
"protocol_id": 81
},
- "minecraft:salmon": {
+ "minecraft:potion": {
"protocol_id": 82
},
- "minecraft:sheep": {
+ "minecraft:pufferfish": {
"protocol_id": 83
},
- "minecraft:shulker": {
+ "minecraft:rabbit": {
"protocol_id": 84
},
- "minecraft:shulker_bullet": {
+ "minecraft:ravager": {
"protocol_id": 85
},
- "minecraft:silverfish": {
+ "minecraft:salmon": {
"protocol_id": 86
},
- "minecraft:skeleton": {
+ "minecraft:sheep": {
"protocol_id": 87
},
- "minecraft:skeleton_horse": {
+ "minecraft:shulker": {
"protocol_id": 88
},
- "minecraft:slime": {
+ "minecraft:shulker_bullet": {
"protocol_id": 89
},
- "minecraft:small_fireball": {
+ "minecraft:silverfish": {
"protocol_id": 90
},
- "minecraft:sniffer": {
+ "minecraft:skeleton": {
"protocol_id": 91
},
- "minecraft:snow_golem": {
+ "minecraft:skeleton_horse": {
"protocol_id": 92
},
- "minecraft:snowball": {
+ "minecraft:slime": {
"protocol_id": 93
},
- "minecraft:spawner_minecart": {
+ "minecraft:small_fireball": {
"protocol_id": 94
},
- "minecraft:spectral_arrow": {
+ "minecraft:sniffer": {
"protocol_id": 95
},
- "minecraft:spider": {
+ "minecraft:snow_golem": {
"protocol_id": 96
},
- "minecraft:squid": {
+ "minecraft:snowball": {
"protocol_id": 97
},
- "minecraft:stray": {
+ "minecraft:spawner_minecart": {
"protocol_id": 98
},
- "minecraft:strider": {
+ "minecraft:spectral_arrow": {
"protocol_id": 99
},
- "minecraft:tadpole": {
+ "minecraft:spider": {
"protocol_id": 100
},
- "minecraft:text_display": {
+ "minecraft:squid": {
"protocol_id": 101
},
- "minecraft:tnt": {
+ "minecraft:stray": {
"protocol_id": 102
},
- "minecraft:tnt_minecart": {
+ "minecraft:strider": {
"protocol_id": 103
},
- "minecraft:trader_llama": {
+ "minecraft:tadpole": {
"protocol_id": 104
},
- "minecraft:trident": {
+ "minecraft:text_display": {
"protocol_id": 105
},
- "minecraft:tropical_fish": {
+ "minecraft:tnt": {
"protocol_id": 106
},
- "minecraft:turtle": {
+ "minecraft:tnt_minecart": {
"protocol_id": 107
},
- "minecraft:vex": {
+ "minecraft:trader_llama": {
"protocol_id": 108
},
- "minecraft:villager": {
+ "minecraft:trident": {
"protocol_id": 109
},
- "minecraft:vindicator": {
+ "minecraft:tropical_fish": {
"protocol_id": 110
},
- "minecraft:wandering_trader": {
+ "minecraft:turtle": {
"protocol_id": 111
},
- "minecraft:warden": {
+ "minecraft:vex": {
"protocol_id": 112
},
- "minecraft:wind_charge": {
+ "minecraft:villager": {
"protocol_id": 113
},
- "minecraft:witch": {
+ "minecraft:vindicator": {
"protocol_id": 114
},
- "minecraft:wither": {
+ "minecraft:wandering_trader": {
"protocol_id": 115
},
- "minecraft:wither_skeleton": {
+ "minecraft:warden": {
"protocol_id": 116
},
- "minecraft:wither_skull": {
+ "minecraft:wind_charge": {
"protocol_id": 117
},
- "minecraft:wolf": {
+ "minecraft:witch": {
"protocol_id": 118
},
- "minecraft:zoglin": {
+ "minecraft:wither": {
"protocol_id": 119
},
- "minecraft:zombie": {
+ "minecraft:wither_skeleton": {
"protocol_id": 120
},
- "minecraft:zombie_horse": {
+ "minecraft:wither_skull": {
"protocol_id": 121
},
- "minecraft:zombie_villager": {
+ "minecraft:wolf": {
"protocol_id": 122
},
- "minecraft:zombified_piglin": {
+ "minecraft:zoglin": {
"protocol_id": 123
+ },
+ "minecraft:zombie": {
+ "protocol_id": 124
+ },
+ "minecraft:zombie_horse": {
+ "protocol_id": 125
+ },
+ "minecraft:zombie_villager": {
+ "protocol_id": 126
+ },
+ "minecraft:zombified_piglin": {
+ "protocol_id": 127
}
},
"protocol_id": 6
@@ -5711,7 +5928,7 @@
"protocol_id": 6
}
},
- "protocol_id": 65
+ "protocol_id": 64
},
"minecraft:int_provider_type": {
"entries": {
@@ -5740,76 +5957,76 @@
"default": "minecraft:air",
"entries": {
"minecraft:acacia_boat": {
- "protocol_id": 781
- },
- "minecraft:acacia_button": {
- "protocol_id": 687
- },
- "minecraft:acacia_chest_boat": {
"protocol_id": 782
},
+ "minecraft:acacia_button": {
+ "protocol_id": 688
+ },
+ "minecraft:acacia_chest_boat": {
+ "protocol_id": 783
+ },
"minecraft:acacia_door": {
- "protocol_id": 714
+ "protocol_id": 715
},
"minecraft:acacia_fence": {
- "protocol_id": 314
+ "protocol_id": 315
},
"minecraft:acacia_fence_gate": {
- "protocol_id": 753
+ "protocol_id": 754
},
"minecraft:acacia_hanging_sign": {
- "protocol_id": 898
+ "protocol_id": 901
},
"minecraft:acacia_leaves": {
- "protocol_id": 179
+ "protocol_id": 180
},
"minecraft:acacia_log": {
- "protocol_id": 135
+ "protocol_id": 136
},
"minecraft:acacia_planks": {
"protocol_id": 40
},
"minecraft:acacia_pressure_plate": {
- "protocol_id": 702
+ "protocol_id": 703
},
"minecraft:acacia_sapling": {
"protocol_id": 52
},
"minecraft:acacia_sign": {
- "protocol_id": 887
+ "protocol_id": 890
},
"minecraft:acacia_slab": {
- "protocol_id": 255
+ "protocol_id": 256
},
"minecraft:acacia_stairs": {
- "protocol_id": 386
+ "protocol_id": 387
},
"minecraft:acacia_trapdoor": {
- "protocol_id": 734
+ "protocol_id": 735
},
"minecraft:acacia_wood": {
- "protocol_id": 169
+ "protocol_id": 170
},
"minecraft:activator_rail": {
- "protocol_id": 763
+ "protocol_id": 764
},
"minecraft:air": {
"protocol_id": 0
},
"minecraft:allay_spawn_egg": {
- "protocol_id": 1005
+ "protocol_id": 1009
},
"minecraft:allium": {
- "protocol_id": 220
+ "protocol_id": 221
},
"minecraft:amethyst_block": {
- "protocol_id": 85
+ "protocol_id": 86
},
"minecraft:amethyst_cluster": {
- "protocol_id": 1249
+ "protocol_id": 1258
},
"minecraft:amethyst_shard": {
- "protocol_id": 805
+ "protocol_id": 808
},
"minecraft:ancient_debris": {
"protocol_id": 80
@@ -5818,595 +6035,610 @@
"protocol_id": 6
},
"minecraft:andesite_slab": {
- "protocol_id": 647
+ "protocol_id": 648
},
"minecraft:andesite_stairs": {
- "protocol_id": 630
+ "protocol_id": 631
},
"minecraft:andesite_wall": {
- "protocol_id": 406
+ "protocol_id": 407
},
"minecraft:angler_pottery_sherd": {
- "protocol_id": 1274
+ "protocol_id": 1285
},
"minecraft:anvil": {
- "protocol_id": 418
+ "protocol_id": 419
},
"minecraft:apple": {
- "protocol_id": 796
+ "protocol_id": 799
},
"minecraft:archer_pottery_sherd": {
- "protocol_id": 1275
+ "protocol_id": 1286
+ },
+ "minecraft:armadillo_scute": {
+ "protocol_id": 796
+ },
+ "minecraft:armadillo_spawn_egg": {
+ "protocol_id": 1008
},
"minecraft:armor_stand": {
- "protocol_id": 1116
+ "protocol_id": 1123
},
"minecraft:arms_up_pottery_sherd": {
- "protocol_id": 1276
+ "protocol_id": 1287
},
"minecraft:arrow": {
- "protocol_id": 798
+ "protocol_id": 801
},
"minecraft:axolotl_bucket": {
- "protocol_id": 916
+ "protocol_id": 919
},
"minecraft:axolotl_spawn_egg": {
- "protocol_id": 1006
+ "protocol_id": 1010
},
"minecraft:azalea": {
- "protocol_id": 196
+ "protocol_id": 197
},
"minecraft:azalea_leaves": {
- "protocol_id": 183
+ "protocol_id": 184
},
"minecraft:azure_bluet": {
- "protocol_id": 221
+ "protocol_id": 222
},
"minecraft:baked_potato": {
- "protocol_id": 1092
+ "protocol_id": 1099
},
"minecraft:bamboo": {
- "protocol_id": 250
+ "protocol_id": 251
},
"minecraft:bamboo_block": {
- "protocol_id": 143
+ "protocol_id": 144
},
"minecraft:bamboo_button": {
- "protocol_id": 691
+ "protocol_id": 692
},
"minecraft:bamboo_chest_raft": {
- "protocol_id": 790
+ "protocol_id": 791
},
"minecraft:bamboo_door": {
- "protocol_id": 718
+ "protocol_id": 719
},
"minecraft:bamboo_fence": {
- "protocol_id": 318
+ "protocol_id": 319
},
"minecraft:bamboo_fence_gate": {
- "protocol_id": 757
+ "protocol_id": 758
},
"minecraft:bamboo_hanging_sign": {
- "protocol_id": 902
+ "protocol_id": 905
},
"minecraft:bamboo_mosaic": {
"protocol_id": 47
},
"minecraft:bamboo_mosaic_slab": {
- "protocol_id": 260
+ "protocol_id": 261
},
"minecraft:bamboo_mosaic_stairs": {
- "protocol_id": 391
+ "protocol_id": 392
},
"minecraft:bamboo_planks": {
"protocol_id": 44
},
"minecraft:bamboo_pressure_plate": {
- "protocol_id": 706
+ "protocol_id": 707
},
"minecraft:bamboo_raft": {
- "protocol_id": 789
+ "protocol_id": 790
},
"minecraft:bamboo_sign": {
- "protocol_id": 891
+ "protocol_id": 894
},
"minecraft:bamboo_slab": {
- "protocol_id": 259
+ "protocol_id": 260
},
"minecraft:bamboo_stairs": {
- "protocol_id": 390
+ "protocol_id": 391
},
"minecraft:bamboo_trapdoor": {
- "protocol_id": 738
+ "protocol_id": 739
},
"minecraft:barrel": {
- "protocol_id": 1193
+ "protocol_id": 1202
},
"minecraft:barrier": {
- "protocol_id": 442
+ "protocol_id": 443
},
"minecraft:basalt": {
- "protocol_id": 327
+ "protocol_id": 328
},
"minecraft:bat_spawn_egg": {
- "protocol_id": 1007
+ "protocol_id": 1011
},
"minecraft:beacon": {
- "protocol_id": 395
+ "protocol_id": 396
},
"minecraft:bedrock": {
"protocol_id": 56
},
"minecraft:bee_nest": {
- "protocol_id": 1210
+ "protocol_id": 1219
},
"minecraft:bee_spawn_egg": {
- "protocol_id": 1008
+ "protocol_id": 1012
},
"minecraft:beef": {
- "protocol_id": 985
+ "protocol_id": 988
},
"minecraft:beehive": {
- "protocol_id": 1211
+ "protocol_id": 1220
},
"minecraft:beetroot": {
- "protocol_id": 1147
+ "protocol_id": 1154
},
"minecraft:beetroot_seeds": {
- "protocol_id": 1148
+ "protocol_id": 1155
},
"minecraft:beetroot_soup": {
- "protocol_id": 1149
+ "protocol_id": 1156
},
"minecraft:bell": {
- "protocol_id": 1201
+ "protocol_id": 1210
},
"minecraft:big_dripleaf": {
- "protocol_id": 248
+ "protocol_id": 249
},
"minecraft:birch_boat": {
- "protocol_id": 777
- },
- "minecraft:birch_button": {
- "protocol_id": 685
- },
- "minecraft:birch_chest_boat": {
"protocol_id": 778
},
+ "minecraft:birch_button": {
+ "protocol_id": 686
+ },
+ "minecraft:birch_chest_boat": {
+ "protocol_id": 779
+ },
"minecraft:birch_door": {
- "protocol_id": 712
+ "protocol_id": 713
},
"minecraft:birch_fence": {
- "protocol_id": 312
+ "protocol_id": 313
},
"minecraft:birch_fence_gate": {
- "protocol_id": 751
+ "protocol_id": 752
},
"minecraft:birch_hanging_sign": {
- "protocol_id": 896
+ "protocol_id": 899
},
"minecraft:birch_leaves": {
- "protocol_id": 177
+ "protocol_id": 178
},
"minecraft:birch_log": {
- "protocol_id": 133
+ "protocol_id": 134
},
"minecraft:birch_planks": {
"protocol_id": 38
},
"minecraft:birch_pressure_plate": {
- "protocol_id": 700
+ "protocol_id": 701
},
"minecraft:birch_sapling": {
"protocol_id": 50
},
"minecraft:birch_sign": {
- "protocol_id": 885
+ "protocol_id": 888
},
"minecraft:birch_slab": {
- "protocol_id": 253
+ "protocol_id": 254
},
"minecraft:birch_stairs": {
- "protocol_id": 384
+ "protocol_id": 385
},
"minecraft:birch_trapdoor": {
- "protocol_id": 732
+ "protocol_id": 733
},
"minecraft:birch_wood": {
- "protocol_id": 167
+ "protocol_id": 168
},
"minecraft:black_banner": {
- "protocol_id": 1141
+ "protocol_id": 1148
},
"minecraft:black_bed": {
- "protocol_id": 976
+ "protocol_id": 979
},
"minecraft:black_candle": {
- "protocol_id": 1245
+ "protocol_id": 1254
},
"minecraft:black_carpet": {
- "protocol_id": 460
+ "protocol_id": 461
},
"minecraft:black_concrete": {
- "protocol_id": 569
+ "protocol_id": 570
},
"minecraft:black_concrete_powder": {
- "protocol_id": 585
+ "protocol_id": 586
},
"minecraft:black_dye": {
- "protocol_id": 956
+ "protocol_id": 959
},
"minecraft:black_glazed_terracotta": {
- "protocol_id": 553
+ "protocol_id": 554
},
"minecraft:black_shulker_box": {
- "protocol_id": 537
+ "protocol_id": 538
},
"minecraft:black_stained_glass": {
- "protocol_id": 485
+ "protocol_id": 486
},
"minecraft:black_stained_glass_pane": {
- "protocol_id": 501
+ "protocol_id": 502
},
"minecraft:black_terracotta": {
- "protocol_id": 441
+ "protocol_id": 442
},
"minecraft:black_wool": {
- "protocol_id": 216
+ "protocol_id": 217
},
"minecraft:blackstone": {
- "protocol_id": 1216
+ "protocol_id": 1225
},
"minecraft:blackstone_slab": {
- "protocol_id": 1217
+ "protocol_id": 1226
},
"minecraft:blackstone_stairs": {
- "protocol_id": 1218
+ "protocol_id": 1227
},
"minecraft:blackstone_wall": {
- "protocol_id": 411
+ "protocol_id": 412
},
"minecraft:blade_pottery_sherd": {
- "protocol_id": 1277
+ "protocol_id": 1288
},
"minecraft:blast_furnace": {
- "protocol_id": 1195
+ "protocol_id": 1204
},
"minecraft:blaze_powder": {
- "protocol_id": 999
+ "protocol_id": 1002
},
"minecraft:blaze_rod": {
- "protocol_id": 991
+ "protocol_id": 994
},
"minecraft:blaze_spawn_egg": {
- "protocol_id": 1009
+ "protocol_id": 1013
},
"minecraft:blue_banner": {
- "protocol_id": 1137
+ "protocol_id": 1144
},
"minecraft:blue_bed": {
- "protocol_id": 972
+ "protocol_id": 975
},
"minecraft:blue_candle": {
- "protocol_id": 1241
+ "protocol_id": 1250
},
"minecraft:blue_carpet": {
- "protocol_id": 456
- },
- "minecraft:blue_concrete": {
- "protocol_id": 565
- },
- "minecraft:blue_concrete_powder": {
- "protocol_id": 581
- },
- "minecraft:blue_dye": {
- "protocol_id": 952
- },
- "minecraft:blue_glazed_terracotta": {
- "protocol_id": 549
- },
- "minecraft:blue_ice": {
- "protocol_id": 618
- },
- "minecraft:blue_orchid": {
- "protocol_id": 219
- },
- "minecraft:blue_shulker_box": {
- "protocol_id": 533
- },
- "minecraft:blue_stained_glass": {
- "protocol_id": 481
- },
- "minecraft:blue_stained_glass_pane": {
- "protocol_id": 497
- },
- "minecraft:blue_terracotta": {
- "protocol_id": 437
- },
- "minecraft:blue_wool": {
- "protocol_id": 212
- },
- "minecraft:bone": {
- "protocol_id": 958
- },
- "minecraft:bone_block": {
- "protocol_id": 519
- },
- "minecraft:bone_meal": {
- "protocol_id": 957
- },
- "minecraft:book": {
- "protocol_id": 922
- },
- "minecraft:bookshelf": {
- "protocol_id": 285
- },
- "minecraft:bow": {
- "protocol_id": 797
- },
- "minecraft:bowl": {
- "protocol_id": 845
- },
- "minecraft:brain_coral": {
- "protocol_id": 599
- },
- "minecraft:brain_coral_block": {
- "protocol_id": 594
- },
- "minecraft:brain_coral_fan": {
- "protocol_id": 609
- },
- "minecraft:bread": {
- "protocol_id": 852
- },
- "minecraft:breeze_spawn_egg": {
- "protocol_id": 1010
- },
- "minecraft:brewer_pottery_sherd": {
- "protocol_id": 1278
- },
- "minecraft:brewing_stand": {
- "protocol_id": 1001
- },
- "minecraft:brick": {
- "protocol_id": 918
- },
- "minecraft:brick_slab": {
- "protocol_id": 269
- },
- "minecraft:brick_stairs": {
- "protocol_id": 360
- },
- "minecraft:brick_wall": {
- "protocol_id": 398
- },
- "minecraft:bricks": {
- "protocol_id": 284
- },
- "minecraft:brown_banner": {
- "protocol_id": 1138
- },
- "minecraft:brown_bed": {
- "protocol_id": 973
- },
- "minecraft:brown_candle": {
- "protocol_id": 1242
- },
- "minecraft:brown_carpet": {
"protocol_id": 457
},
- "minecraft:brown_concrete": {
+ "minecraft:blue_concrete": {
"protocol_id": 566
},
- "minecraft:brown_concrete_powder": {
+ "minecraft:blue_concrete_powder": {
"protocol_id": 582
},
- "minecraft:brown_dye": {
- "protocol_id": 953
+ "minecraft:blue_dye": {
+ "protocol_id": 955
},
- "minecraft:brown_glazed_terracotta": {
+ "minecraft:blue_glazed_terracotta": {
"protocol_id": 550
},
- "minecraft:brown_mushroom": {
- "protocol_id": 233
+ "minecraft:blue_ice": {
+ "protocol_id": 619
},
- "minecraft:brown_mushroom_block": {
- "protocol_id": 351
+ "minecraft:blue_orchid": {
+ "protocol_id": 220
},
- "minecraft:brown_shulker_box": {
+ "minecraft:blue_shulker_box": {
"protocol_id": 534
},
- "minecraft:brown_stained_glass": {
+ "minecraft:blue_stained_glass": {
"protocol_id": 482
},
- "minecraft:brown_stained_glass_pane": {
+ "minecraft:blue_stained_glass_pane": {
"protocol_id": 498
},
- "minecraft:brown_terracotta": {
+ "minecraft:blue_terracotta": {
"protocol_id": 438
},
- "minecraft:brown_wool": {
+ "minecraft:blue_wool": {
"protocol_id": 213
},
- "minecraft:brush": {
- "protocol_id": 1256
+ "minecraft:bogged_spawn_egg": {
+ "protocol_id": 1014
},
- "minecraft:bubble_coral": {
+ "minecraft:bolt_armor_trim_smithing_template": {
+ "protocol_id": 1284
+ },
+ "minecraft:bone": {
+ "protocol_id": 961
+ },
+ "minecraft:bone_block": {
+ "protocol_id": 520
+ },
+ "minecraft:bone_meal": {
+ "protocol_id": 960
+ },
+ "minecraft:book": {
+ "protocol_id": 925
+ },
+ "minecraft:bookshelf": {
+ "protocol_id": 286
+ },
+ "minecraft:bow": {
+ "protocol_id": 800
+ },
+ "minecraft:bowl": {
+ "protocol_id": 848
+ },
+ "minecraft:brain_coral": {
"protocol_id": 600
},
- "minecraft:bubble_coral_block": {
+ "minecraft:brain_coral_block": {
"protocol_id": 595
},
- "minecraft:bubble_coral_fan": {
+ "minecraft:brain_coral_fan": {
"protocol_id": 610
},
+ "minecraft:bread": {
+ "protocol_id": 855
+ },
+ "minecraft:breeze_rod": {
+ "protocol_id": 1329
+ },
+ "minecraft:breeze_spawn_egg": {
+ "protocol_id": 1015
+ },
+ "minecraft:brewer_pottery_sherd": {
+ "protocol_id": 1289
+ },
+ "minecraft:brewing_stand": {
+ "protocol_id": 1004
+ },
+ "minecraft:brick": {
+ "protocol_id": 921
+ },
+ "minecraft:brick_slab": {
+ "protocol_id": 270
+ },
+ "minecraft:brick_stairs": {
+ "protocol_id": 361
+ },
+ "minecraft:brick_wall": {
+ "protocol_id": 399
+ },
+ "minecraft:bricks": {
+ "protocol_id": 285
+ },
+ "minecraft:brown_banner": {
+ "protocol_id": 1145
+ },
+ "minecraft:brown_bed": {
+ "protocol_id": 976
+ },
+ "minecraft:brown_candle": {
+ "protocol_id": 1251
+ },
+ "minecraft:brown_carpet": {
+ "protocol_id": 458
+ },
+ "minecraft:brown_concrete": {
+ "protocol_id": 567
+ },
+ "minecraft:brown_concrete_powder": {
+ "protocol_id": 583
+ },
+ "minecraft:brown_dye": {
+ "protocol_id": 956
+ },
+ "minecraft:brown_glazed_terracotta": {
+ "protocol_id": 551
+ },
+ "minecraft:brown_mushroom": {
+ "protocol_id": 234
+ },
+ "minecraft:brown_mushroom_block": {
+ "protocol_id": 352
+ },
+ "minecraft:brown_shulker_box": {
+ "protocol_id": 535
+ },
+ "minecraft:brown_stained_glass": {
+ "protocol_id": 483
+ },
+ "minecraft:brown_stained_glass_pane": {
+ "protocol_id": 499
+ },
+ "minecraft:brown_terracotta": {
+ "protocol_id": 439
+ },
+ "minecraft:brown_wool": {
+ "protocol_id": 214
+ },
+ "minecraft:brush": {
+ "protocol_id": 1265
+ },
+ "minecraft:bubble_coral": {
+ "protocol_id": 601
+ },
+ "minecraft:bubble_coral_block": {
+ "protocol_id": 596
+ },
+ "minecraft:bubble_coral_fan": {
+ "protocol_id": 611
+ },
"minecraft:bucket": {
- "protocol_id": 905
+ "protocol_id": 908
},
"minecraft:budding_amethyst": {
- "protocol_id": 86
+ "protocol_id": 87
},
"minecraft:bundle": {
- "protocol_id": 927
+ "protocol_id": 930
},
"minecraft:burn_pottery_sherd": {
- "protocol_id": 1279
+ "protocol_id": 1290
},
"minecraft:cactus": {
- "protocol_id": 307
+ "protocol_id": 308
},
"minecraft:cake": {
- "protocol_id": 960
+ "protocol_id": 963
},
"minecraft:calcite": {
"protocol_id": 11
},
"minecraft:calibrated_sculk_sensor": {
- "protocol_id": 675
+ "protocol_id": 676
},
"minecraft:camel_spawn_egg": {
- "protocol_id": 1012
+ "protocol_id": 1017
},
"minecraft:campfire": {
- "protocol_id": 1206
+ "protocol_id": 1215
},
"minecraft:candle": {
- "protocol_id": 1229
+ "protocol_id": 1238
},
"minecraft:carrot": {
- "protocol_id": 1090
+ "protocol_id": 1097
},
"minecraft:carrot_on_a_stick": {
- "protocol_id": 770
+ "protocol_id": 771
},
"minecraft:cartography_table": {
- "protocol_id": 1196
+ "protocol_id": 1205
},
"minecraft:carved_pumpkin": {
- "protocol_id": 322
+ "protocol_id": 323
},
"minecraft:cat_spawn_egg": {
- "protocol_id": 1011
+ "protocol_id": 1016
},
"minecraft:cauldron": {
- "protocol_id": 1002
+ "protocol_id": 1005
},
"minecraft:cave_spider_spawn_egg": {
- "protocol_id": 1013
+ "protocol_id": 1018
},
"minecraft:chain": {
- "protocol_id": 355
+ "protocol_id": 356
},
"minecraft:chain_command_block": {
- "protocol_id": 514
+ "protocol_id": 515
},
"minecraft:chainmail_boots": {
- "protocol_id": 860
+ "protocol_id": 863
},
"minecraft:chainmail_chestplate": {
- "protocol_id": 858
+ "protocol_id": 861
},
"minecraft:chainmail_helmet": {
- "protocol_id": 857
+ "protocol_id": 860
},
"minecraft:chainmail_leggings": {
- "protocol_id": 859
+ "protocol_id": 862
},
"minecraft:charcoal": {
- "protocol_id": 800
+ "protocol_id": 803
},
"minecraft:cherry_boat": {
- "protocol_id": 783
- },
- "minecraft:cherry_button": {
- "protocol_id": 688
- },
- "minecraft:cherry_chest_boat": {
"protocol_id": 784
},
+ "minecraft:cherry_button": {
+ "protocol_id": 689
+ },
+ "minecraft:cherry_chest_boat": {
+ "protocol_id": 785
+ },
"minecraft:cherry_door": {
- "protocol_id": 715
+ "protocol_id": 716
},
"minecraft:cherry_fence": {
- "protocol_id": 315
+ "protocol_id": 316
},
"minecraft:cherry_fence_gate": {
- "protocol_id": 754
+ "protocol_id": 755
},
"minecraft:cherry_hanging_sign": {
- "protocol_id": 899
+ "protocol_id": 902
},
"minecraft:cherry_leaves": {
- "protocol_id": 180
+ "protocol_id": 181
},
"minecraft:cherry_log": {
- "protocol_id": 136
+ "protocol_id": 137
},
"minecraft:cherry_planks": {
"protocol_id": 41
},
"minecraft:cherry_pressure_plate": {
- "protocol_id": 703
+ "protocol_id": 704
},
"minecraft:cherry_sapling": {
"protocol_id": 53
},
"minecraft:cherry_sign": {
- "protocol_id": 888
+ "protocol_id": 891
},
"minecraft:cherry_slab": {
- "protocol_id": 256
+ "protocol_id": 257
},
"minecraft:cherry_stairs": {
- "protocol_id": 387
+ "protocol_id": 388
},
"minecraft:cherry_trapdoor": {
- "protocol_id": 735
+ "protocol_id": 736
},
"minecraft:cherry_wood": {
- "protocol_id": 170
+ "protocol_id": 171
},
"minecraft:chest": {
- "protocol_id": 298
+ "protocol_id": 299
},
"minecraft:chest_minecart": {
- "protocol_id": 766
+ "protocol_id": 767
},
"minecraft:chicken": {
- "protocol_id": 987
+ "protocol_id": 990
},
"minecraft:chicken_spawn_egg": {
- "protocol_id": 1014
+ "protocol_id": 1019
},
"minecraft:chipped_anvil": {
- "protocol_id": 419
+ "protocol_id": 420
},
"minecraft:chiseled_bookshelf": {
- "protocol_id": 286
+ "protocol_id": 287
},
"minecraft:chiseled_copper": {
- "protocol_id": 95
+ "protocol_id": 96
},
"minecraft:chiseled_deepslate": {
- "protocol_id": 349
+ "protocol_id": 350
},
"minecraft:chiseled_nether_bricks": {
- "protocol_id": 367
+ "protocol_id": 368
},
"minecraft:chiseled_polished_blackstone": {
- "protocol_id": 1223
+ "protocol_id": 1232
},
"minecraft:chiseled_quartz_block": {
- "protocol_id": 421
+ "protocol_id": 422
},
"minecraft:chiseled_red_sandstone": {
- "protocol_id": 510
+ "protocol_id": 511
},
"minecraft:chiseled_sandstone": {
- "protocol_id": 191
+ "protocol_id": 192
},
"minecraft:chiseled_stone_bricks": {
- "protocol_id": 342
+ "protocol_id": 343
},
"minecraft:chiseled_tuff": {
"protocol_id": 16
@@ -6415,25 +6647,25 @@
"protocol_id": 25
},
"minecraft:chorus_flower": {
- "protocol_id": 293
+ "protocol_id": 294
},
"minecraft:chorus_fruit": {
- "protocol_id": 1143
+ "protocol_id": 1150
},
"minecraft:chorus_plant": {
- "protocol_id": 292
+ "protocol_id": 293
},
"minecraft:clay": {
- "protocol_id": 308
+ "protocol_id": 309
},
"minecraft:clay_ball": {
- "protocol_id": 919
+ "protocol_id": 922
},
"minecraft:clock": {
- "protocol_id": 929
+ "protocol_id": 932
},
"minecraft:coal": {
- "protocol_id": 799
+ "protocol_id": 802
},
"minecraft:coal_block": {
"protocol_id": 81
@@ -6445,166 +6677,166 @@
"protocol_id": 29
},
"minecraft:coast_armor_trim_smithing_template": {
- "protocol_id": 1260
+ "protocol_id": 1269
},
"minecraft:cobbled_deepslate": {
"protocol_id": 9
},
"minecraft:cobbled_deepslate_slab": {
- "protocol_id": 651
+ "protocol_id": 652
},
"minecraft:cobbled_deepslate_stairs": {
- "protocol_id": 634
+ "protocol_id": 635
},
"minecraft:cobbled_deepslate_wall": {
- "protocol_id": 414
+ "protocol_id": 415
},
"minecraft:cobblestone": {
"protocol_id": 35
},
"minecraft:cobblestone_slab": {
- "protocol_id": 268
+ "protocol_id": 269
},
"minecraft:cobblestone_stairs": {
- "protocol_id": 303
+ "protocol_id": 304
},
"minecraft:cobblestone_wall": {
- "protocol_id": 396
+ "protocol_id": 397
},
"minecraft:cobweb": {
- "protocol_id": 193
+ "protocol_id": 194
},
"minecraft:cocoa_beans": {
- "protocol_id": 940
+ "protocol_id": 943
},
"minecraft:cod": {
- "protocol_id": 932
+ "protocol_id": 935
},
"minecraft:cod_bucket": {
- "protocol_id": 914
+ "protocol_id": 917
},
"minecraft:cod_spawn_egg": {
- "protocol_id": 1015
+ "protocol_id": 1020
},
"minecraft:command_block": {
- "protocol_id": 394
+ "protocol_id": 395
},
"minecraft:command_block_minecart": {
- "protocol_id": 1123
+ "protocol_id": 1130
},
"minecraft:comparator": {
- "protocol_id": 660
+ "protocol_id": 661
},
"minecraft:compass": {
- "protocol_id": 925
+ "protocol_id": 928
},
"minecraft:composter": {
- "protocol_id": 1192
+ "protocol_id": 1201
},
"minecraft:conduit": {
- "protocol_id": 619
+ "protocol_id": 620
},
"minecraft:cooked_beef": {
- "protocol_id": 986
+ "protocol_id": 989
},
"minecraft:cooked_chicken": {
- "protocol_id": 988
+ "protocol_id": 991
},
"minecraft:cooked_cod": {
- "protocol_id": 936
+ "protocol_id": 939
},
"minecraft:cooked_mutton": {
- "protocol_id": 1125
+ "protocol_id": 1132
},
"minecraft:cooked_porkchop": {
- "protocol_id": 879
+ "protocol_id": 882
},
"minecraft:cooked_rabbit": {
- "protocol_id": 1112
+ "protocol_id": 1119
},
"minecraft:cooked_salmon": {
- "protocol_id": 937
+ "protocol_id": 940
},
"minecraft:cookie": {
- "protocol_id": 977
+ "protocol_id": 980
},
"minecraft:copper_block": {
- "protocol_id": 88
+ "protocol_id": 89
},
"minecraft:copper_bulb": {
- "protocol_id": 1302
+ "protocol_id": 1316
},
"minecraft:copper_door": {
- "protocol_id": 721
+ "protocol_id": 722
},
"minecraft:copper_grate": {
- "protocol_id": 1294
+ "protocol_id": 1308
},
"minecraft:copper_ingot": {
- "protocol_id": 809
+ "protocol_id": 812
},
"minecraft:copper_ore": {
"protocol_id": 66
},
"minecraft:copper_trapdoor": {
- "protocol_id": 741
+ "protocol_id": 742
},
"minecraft:cornflower": {
- "protocol_id": 227
+ "protocol_id": 228
},
"minecraft:cow_spawn_egg": {
- "protocol_id": 1016
+ "protocol_id": 1021
},
"minecraft:cracked_deepslate_bricks": {
- "protocol_id": 346
+ "protocol_id": 347
},
"minecraft:cracked_deepslate_tiles": {
- "protocol_id": 348
+ "protocol_id": 349
},
"minecraft:cracked_nether_bricks": {
- "protocol_id": 366
+ "protocol_id": 367
},
"minecraft:cracked_polished_blackstone_bricks": {
- "protocol_id": 1227
+ "protocol_id": 1236
},
"minecraft:cracked_stone_bricks": {
- "protocol_id": 341
+ "protocol_id": 342
},
"minecraft:crafter": {
- "protocol_id": 978
+ "protocol_id": 981
},
"minecraft:crafting_table": {
- "protocol_id": 299
+ "protocol_id": 300
},
"minecraft:creeper_banner_pattern": {
- "protocol_id": 1186
+ "protocol_id": 1193
},
"minecraft:creeper_head": {
- "protocol_id": 1100
+ "protocol_id": 1107
},
"minecraft:creeper_spawn_egg": {
- "protocol_id": 1017
+ "protocol_id": 1022
},
"minecraft:crimson_button": {
- "protocol_id": 692
+ "protocol_id": 693
},
"minecraft:crimson_door": {
- "protocol_id": 719
+ "protocol_id": 720
},
"minecraft:crimson_fence": {
- "protocol_id": 319
+ "protocol_id": 320
},
"minecraft:crimson_fence_gate": {
- "protocol_id": 758
+ "protocol_id": 759
},
"minecraft:crimson_fungus": {
- "protocol_id": 235
+ "protocol_id": 236
},
"minecraft:crimson_hanging_sign": {
- "protocol_id": 903
+ "protocol_id": 906
},
"minecraft:crimson_hyphae": {
- "protocol_id": 173
+ "protocol_id": 174
},
"minecraft:crimson_nylium": {
"protocol_id": 33
@@ -6613,232 +6845,232 @@
"protocol_id": 45
},
"minecraft:crimson_pressure_plate": {
- "protocol_id": 707
+ "protocol_id": 708
},
"minecraft:crimson_roots": {
- "protocol_id": 237
+ "protocol_id": 238
},
"minecraft:crimson_sign": {
- "protocol_id": 892
+ "protocol_id": 895
},
"minecraft:crimson_slab": {
- "protocol_id": 261
+ "protocol_id": 262
},
"minecraft:crimson_stairs": {
- "protocol_id": 392
+ "protocol_id": 393
},
"minecraft:crimson_stem": {
- "protocol_id": 141
+ "protocol_id": 142
},
"minecraft:crimson_trapdoor": {
- "protocol_id": 739
+ "protocol_id": 740
},
"minecraft:crossbow": {
- "protocol_id": 1182
+ "protocol_id": 1189
},
"minecraft:crying_obsidian": {
- "protocol_id": 1215
+ "protocol_id": 1224
},
"minecraft:cut_copper": {
- "protocol_id": 99
+ "protocol_id": 100
},
"minecraft:cut_copper_slab": {
- "protocol_id": 107
+ "protocol_id": 108
},
"minecraft:cut_copper_stairs": {
- "protocol_id": 103
+ "protocol_id": 104
},
"minecraft:cut_red_sandstone": {
- "protocol_id": 511
+ "protocol_id": 512
},
"minecraft:cut_red_sandstone_slab": {
- "protocol_id": 275
+ "protocol_id": 276
},
"minecraft:cut_sandstone": {
- "protocol_id": 192
+ "protocol_id": 193
},
"minecraft:cut_sandstone_slab": {
- "protocol_id": 266
+ "protocol_id": 267
},
"minecraft:cyan_banner": {
- "protocol_id": 1135
+ "protocol_id": 1142
},
"minecraft:cyan_bed": {
- "protocol_id": 970
+ "protocol_id": 973
},
"minecraft:cyan_candle": {
- "protocol_id": 1239
+ "protocol_id": 1248
},
"minecraft:cyan_carpet": {
- "protocol_id": 454
+ "protocol_id": 455
},
"minecraft:cyan_concrete": {
- "protocol_id": 563
+ "protocol_id": 564
},
"minecraft:cyan_concrete_powder": {
- "protocol_id": 579
+ "protocol_id": 580
},
"minecraft:cyan_dye": {
- "protocol_id": 950
+ "protocol_id": 953
},
"minecraft:cyan_glazed_terracotta": {
- "protocol_id": 547
+ "protocol_id": 548
},
"minecraft:cyan_shulker_box": {
- "protocol_id": 531
+ "protocol_id": 532
},
"minecraft:cyan_stained_glass": {
- "protocol_id": 479
+ "protocol_id": 480
},
"minecraft:cyan_stained_glass_pane": {
- "protocol_id": 495
+ "protocol_id": 496
},
"minecraft:cyan_terracotta": {
- "protocol_id": 435
+ "protocol_id": 436
},
"minecraft:cyan_wool": {
- "protocol_id": 210
+ "protocol_id": 211
},
"minecraft:damaged_anvil": {
- "protocol_id": 420
+ "protocol_id": 421
},
"minecraft:dandelion": {
- "protocol_id": 217
+ "protocol_id": 218
},
"minecraft:danger_pottery_sherd": {
- "protocol_id": 1280
+ "protocol_id": 1291
},
"minecraft:dark_oak_boat": {
- "protocol_id": 785
- },
- "minecraft:dark_oak_button": {
- "protocol_id": 689
- },
- "minecraft:dark_oak_chest_boat": {
"protocol_id": 786
},
+ "minecraft:dark_oak_button": {
+ "protocol_id": 690
+ },
+ "minecraft:dark_oak_chest_boat": {
+ "protocol_id": 787
+ },
"minecraft:dark_oak_door": {
- "protocol_id": 716
+ "protocol_id": 717
},
"minecraft:dark_oak_fence": {
- "protocol_id": 316
+ "protocol_id": 317
},
"minecraft:dark_oak_fence_gate": {
- "protocol_id": 755
+ "protocol_id": 756
},
"minecraft:dark_oak_hanging_sign": {
- "protocol_id": 900
+ "protocol_id": 903
},
"minecraft:dark_oak_leaves": {
- "protocol_id": 181
+ "protocol_id": 182
},
"minecraft:dark_oak_log": {
- "protocol_id": 137
+ "protocol_id": 138
},
"minecraft:dark_oak_planks": {
"protocol_id": 42
},
"minecraft:dark_oak_pressure_plate": {
- "protocol_id": 704
+ "protocol_id": 705
},
"minecraft:dark_oak_sapling": {
"protocol_id": 54
},
"minecraft:dark_oak_sign": {
- "protocol_id": 889
+ "protocol_id": 892
},
"minecraft:dark_oak_slab": {
- "protocol_id": 257
+ "protocol_id": 258
},
"minecraft:dark_oak_stairs": {
- "protocol_id": 388
+ "protocol_id": 389
},
"minecraft:dark_oak_trapdoor": {
- "protocol_id": 736
+ "protocol_id": 737
},
"minecraft:dark_oak_wood": {
- "protocol_id": 171
+ "protocol_id": 172
},
"minecraft:dark_prismarine": {
- "protocol_id": 504
+ "protocol_id": 505
},
"minecraft:dark_prismarine_slab": {
- "protocol_id": 279
+ "protocol_id": 280
},
"minecraft:dark_prismarine_stairs": {
- "protocol_id": 507
+ "protocol_id": 508
},
"minecraft:daylight_detector": {
- "protocol_id": 673
+ "protocol_id": 674
},
"minecraft:dead_brain_coral": {
- "protocol_id": 603
- },
- "minecraft:dead_brain_coral_block": {
- "protocol_id": 589
- },
- "minecraft:dead_brain_coral_fan": {
- "protocol_id": 614
- },
- "minecraft:dead_bubble_coral": {
"protocol_id": 604
},
- "minecraft:dead_bubble_coral_block": {
+ "minecraft:dead_brain_coral_block": {
"protocol_id": 590
},
- "minecraft:dead_bubble_coral_fan": {
+ "minecraft:dead_brain_coral_fan": {
"protocol_id": 615
},
- "minecraft:dead_bush": {
- "protocol_id": 198
- },
- "minecraft:dead_fire_coral": {
+ "minecraft:dead_bubble_coral": {
"protocol_id": 605
},
- "minecraft:dead_fire_coral_block": {
+ "minecraft:dead_bubble_coral_block": {
"protocol_id": 591
},
- "minecraft:dead_fire_coral_fan": {
+ "minecraft:dead_bubble_coral_fan": {
"protocol_id": 616
},
- "minecraft:dead_horn_coral": {
+ "minecraft:dead_bush": {
+ "protocol_id": 199
+ },
+ "minecraft:dead_fire_coral": {
"protocol_id": 606
},
- "minecraft:dead_horn_coral_block": {
+ "minecraft:dead_fire_coral_block": {
"protocol_id": 592
},
- "minecraft:dead_horn_coral_fan": {
+ "minecraft:dead_fire_coral_fan": {
"protocol_id": 617
},
- "minecraft:dead_tube_coral": {
+ "minecraft:dead_horn_coral": {
"protocol_id": 607
},
+ "minecraft:dead_horn_coral_block": {
+ "protocol_id": 593
+ },
+ "minecraft:dead_horn_coral_fan": {
+ "protocol_id": 618
+ },
+ "minecraft:dead_tube_coral": {
+ "protocol_id": 608
+ },
"minecraft:dead_tube_coral_block": {
- "protocol_id": 588
+ "protocol_id": 589
},
"minecraft:dead_tube_coral_fan": {
- "protocol_id": 613
+ "protocol_id": 614
},
"minecraft:debug_stick": {
- "protocol_id": 1160
+ "protocol_id": 1167
},
"minecraft:decorated_pot": {
- "protocol_id": 287
+ "protocol_id": 288
},
"minecraft:deepslate": {
"protocol_id": 8
},
"minecraft:deepslate_brick_slab": {
- "protocol_id": 653
+ "protocol_id": 654
},
"minecraft:deepslate_brick_stairs": {
- "protocol_id": 636
+ "protocol_id": 637
},
"minecraft:deepslate_brick_wall": {
- "protocol_id": 416
+ "protocol_id": 417
},
"minecraft:deepslate_bricks": {
- "protocol_id": 345
+ "protocol_id": 346
},
"minecraft:deepslate_coal_ore": {
"protocol_id": 63
@@ -6865,412 +7097,421 @@
"protocol_id": 71
},
"minecraft:deepslate_tile_slab": {
- "protocol_id": 654
+ "protocol_id": 655
},
"minecraft:deepslate_tile_stairs": {
- "protocol_id": 637
+ "protocol_id": 638
},
"minecraft:deepslate_tile_wall": {
- "protocol_id": 417
+ "protocol_id": 418
},
"minecraft:deepslate_tiles": {
- "protocol_id": 347
+ "protocol_id": 348
},
"minecraft:detector_rail": {
- "protocol_id": 761
+ "protocol_id": 762
},
"minecraft:diamond": {
- "protocol_id": 801
+ "protocol_id": 804
},
"minecraft:diamond_axe": {
- "protocol_id": 837
+ "protocol_id": 840
},
"minecraft:diamond_block": {
- "protocol_id": 90
+ "protocol_id": 91
},
"minecraft:diamond_boots": {
- "protocol_id": 868
+ "protocol_id": 871
},
"minecraft:diamond_chestplate": {
- "protocol_id": 866
+ "protocol_id": 869
},
"minecraft:diamond_helmet": {
- "protocol_id": 865
+ "protocol_id": 868
},
"minecraft:diamond_hoe": {
- "protocol_id": 838
+ "protocol_id": 841
},
"minecraft:diamond_horse_armor": {
- "protocol_id": 1119
+ "protocol_id": 1126
},
"minecraft:diamond_leggings": {
- "protocol_id": 867
+ "protocol_id": 870
},
"minecraft:diamond_ore": {
"protocol_id": 76
},
"minecraft:diamond_pickaxe": {
- "protocol_id": 836
+ "protocol_id": 839
},
"minecraft:diamond_shovel": {
- "protocol_id": 835
+ "protocol_id": 838
},
"minecraft:diamond_sword": {
- "protocol_id": 834
+ "protocol_id": 837
},
"minecraft:diorite": {
"protocol_id": 4
},
"minecraft:diorite_slab": {
- "protocol_id": 650
+ "protocol_id": 651
},
"minecraft:diorite_stairs": {
- "protocol_id": 633
+ "protocol_id": 634
},
"minecraft:diorite_wall": {
- "protocol_id": 410
+ "protocol_id": 411
},
"minecraft:dirt": {
"protocol_id": 28
},
"minecraft:dirt_path": {
- "protocol_id": 463
+ "protocol_id": 464
},
"minecraft:disc_fragment_5": {
- "protocol_id": 1177
+ "protocol_id": 1184
},
"minecraft:dispenser": {
- "protocol_id": 667
+ "protocol_id": 668
},
"minecraft:dolphin_spawn_egg": {
- "protocol_id": 1018
+ "protocol_id": 1023
},
"minecraft:donkey_spawn_egg": {
- "protocol_id": 1019
+ "protocol_id": 1024
},
"minecraft:dragon_breath": {
- "protocol_id": 1150
+ "protocol_id": 1157
},
"minecraft:dragon_egg": {
- "protocol_id": 378
+ "protocol_id": 379
},
"minecraft:dragon_head": {
- "protocol_id": 1101
+ "protocol_id": 1108
},
"minecraft:dried_kelp": {
- "protocol_id": 982
+ "protocol_id": 985
},
"minecraft:dried_kelp_block": {
- "protocol_id": 920
+ "protocol_id": 923
},
"minecraft:dripstone_block": {
"protocol_id": 26
},
"minecraft:dropper": {
- "protocol_id": 668
+ "protocol_id": 669
},
"minecraft:drowned_spawn_egg": {
- "protocol_id": 1020
+ "protocol_id": 1025
},
"minecraft:dune_armor_trim_smithing_template": {
- "protocol_id": 1259
+ "protocol_id": 1268
},
"minecraft:echo_shard": {
- "protocol_id": 1255
+ "protocol_id": 1264
},
"minecraft:egg": {
- "protocol_id": 924
+ "protocol_id": 927
},
"minecraft:elder_guardian_spawn_egg": {
- "protocol_id": 1021
+ "protocol_id": 1026
},
"minecraft:elytra": {
- "protocol_id": 772
+ "protocol_id": 773
},
"minecraft:emerald": {
- "protocol_id": 802
+ "protocol_id": 805
},
"minecraft:emerald_block": {
- "protocol_id": 381
+ "protocol_id": 382
},
"minecraft:emerald_ore": {
"protocol_id": 72
},
"minecraft:enchanted_book": {
- "protocol_id": 1107
+ "protocol_id": 1114
},
"minecraft:enchanted_golden_apple": {
- "protocol_id": 882
+ "protocol_id": 885
},
"minecraft:enchanting_table": {
- "protocol_id": 374
- },
- "minecraft:end_crystal": {
- "protocol_id": 1142
- },
- "minecraft:end_portal_frame": {
"protocol_id": 375
},
- "minecraft:end_rod": {
- "protocol_id": 291
+ "minecraft:end_crystal": {
+ "protocol_id": 1149
},
- "minecraft:end_stone": {
+ "minecraft:end_portal_frame": {
"protocol_id": 376
},
- "minecraft:end_stone_brick_slab": {
- "protocol_id": 643
+ "minecraft:end_rod": {
+ "protocol_id": 292
},
- "minecraft:end_stone_brick_stairs": {
- "protocol_id": 625
- },
- "minecraft:end_stone_brick_wall": {
- "protocol_id": 409
- },
- "minecraft:end_stone_bricks": {
+ "minecraft:end_stone": {
"protocol_id": 377
},
+ "minecraft:end_stone_brick_slab": {
+ "protocol_id": 644
+ },
+ "minecraft:end_stone_brick_stairs": {
+ "protocol_id": 626
+ },
+ "minecraft:end_stone_brick_wall": {
+ "protocol_id": 410
+ },
+ "minecraft:end_stone_bricks": {
+ "protocol_id": 378
+ },
"minecraft:ender_chest": {
- "protocol_id": 380
+ "protocol_id": 381
},
"minecraft:ender_dragon_spawn_egg": {
- "protocol_id": 1022
- },
- "minecraft:ender_eye": {
- "protocol_id": 1003
- },
- "minecraft:ender_pearl": {
- "protocol_id": 990
- },
- "minecraft:enderman_spawn_egg": {
- "protocol_id": 1023
- },
- "minecraft:endermite_spawn_egg": {
- "protocol_id": 1024
- },
- "minecraft:evoker_spawn_egg": {
- "protocol_id": 1025
- },
- "minecraft:experience_bottle": {
- "protocol_id": 1083
- },
- "minecraft:explorer_pottery_sherd": {
- "protocol_id": 1281
- },
- "minecraft:exposed_chiseled_copper": {
- "protocol_id": 96
- },
- "minecraft:exposed_copper": {
- "protocol_id": 92
- },
- "minecraft:exposed_copper_bulb": {
- "protocol_id": 1303
- },
- "minecraft:exposed_copper_door": {
- "protocol_id": 722
- },
- "minecraft:exposed_copper_grate": {
- "protocol_id": 1295
- },
- "minecraft:exposed_copper_trapdoor": {
- "protocol_id": 742
- },
- "minecraft:exposed_cut_copper": {
- "protocol_id": 100
- },
- "minecraft:exposed_cut_copper_slab": {
- "protocol_id": 108
- },
- "minecraft:exposed_cut_copper_stairs": {
- "protocol_id": 104
- },
- "minecraft:eye_armor_trim_smithing_template": {
- "protocol_id": 1263
- },
- "minecraft:farmland": {
- "protocol_id": 300
- },
- "minecraft:feather": {
- "protocol_id": 848
- },
- "minecraft:fermented_spider_eye": {
- "protocol_id": 998
- },
- "minecraft:fern": {
- "protocol_id": 195
- },
- "minecraft:filled_map": {
- "protocol_id": 979
- },
- "minecraft:fire_charge": {
- "protocol_id": 1084
- },
- "minecraft:fire_coral": {
- "protocol_id": 601
- },
- "minecraft:fire_coral_block": {
- "protocol_id": 596
- },
- "minecraft:fire_coral_fan": {
- "protocol_id": 611
- },
- "minecraft:firework_rocket": {
- "protocol_id": 1105
- },
- "minecraft:firework_star": {
- "protocol_id": 1106
- },
- "minecraft:fishing_rod": {
- "protocol_id": 928
- },
- "minecraft:fletching_table": {
- "protocol_id": 1197
- },
- "minecraft:flint": {
- "protocol_id": 877
- },
- "minecraft:flint_and_steel": {
- "protocol_id": 795
- },
- "minecraft:flower_banner_pattern": {
- "protocol_id": 1185
- },
- "minecraft:flower_pot": {
- "protocol_id": 1089
- },
- "minecraft:flowering_azalea": {
- "protocol_id": 197
- },
- "minecraft:flowering_azalea_leaves": {
- "protocol_id": 184
- },
- "minecraft:fox_spawn_egg": {
- "protocol_id": 1026
- },
- "minecraft:friend_pottery_sherd": {
- "protocol_id": 1282
- },
- "minecraft:frog_spawn_egg": {
"protocol_id": 1027
},
- "minecraft:frogspawn": {
- "protocol_id": 1254
+ "minecraft:ender_eye": {
+ "protocol_id": 1006
},
- "minecraft:furnace": {
- "protocol_id": 301
+ "minecraft:ender_pearl": {
+ "protocol_id": 993
},
- "minecraft:furnace_minecart": {
- "protocol_id": 767
- },
- "minecraft:ghast_spawn_egg": {
+ "minecraft:enderman_spawn_egg": {
"protocol_id": 1028
},
- "minecraft:ghast_tear": {
- "protocol_id": 992
- },
- "minecraft:gilded_blackstone": {
- "protocol_id": 1219
- },
- "minecraft:glass": {
- "protocol_id": 187
- },
- "minecraft:glass_bottle": {
- "protocol_id": 996
- },
- "minecraft:glass_pane": {
- "protocol_id": 356
- },
- "minecraft:glistering_melon_slice": {
- "protocol_id": 1004
- },
- "minecraft:globe_banner_pattern": {
- "protocol_id": 1189
- },
- "minecraft:glow_berries": {
- "protocol_id": 1205
- },
- "minecraft:glow_ink_sac": {
- "protocol_id": 939
- },
- "minecraft:glow_item_frame": {
- "protocol_id": 1088
- },
- "minecraft:glow_lichen": {
- "protocol_id": 359
- },
- "minecraft:glow_squid_spawn_egg": {
+ "minecraft:endermite_spawn_egg": {
"protocol_id": 1029
},
- "minecraft:glowstone": {
- "protocol_id": 331
- },
- "minecraft:glowstone_dust": {
- "protocol_id": 931
- },
- "minecraft:goat_horn": {
- "protocol_id": 1191
- },
- "minecraft:goat_spawn_egg": {
+ "minecraft:evoker_spawn_egg": {
"protocol_id": 1030
},
+ "minecraft:experience_bottle": {
+ "protocol_id": 1088
+ },
+ "minecraft:explorer_pottery_sherd": {
+ "protocol_id": 1292
+ },
+ "minecraft:exposed_chiseled_copper": {
+ "protocol_id": 97
+ },
+ "minecraft:exposed_copper": {
+ "protocol_id": 93
+ },
+ "minecraft:exposed_copper_bulb": {
+ "protocol_id": 1317
+ },
+ "minecraft:exposed_copper_door": {
+ "protocol_id": 723
+ },
+ "minecraft:exposed_copper_grate": {
+ "protocol_id": 1309
+ },
+ "minecraft:exposed_copper_trapdoor": {
+ "protocol_id": 743
+ },
+ "minecraft:exposed_cut_copper": {
+ "protocol_id": 101
+ },
+ "minecraft:exposed_cut_copper_slab": {
+ "protocol_id": 109
+ },
+ "minecraft:exposed_cut_copper_stairs": {
+ "protocol_id": 105
+ },
+ "minecraft:eye_armor_trim_smithing_template": {
+ "protocol_id": 1272
+ },
+ "minecraft:farmland": {
+ "protocol_id": 301
+ },
+ "minecraft:feather": {
+ "protocol_id": 851
+ },
+ "minecraft:fermented_spider_eye": {
+ "protocol_id": 1001
+ },
+ "minecraft:fern": {
+ "protocol_id": 196
+ },
+ "minecraft:filled_map": {
+ "protocol_id": 982
+ },
+ "minecraft:fire_charge": {
+ "protocol_id": 1089
+ },
+ "minecraft:fire_coral": {
+ "protocol_id": 602
+ },
+ "minecraft:fire_coral_block": {
+ "protocol_id": 597
+ },
+ "minecraft:fire_coral_fan": {
+ "protocol_id": 612
+ },
+ "minecraft:firework_rocket": {
+ "protocol_id": 1112
+ },
+ "minecraft:firework_star": {
+ "protocol_id": 1113
+ },
+ "minecraft:fishing_rod": {
+ "protocol_id": 931
+ },
+ "minecraft:fletching_table": {
+ "protocol_id": 1206
+ },
+ "minecraft:flint": {
+ "protocol_id": 880
+ },
+ "minecraft:flint_and_steel": {
+ "protocol_id": 798
+ },
+ "minecraft:flow_armor_trim_smithing_template": {
+ "protocol_id": 1283
+ },
+ "minecraft:flow_banner_pattern": {
+ "protocol_id": 1198
+ },
+ "minecraft:flow_pottery_sherd": {
+ "protocol_id": 1293
+ },
+ "minecraft:flower_banner_pattern": {
+ "protocol_id": 1192
+ },
+ "minecraft:flower_pot": {
+ "protocol_id": 1096
+ },
+ "minecraft:flowering_azalea": {
+ "protocol_id": 198
+ },
+ "minecraft:flowering_azalea_leaves": {
+ "protocol_id": 185
+ },
+ "minecraft:fox_spawn_egg": {
+ "protocol_id": 1031
+ },
+ "minecraft:friend_pottery_sherd": {
+ "protocol_id": 1294
+ },
+ "minecraft:frog_spawn_egg": {
+ "protocol_id": 1032
+ },
+ "minecraft:frogspawn": {
+ "protocol_id": 1263
+ },
+ "minecraft:furnace": {
+ "protocol_id": 302
+ },
+ "minecraft:furnace_minecart": {
+ "protocol_id": 768
+ },
+ "minecraft:ghast_spawn_egg": {
+ "protocol_id": 1033
+ },
+ "minecraft:ghast_tear": {
+ "protocol_id": 995
+ },
+ "minecraft:gilded_blackstone": {
+ "protocol_id": 1228
+ },
+ "minecraft:glass": {
+ "protocol_id": 188
+ },
+ "minecraft:glass_bottle": {
+ "protocol_id": 999
+ },
+ "minecraft:glass_pane": {
+ "protocol_id": 357
+ },
+ "minecraft:glistering_melon_slice": {
+ "protocol_id": 1007
+ },
+ "minecraft:globe_banner_pattern": {
+ "protocol_id": 1196
+ },
+ "minecraft:glow_berries": {
+ "protocol_id": 1214
+ },
+ "minecraft:glow_ink_sac": {
+ "protocol_id": 942
+ },
+ "minecraft:glow_item_frame": {
+ "protocol_id": 1095
+ },
+ "minecraft:glow_lichen": {
+ "protocol_id": 360
+ },
+ "minecraft:glow_squid_spawn_egg": {
+ "protocol_id": 1034
+ },
+ "minecraft:glowstone": {
+ "protocol_id": 332
+ },
+ "minecraft:glowstone_dust": {
+ "protocol_id": 934
+ },
+ "minecraft:goat_horn": {
+ "protocol_id": 1200
+ },
+ "minecraft:goat_spawn_egg": {
+ "protocol_id": 1035
+ },
"minecraft:gold_block": {
- "protocol_id": 89
+ "protocol_id": 90
},
"minecraft:gold_ingot": {
- "protocol_id": 811
+ "protocol_id": 814
},
"minecraft:gold_nugget": {
- "protocol_id": 993
+ "protocol_id": 996
},
"minecraft:gold_ore": {
"protocol_id": 68
},
"minecraft:golden_apple": {
- "protocol_id": 881
+ "protocol_id": 884
},
"minecraft:golden_axe": {
- "protocol_id": 827
+ "protocol_id": 830
},
"minecraft:golden_boots": {
- "protocol_id": 872
+ "protocol_id": 875
},
"minecraft:golden_carrot": {
- "protocol_id": 1095
+ "protocol_id": 1102
},
"minecraft:golden_chestplate": {
- "protocol_id": 870
+ "protocol_id": 873
},
"minecraft:golden_helmet": {
- "protocol_id": 869
+ "protocol_id": 872
},
"minecraft:golden_hoe": {
- "protocol_id": 828
+ "protocol_id": 831
},
"minecraft:golden_horse_armor": {
- "protocol_id": 1118
+ "protocol_id": 1125
},
"minecraft:golden_leggings": {
- "protocol_id": 871
+ "protocol_id": 874
},
"minecraft:golden_pickaxe": {
- "protocol_id": 826
+ "protocol_id": 829
},
"minecraft:golden_shovel": {
- "protocol_id": 825
+ "protocol_id": 828
},
"minecraft:golden_sword": {
- "protocol_id": 824
+ "protocol_id": 827
},
"minecraft:granite": {
"protocol_id": 2
},
"minecraft:granite_slab": {
- "protocol_id": 646
+ "protocol_id": 647
},
"minecraft:granite_stairs": {
- "protocol_id": 629
+ "protocol_id": 630
},
"minecraft:granite_wall": {
- "protocol_id": 402
+ "protocol_id": 403
},
"minecraft:grass_block": {
"protocol_id": 27
@@ -7279,769 +7520,781 @@
"protocol_id": 61
},
"minecraft:gray_banner": {
- "protocol_id": 1133
+ "protocol_id": 1140
},
"minecraft:gray_bed": {
- "protocol_id": 968
+ "protocol_id": 971
},
"minecraft:gray_candle": {
- "protocol_id": 1237
+ "protocol_id": 1246
},
"minecraft:gray_carpet": {
- "protocol_id": 452
+ "protocol_id": 453
},
"minecraft:gray_concrete": {
- "protocol_id": 561
+ "protocol_id": 562
},
"minecraft:gray_concrete_powder": {
- "protocol_id": 577
+ "protocol_id": 578
},
"minecraft:gray_dye": {
- "protocol_id": 948
+ "protocol_id": 951
},
"minecraft:gray_glazed_terracotta": {
- "protocol_id": 545
+ "protocol_id": 546
},
"minecraft:gray_shulker_box": {
- "protocol_id": 529
+ "protocol_id": 530
},
"minecraft:gray_stained_glass": {
- "protocol_id": 477
+ "protocol_id": 478
},
"minecraft:gray_stained_glass_pane": {
- "protocol_id": 493
+ "protocol_id": 494
},
"minecraft:gray_terracotta": {
- "protocol_id": 433
+ "protocol_id": 434
},
"minecraft:gray_wool": {
- "protocol_id": 208
+ "protocol_id": 209
},
"minecraft:green_banner": {
- "protocol_id": 1139
+ "protocol_id": 1146
},
"minecraft:green_bed": {
- "protocol_id": 974
+ "protocol_id": 977
},
"minecraft:green_candle": {
- "protocol_id": 1243
+ "protocol_id": 1252
},
"minecraft:green_carpet": {
- "protocol_id": 458
+ "protocol_id": 459
},
"minecraft:green_concrete": {
- "protocol_id": 567
+ "protocol_id": 568
},
"minecraft:green_concrete_powder": {
- "protocol_id": 583
+ "protocol_id": 584
},
"minecraft:green_dye": {
- "protocol_id": 954
+ "protocol_id": 957
},
"minecraft:green_glazed_terracotta": {
- "protocol_id": 551
+ "protocol_id": 552
},
"minecraft:green_shulker_box": {
- "protocol_id": 535
+ "protocol_id": 536
},
"minecraft:green_stained_glass": {
- "protocol_id": 483
+ "protocol_id": 484
},
"minecraft:green_stained_glass_pane": {
- "protocol_id": 499
+ "protocol_id": 500
},
"minecraft:green_terracotta": {
- "protocol_id": 439
+ "protocol_id": 440
},
"minecraft:green_wool": {
- "protocol_id": 214
+ "protocol_id": 215
},
"minecraft:grindstone": {
- "protocol_id": 1198
+ "protocol_id": 1207
},
"minecraft:guardian_spawn_egg": {
- "protocol_id": 1031
+ "protocol_id": 1036
},
"minecraft:gunpowder": {
- "protocol_id": 849
+ "protocol_id": 852
+ },
+ "minecraft:guster_banner_pattern": {
+ "protocol_id": 1199
+ },
+ "minecraft:guster_pottery_sherd": {
+ "protocol_id": 1295
},
"minecraft:hanging_roots": {
- "protocol_id": 247
+ "protocol_id": 248
},
"minecraft:hay_block": {
- "protocol_id": 444
+ "protocol_id": 445
},
"minecraft:heart_of_the_sea": {
- "protocol_id": 1181
+ "protocol_id": 1188
},
"minecraft:heart_pottery_sherd": {
- "protocol_id": 1283
+ "protocol_id": 1296
},
"minecraft:heartbreak_pottery_sherd": {
- "protocol_id": 1284
+ "protocol_id": 1297
+ },
+ "minecraft:heavy_core": {
+ "protocol_id": 85
},
"minecraft:heavy_weighted_pressure_plate": {
- "protocol_id": 697
+ "protocol_id": 698
},
"minecraft:hoglin_spawn_egg": {
- "protocol_id": 1032
+ "protocol_id": 1037
},
"minecraft:honey_block": {
- "protocol_id": 664
+ "protocol_id": 665
},
"minecraft:honey_bottle": {
- "protocol_id": 1212
+ "protocol_id": 1221
},
"minecraft:honeycomb": {
- "protocol_id": 1209
+ "protocol_id": 1218
},
"minecraft:honeycomb_block": {
- "protocol_id": 1213
+ "protocol_id": 1222
},
"minecraft:hopper": {
- "protocol_id": 666
+ "protocol_id": 667
},
"minecraft:hopper_minecart": {
- "protocol_id": 769
+ "protocol_id": 770
},
"minecraft:horn_coral": {
- "protocol_id": 602
+ "protocol_id": 603
},
"minecraft:horn_coral_block": {
- "protocol_id": 597
+ "protocol_id": 598
},
"minecraft:horn_coral_fan": {
- "protocol_id": 612
+ "protocol_id": 613
},
"minecraft:horse_spawn_egg": {
- "protocol_id": 1033
+ "protocol_id": 1038
},
"minecraft:host_armor_trim_smithing_template": {
- "protocol_id": 1273
+ "protocol_id": 1282
},
"minecraft:howl_pottery_sherd": {
- "protocol_id": 1285
+ "protocol_id": 1298
},
"minecraft:husk_spawn_egg": {
- "protocol_id": 1034
+ "protocol_id": 1039
},
"minecraft:ice": {
- "protocol_id": 305
+ "protocol_id": 306
},
"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": 338
},
- "minecraft:infested_mossy_stone_bricks": {
- "protocol_id": 335
- },
- "minecraft:infested_stone": {
- "protocol_id": 332
- },
- "minecraft:infested_stone_bricks": {
+ "minecraft:infested_cobblestone": {
"protocol_id": 334
},
+ "minecraft:infested_cracked_stone_bricks": {
+ "protocol_id": 337
+ },
+ "minecraft:infested_deepslate": {
+ "protocol_id": 339
+ },
+ "minecraft:infested_mossy_stone_bricks": {
+ "protocol_id": 336
+ },
+ "minecraft:infested_stone": {
+ "protocol_id": 333
+ },
+ "minecraft:infested_stone_bricks": {
+ "protocol_id": 335
+ },
"minecraft:ink_sac": {
- "protocol_id": 938
+ "protocol_id": 941
},
"minecraft:iron_axe": {
- "protocol_id": 832
+ "protocol_id": 835
},
"minecraft:iron_bars": {
- "protocol_id": 354
+ "protocol_id": 355
},
"minecraft:iron_block": {
- "protocol_id": 87
+ "protocol_id": 88
},
"minecraft:iron_boots": {
- "protocol_id": 864
+ "protocol_id": 867
},
"minecraft:iron_chestplate": {
- "protocol_id": 862
+ "protocol_id": 865
},
"minecraft:iron_door": {
- "protocol_id": 709
+ "protocol_id": 710
},
"minecraft:iron_golem_spawn_egg": {
- "protocol_id": 1035
+ "protocol_id": 1040
},
"minecraft:iron_helmet": {
- "protocol_id": 861
+ "protocol_id": 864
},
"minecraft:iron_hoe": {
- "protocol_id": 833
+ "protocol_id": 836
},
"minecraft:iron_horse_armor": {
- "protocol_id": 1117
+ "protocol_id": 1124
},
"minecraft:iron_ingot": {
- "protocol_id": 807
+ "protocol_id": 810
},
"minecraft:iron_leggings": {
- "protocol_id": 863
+ "protocol_id": 866
},
"minecraft:iron_nugget": {
- "protocol_id": 1158
+ "protocol_id": 1165
},
"minecraft:iron_ore": {
"protocol_id": 64
},
"minecraft:iron_pickaxe": {
- "protocol_id": 831
+ "protocol_id": 834
},
"minecraft:iron_shovel": {
- "protocol_id": 830
+ "protocol_id": 833
},
"minecraft:iron_sword": {
- "protocol_id": 829
+ "protocol_id": 832
},
"minecraft:iron_trapdoor": {
- "protocol_id": 729
+ "protocol_id": 730
},
"minecraft:item_frame": {
- "protocol_id": 1087
+ "protocol_id": 1094
},
"minecraft:jack_o_lantern": {
- "protocol_id": 323
+ "protocol_id": 324
},
"minecraft:jigsaw": {
- "protocol_id": 792
+ "protocol_id": 793
},
"minecraft:jukebox": {
- "protocol_id": 309
+ "protocol_id": 310
},
"minecraft:jungle_boat": {
- "protocol_id": 779
- },
- "minecraft:jungle_button": {
- "protocol_id": 686
- },
- "minecraft:jungle_chest_boat": {
"protocol_id": 780
},
+ "minecraft:jungle_button": {
+ "protocol_id": 687
+ },
+ "minecraft:jungle_chest_boat": {
+ "protocol_id": 781
+ },
"minecraft:jungle_door": {
- "protocol_id": 713
+ "protocol_id": 714
},
"minecraft:jungle_fence": {
- "protocol_id": 313
+ "protocol_id": 314
},
"minecraft:jungle_fence_gate": {
- "protocol_id": 752
+ "protocol_id": 753
},
"minecraft:jungle_hanging_sign": {
- "protocol_id": 897
+ "protocol_id": 900
},
"minecraft:jungle_leaves": {
- "protocol_id": 178
+ "protocol_id": 179
},
"minecraft:jungle_log": {
- "protocol_id": 134
+ "protocol_id": 135
},
"minecraft:jungle_planks": {
"protocol_id": 39
},
"minecraft:jungle_pressure_plate": {
- "protocol_id": 701
+ "protocol_id": 702
},
"minecraft:jungle_sapling": {
"protocol_id": 51
},
"minecraft:jungle_sign": {
- "protocol_id": 886
+ "protocol_id": 889
},
"minecraft:jungle_slab": {
- "protocol_id": 254
+ "protocol_id": 255
},
"minecraft:jungle_stairs": {
- "protocol_id": 385
+ "protocol_id": 386
},
"minecraft:jungle_trapdoor": {
- "protocol_id": 733
+ "protocol_id": 734
},
"minecraft:jungle_wood": {
- "protocol_id": 168
+ "protocol_id": 169
},
"minecraft:kelp": {
- "protocol_id": 243
+ "protocol_id": 244
},
"minecraft:knowledge_book": {
- "protocol_id": 1159
+ "protocol_id": 1166
},
"minecraft:ladder": {
- "protocol_id": 302
+ "protocol_id": 303
},
"minecraft:lantern": {
- "protocol_id": 1202
+ "protocol_id": 1211
},
"minecraft:lapis_block": {
- "protocol_id": 189
+ "protocol_id": 190
},
"minecraft:lapis_lazuli": {
- "protocol_id": 803
+ "protocol_id": 806
},
"minecraft:lapis_ore": {
"protocol_id": 74
},
"minecraft:large_amethyst_bud": {
- "protocol_id": 1248
+ "protocol_id": 1257
},
"minecraft:large_fern": {
- "protocol_id": 469
+ "protocol_id": 470
},
"minecraft:lava_bucket": {
- "protocol_id": 907
- },
- "minecraft:lead": {
- "protocol_id": 1121
- },
- "minecraft:leather": {
"protocol_id": 910
},
- "minecraft:leather_boots": {
- "protocol_id": 856
- },
- "minecraft:leather_chestplate": {
- "protocol_id": 854
- },
- "minecraft:leather_helmet": {
- "protocol_id": 853
- },
- "minecraft:leather_horse_armor": {
- "protocol_id": 1120
- },
- "minecraft:leather_leggings": {
- "protocol_id": 855
- },
- "minecraft:lectern": {
- "protocol_id": 669
- },
- "minecraft:lever": {
- "protocol_id": 671
- },
- "minecraft:light": {
- "protocol_id": 443
- },
- "minecraft:light_blue_banner": {
- "protocol_id": 1129
- },
- "minecraft:light_blue_bed": {
- "protocol_id": 964
- },
- "minecraft:light_blue_candle": {
- "protocol_id": 1233
- },
- "minecraft:light_blue_carpet": {
- "protocol_id": 448
- },
- "minecraft:light_blue_concrete": {
- "protocol_id": 557
- },
- "minecraft:light_blue_concrete_powder": {
- "protocol_id": 573
- },
- "minecraft:light_blue_dye": {
- "protocol_id": 944
- },
- "minecraft:light_blue_glazed_terracotta": {
- "protocol_id": 541
- },
- "minecraft:light_blue_shulker_box": {
- "protocol_id": 525
- },
- "minecraft:light_blue_stained_glass": {
- "protocol_id": 473
- },
- "minecraft:light_blue_stained_glass_pane": {
- "protocol_id": 489
- },
- "minecraft:light_blue_terracotta": {
- "protocol_id": 429
- },
- "minecraft:light_blue_wool": {
- "protocol_id": 204
- },
- "minecraft:light_gray_banner": {
- "protocol_id": 1134
- },
- "minecraft:light_gray_bed": {
- "protocol_id": 969
- },
- "minecraft:light_gray_candle": {
- "protocol_id": 1238
- },
- "minecraft:light_gray_carpet": {
- "protocol_id": 453
- },
- "minecraft:light_gray_concrete": {
- "protocol_id": 562
- },
- "minecraft:light_gray_concrete_powder": {
- "protocol_id": 578
- },
- "minecraft:light_gray_dye": {
- "protocol_id": 949
- },
- "minecraft:light_gray_glazed_terracotta": {
- "protocol_id": 546
- },
- "minecraft:light_gray_shulker_box": {
- "protocol_id": 530
- },
- "minecraft:light_gray_stained_glass": {
- "protocol_id": 478
- },
- "minecraft:light_gray_stained_glass_pane": {
- "protocol_id": 494
- },
- "minecraft:light_gray_terracotta": {
- "protocol_id": 434
- },
- "minecraft:light_gray_wool": {
- "protocol_id": 209
- },
- "minecraft:light_weighted_pressure_plate": {
- "protocol_id": 696
- },
- "minecraft:lightning_rod": {
- "protocol_id": 672
- },
- "minecraft:lilac": {
- "protocol_id": 465
- },
- "minecraft:lily_of_the_valley": {
- "protocol_id": 228
- },
- "minecraft:lily_pad": {
- "protocol_id": 364
- },
- "minecraft:lime_banner": {
- "protocol_id": 1131
- },
- "minecraft:lime_bed": {
- "protocol_id": 966
- },
- "minecraft:lime_candle": {
- "protocol_id": 1235
- },
- "minecraft:lime_carpet": {
- "protocol_id": 450
- },
- "minecraft:lime_concrete": {
- "protocol_id": 559
- },
- "minecraft:lime_concrete_powder": {
- "protocol_id": 575
- },
- "minecraft:lime_dye": {
- "protocol_id": 946
- },
- "minecraft:lime_glazed_terracotta": {
- "protocol_id": 543
- },
- "minecraft:lime_shulker_box": {
- "protocol_id": 527
- },
- "minecraft:lime_stained_glass": {
- "protocol_id": 475
- },
- "minecraft:lime_stained_glass_pane": {
- "protocol_id": 491
- },
- "minecraft:lime_terracotta": {
- "protocol_id": 431
- },
- "minecraft:lime_wool": {
- "protocol_id": 206
- },
- "minecraft:lingering_potion": {
- "protocol_id": 1154
- },
- "minecraft:llama_spawn_egg": {
- "protocol_id": 1036
- },
- "minecraft:lodestone": {
- "protocol_id": 1214
- },
- "minecraft:loom": {
- "protocol_id": 1184
- },
- "minecraft:magenta_banner": {
+ "minecraft:lead": {
"protocol_id": 1128
},
+ "minecraft:leather": {
+ "protocol_id": 913
+ },
+ "minecraft:leather_boots": {
+ "protocol_id": 859
+ },
+ "minecraft:leather_chestplate": {
+ "protocol_id": 857
+ },
+ "minecraft:leather_helmet": {
+ "protocol_id": 856
+ },
+ "minecraft:leather_horse_armor": {
+ "protocol_id": 1127
+ },
+ "minecraft:leather_leggings": {
+ "protocol_id": 858
+ },
+ "minecraft:lectern": {
+ "protocol_id": 670
+ },
+ "minecraft:lever": {
+ "protocol_id": 672
+ },
+ "minecraft:light": {
+ "protocol_id": 444
+ },
+ "minecraft:light_blue_banner": {
+ "protocol_id": 1136
+ },
+ "minecraft:light_blue_bed": {
+ "protocol_id": 967
+ },
+ "minecraft:light_blue_candle": {
+ "protocol_id": 1242
+ },
+ "minecraft:light_blue_carpet": {
+ "protocol_id": 449
+ },
+ "minecraft:light_blue_concrete": {
+ "protocol_id": 558
+ },
+ "minecraft:light_blue_concrete_powder": {
+ "protocol_id": 574
+ },
+ "minecraft:light_blue_dye": {
+ "protocol_id": 947
+ },
+ "minecraft:light_blue_glazed_terracotta": {
+ "protocol_id": 542
+ },
+ "minecraft:light_blue_shulker_box": {
+ "protocol_id": 526
+ },
+ "minecraft:light_blue_stained_glass": {
+ "protocol_id": 474
+ },
+ "minecraft:light_blue_stained_glass_pane": {
+ "protocol_id": 490
+ },
+ "minecraft:light_blue_terracotta": {
+ "protocol_id": 430
+ },
+ "minecraft:light_blue_wool": {
+ "protocol_id": 205
+ },
+ "minecraft:light_gray_banner": {
+ "protocol_id": 1141
+ },
+ "minecraft:light_gray_bed": {
+ "protocol_id": 972
+ },
+ "minecraft:light_gray_candle": {
+ "protocol_id": 1247
+ },
+ "minecraft:light_gray_carpet": {
+ "protocol_id": 454
+ },
+ "minecraft:light_gray_concrete": {
+ "protocol_id": 563
+ },
+ "minecraft:light_gray_concrete_powder": {
+ "protocol_id": 579
+ },
+ "minecraft:light_gray_dye": {
+ "protocol_id": 952
+ },
+ "minecraft:light_gray_glazed_terracotta": {
+ "protocol_id": 547
+ },
+ "minecraft:light_gray_shulker_box": {
+ "protocol_id": 531
+ },
+ "minecraft:light_gray_stained_glass": {
+ "protocol_id": 479
+ },
+ "minecraft:light_gray_stained_glass_pane": {
+ "protocol_id": 495
+ },
+ "minecraft:light_gray_terracotta": {
+ "protocol_id": 435
+ },
+ "minecraft:light_gray_wool": {
+ "protocol_id": 210
+ },
+ "minecraft:light_weighted_pressure_plate": {
+ "protocol_id": 697
+ },
+ "minecraft:lightning_rod": {
+ "protocol_id": 673
+ },
+ "minecraft:lilac": {
+ "protocol_id": 466
+ },
+ "minecraft:lily_of_the_valley": {
+ "protocol_id": 229
+ },
+ "minecraft:lily_pad": {
+ "protocol_id": 365
+ },
+ "minecraft:lime_banner": {
+ "protocol_id": 1138
+ },
+ "minecraft:lime_bed": {
+ "protocol_id": 969
+ },
+ "minecraft:lime_candle": {
+ "protocol_id": 1244
+ },
+ "minecraft:lime_carpet": {
+ "protocol_id": 451
+ },
+ "minecraft:lime_concrete": {
+ "protocol_id": 560
+ },
+ "minecraft:lime_concrete_powder": {
+ "protocol_id": 576
+ },
+ "minecraft:lime_dye": {
+ "protocol_id": 949
+ },
+ "minecraft:lime_glazed_terracotta": {
+ "protocol_id": 544
+ },
+ "minecraft:lime_shulker_box": {
+ "protocol_id": 528
+ },
+ "minecraft:lime_stained_glass": {
+ "protocol_id": 476
+ },
+ "minecraft:lime_stained_glass_pane": {
+ "protocol_id": 492
+ },
+ "minecraft:lime_terracotta": {
+ "protocol_id": 432
+ },
+ "minecraft:lime_wool": {
+ "protocol_id": 207
+ },
+ "minecraft:lingering_potion": {
+ "protocol_id": 1161
+ },
+ "minecraft:llama_spawn_egg": {
+ "protocol_id": 1041
+ },
+ "minecraft:lodestone": {
+ "protocol_id": 1223
+ },
+ "minecraft:loom": {
+ "protocol_id": 1191
+ },
+ "minecraft:mace": {
+ "protocol_id": 1093
+ },
+ "minecraft:magenta_banner": {
+ "protocol_id": 1135
+ },
"minecraft:magenta_bed": {
- "protocol_id": 963
+ "protocol_id": 966
},
"minecraft:magenta_candle": {
- "protocol_id": 1232
+ "protocol_id": 1241
},
"minecraft:magenta_carpet": {
- "protocol_id": 447
+ "protocol_id": 448
},
"minecraft:magenta_concrete": {
- "protocol_id": 556
+ "protocol_id": 557
},
"minecraft:magenta_concrete_powder": {
- "protocol_id": 572
+ "protocol_id": 573
},
"minecraft:magenta_dye": {
- "protocol_id": 943
+ "protocol_id": 946
},
"minecraft:magenta_glazed_terracotta": {
- "protocol_id": 540
+ "protocol_id": 541
},
"minecraft:magenta_shulker_box": {
- "protocol_id": 524
+ "protocol_id": 525
},
"minecraft:magenta_stained_glass": {
- "protocol_id": 472
+ "protocol_id": 473
},
"minecraft:magenta_stained_glass_pane": {
- "protocol_id": 488
+ "protocol_id": 489
},
"minecraft:magenta_terracotta": {
- "protocol_id": 428
+ "protocol_id": 429
},
"minecraft:magenta_wool": {
- "protocol_id": 203
+ "protocol_id": 204
},
"minecraft:magma_block": {
- "protocol_id": 515
+ "protocol_id": 516
},
"minecraft:magma_cream": {
- "protocol_id": 1000
+ "protocol_id": 1003
},
"minecraft:magma_cube_spawn_egg": {
- "protocol_id": 1037
+ "protocol_id": 1042
},
"minecraft:mangrove_boat": {
- "protocol_id": 787
- },
- "minecraft:mangrove_button": {
- "protocol_id": 690
- },
- "minecraft:mangrove_chest_boat": {
"protocol_id": 788
},
+ "minecraft:mangrove_button": {
+ "protocol_id": 691
+ },
+ "minecraft:mangrove_chest_boat": {
+ "protocol_id": 789
+ },
"minecraft:mangrove_door": {
- "protocol_id": 717
+ "protocol_id": 718
},
"minecraft:mangrove_fence": {
- "protocol_id": 317
+ "protocol_id": 318
},
"minecraft:mangrove_fence_gate": {
- "protocol_id": 756
+ "protocol_id": 757
},
"minecraft:mangrove_hanging_sign": {
- "protocol_id": 901
+ "protocol_id": 904
},
"minecraft:mangrove_leaves": {
- "protocol_id": 182
+ "protocol_id": 183
},
"minecraft:mangrove_log": {
- "protocol_id": 138
+ "protocol_id": 139
},
"minecraft:mangrove_planks": {
"protocol_id": 43
},
"minecraft:mangrove_pressure_plate": {
- "protocol_id": 705
+ "protocol_id": 706
},
"minecraft:mangrove_propagule": {
"protocol_id": 55
},
"minecraft:mangrove_roots": {
- "protocol_id": 139
+ "protocol_id": 140
},
"minecraft:mangrove_sign": {
- "protocol_id": 890
+ "protocol_id": 893
},
"minecraft:mangrove_slab": {
- "protocol_id": 258
+ "protocol_id": 259
},
"minecraft:mangrove_stairs": {
- "protocol_id": 389
+ "protocol_id": 390
},
"minecraft:mangrove_trapdoor": {
- "protocol_id": 737
+ "protocol_id": 738
},
"minecraft:mangrove_wood": {
- "protocol_id": 172
+ "protocol_id": 173
},
"minecraft:map": {
- "protocol_id": 1094
+ "protocol_id": 1101
},
"minecraft:medium_amethyst_bud": {
- "protocol_id": 1247
+ "protocol_id": 1256
},
"minecraft:melon": {
- "protocol_id": 357
+ "protocol_id": 358
},
"minecraft:melon_seeds": {
- "protocol_id": 984
+ "protocol_id": 987
},
"minecraft:melon_slice": {
- "protocol_id": 981
+ "protocol_id": 984
},
"minecraft:milk_bucket": {
- "protocol_id": 911
+ "protocol_id": 914
},
"minecraft:minecart": {
- "protocol_id": 765
+ "protocol_id": 766
},
"minecraft:miner_pottery_sherd": {
- "protocol_id": 1286
+ "protocol_id": 1299
},
"minecraft:mojang_banner_pattern": {
- "protocol_id": 1188
+ "protocol_id": 1195
},
"minecraft:mooshroom_spawn_egg": {
- "protocol_id": 1038
+ "protocol_id": 1043
},
"minecraft:moss_block": {
- "protocol_id": 246
+ "protocol_id": 247
},
"minecraft:moss_carpet": {
- "protocol_id": 244
+ "protocol_id": 245
},
"minecraft:mossy_cobblestone": {
- "protocol_id": 288
+ "protocol_id": 289
},
"minecraft:mossy_cobblestone_slab": {
- "protocol_id": 642
+ "protocol_id": 643
},
"minecraft:mossy_cobblestone_stairs": {
- "protocol_id": 624
+ "protocol_id": 625
},
"minecraft:mossy_cobblestone_wall": {
- "protocol_id": 397
+ "protocol_id": 398
},
"minecraft:mossy_stone_brick_slab": {
- "protocol_id": 640
+ "protocol_id": 641
},
"minecraft:mossy_stone_brick_stairs": {
- "protocol_id": 622
+ "protocol_id": 623
},
"minecraft:mossy_stone_brick_wall": {
- "protocol_id": 401
+ "protocol_id": 402
},
"minecraft:mossy_stone_bricks": {
- "protocol_id": 340
+ "protocol_id": 341
},
"minecraft:mourner_pottery_sherd": {
- "protocol_id": 1287
+ "protocol_id": 1300
},
"minecraft:mud": {
"protocol_id": 32
},
"minecraft:mud_brick_slab": {
- "protocol_id": 271
- },
- "minecraft:mud_brick_stairs": {
- "protocol_id": 362
- },
- "minecraft:mud_brick_wall": {
- "protocol_id": 404
- },
- "minecraft:mud_bricks": {
- "protocol_id": 344
- },
- "minecraft:muddy_mangrove_roots": {
- "protocol_id": 140
- },
- "minecraft:mule_spawn_egg": {
- "protocol_id": 1039
- },
- "minecraft:mushroom_stem": {
- "protocol_id": 353
- },
- "minecraft:mushroom_stew": {
- "protocol_id": 846
- },
- "minecraft:music_disc_11": {
- "protocol_id": 1171
- },
- "minecraft:music_disc_13": {
- "protocol_id": 1161
- },
- "minecraft:music_disc_5": {
- "protocol_id": 1175
- },
- "minecraft:music_disc_blocks": {
- "protocol_id": 1163
- },
- "minecraft:music_disc_cat": {
- "protocol_id": 1162
- },
- "minecraft:music_disc_chirp": {
- "protocol_id": 1164
- },
- "minecraft:music_disc_far": {
- "protocol_id": 1165
- },
- "minecraft:music_disc_mall": {
- "protocol_id": 1166
- },
- "minecraft:music_disc_mellohi": {
- "protocol_id": 1167
- },
- "minecraft:music_disc_otherside": {
- "protocol_id": 1173
- },
- "minecraft:music_disc_pigstep": {
- "protocol_id": 1176
- },
- "minecraft:music_disc_relic": {
- "protocol_id": 1174
- },
- "minecraft:music_disc_stal": {
- "protocol_id": 1168
- },
- "minecraft:music_disc_strad": {
- "protocol_id": 1169
- },
- "minecraft:music_disc_wait": {
- "protocol_id": 1172
- },
- "minecraft:music_disc_ward": {
- "protocol_id": 1170
- },
- "minecraft:mutton": {
- "protocol_id": 1124
- },
- "minecraft:mycelium": {
- "protocol_id": 363
- },
- "minecraft:name_tag": {
- "protocol_id": 1122
- },
- "minecraft:nautilus_shell": {
- "protocol_id": 1180
- },
- "minecraft:nether_brick": {
- "protocol_id": 1108
- },
- "minecraft:nether_brick_fence": {
- "protocol_id": 368
- },
- "minecraft:nether_brick_slab": {
"protocol_id": 272
},
- "minecraft:nether_brick_stairs": {
- "protocol_id": 369
+ "minecraft:mud_brick_stairs": {
+ "protocol_id": 363
},
- "minecraft:nether_brick_wall": {
+ "minecraft:mud_brick_wall": {
"protocol_id": 405
},
+ "minecraft:mud_bricks": {
+ "protocol_id": 345
+ },
+ "minecraft:muddy_mangrove_roots": {
+ "protocol_id": 141
+ },
+ "minecraft:mule_spawn_egg": {
+ "protocol_id": 1044
+ },
+ "minecraft:mushroom_stem": {
+ "protocol_id": 354
+ },
+ "minecraft:mushroom_stew": {
+ "protocol_id": 849
+ },
+ "minecraft:music_disc_11": {
+ "protocol_id": 1178
+ },
+ "minecraft:music_disc_13": {
+ "protocol_id": 1168
+ },
+ "minecraft:music_disc_5": {
+ "protocol_id": 1182
+ },
+ "minecraft:music_disc_blocks": {
+ "protocol_id": 1170
+ },
+ "minecraft:music_disc_cat": {
+ "protocol_id": 1169
+ },
+ "minecraft:music_disc_chirp": {
+ "protocol_id": 1171
+ },
+ "minecraft:music_disc_far": {
+ "protocol_id": 1172
+ },
+ "minecraft:music_disc_mall": {
+ "protocol_id": 1173
+ },
+ "minecraft:music_disc_mellohi": {
+ "protocol_id": 1174
+ },
+ "minecraft:music_disc_otherside": {
+ "protocol_id": 1180
+ },
+ "minecraft:music_disc_pigstep": {
+ "protocol_id": 1183
+ },
+ "minecraft:music_disc_relic": {
+ "protocol_id": 1181
+ },
+ "minecraft:music_disc_stal": {
+ "protocol_id": 1175
+ },
+ "minecraft:music_disc_strad": {
+ "protocol_id": 1176
+ },
+ "minecraft:music_disc_wait": {
+ "protocol_id": 1179
+ },
+ "minecraft:music_disc_ward": {
+ "protocol_id": 1177
+ },
+ "minecraft:mutton": {
+ "protocol_id": 1131
+ },
+ "minecraft:mycelium": {
+ "protocol_id": 364
+ },
+ "minecraft:name_tag": {
+ "protocol_id": 1129
+ },
+ "minecraft:nautilus_shell": {
+ "protocol_id": 1187
+ },
+ "minecraft:nether_brick": {
+ "protocol_id": 1115
+ },
+ "minecraft:nether_brick_fence": {
+ "protocol_id": 369
+ },
+ "minecraft:nether_brick_slab": {
+ "protocol_id": 273
+ },
+ "minecraft:nether_brick_stairs": {
+ "protocol_id": 370
+ },
+ "minecraft:nether_brick_wall": {
+ "protocol_id": 406
+ },
"minecraft:nether_bricks": {
- "protocol_id": 365
+ "protocol_id": 366
},
"minecraft:nether_gold_ore": {
"protocol_id": 78
@@ -8050,391 +8303,397 @@
"protocol_id": 79
},
"minecraft:nether_sprouts": {
- "protocol_id": 239
+ "protocol_id": 240
},
"minecraft:nether_star": {
- "protocol_id": 1103
+ "protocol_id": 1110
},
"minecraft:nether_wart": {
- "protocol_id": 994
+ "protocol_id": 997
},
"minecraft:nether_wart_block": {
- "protocol_id": 516
+ "protocol_id": 517
},
"minecraft:netherite_axe": {
- "protocol_id": 842
+ "protocol_id": 845
},
"minecraft:netherite_block": {
- "protocol_id": 91
+ "protocol_id": 92
},
"minecraft:netherite_boots": {
- "protocol_id": 876
+ "protocol_id": 879
},
"minecraft:netherite_chestplate": {
- "protocol_id": 874
+ "protocol_id": 877
},
"minecraft:netherite_helmet": {
- "protocol_id": 873
+ "protocol_id": 876
},
"minecraft:netherite_hoe": {
- "protocol_id": 843
+ "protocol_id": 846
},
"minecraft:netherite_ingot": {
- "protocol_id": 812
+ "protocol_id": 815
},
"minecraft:netherite_leggings": {
- "protocol_id": 875
+ "protocol_id": 878
},
"minecraft:netherite_pickaxe": {
- "protocol_id": 841
+ "protocol_id": 844
},
"minecraft:netherite_scrap": {
- "protocol_id": 813
+ "protocol_id": 816
},
"minecraft:netherite_shovel": {
- "protocol_id": 840
+ "protocol_id": 843
},
"minecraft:netherite_sword": {
- "protocol_id": 839
+ "protocol_id": 842
},
"minecraft:netherite_upgrade_smithing_template": {
- "protocol_id": 1257
+ "protocol_id": 1266
},
"minecraft:netherrack": {
- "protocol_id": 324
+ "protocol_id": 325
},
"minecraft:note_block": {
- "protocol_id": 680
+ "protocol_id": 681
},
"minecraft:oak_boat": {
- "protocol_id": 773
- },
- "minecraft:oak_button": {
- "protocol_id": 683
- },
- "minecraft:oak_chest_boat": {
"protocol_id": 774
},
+ "minecraft:oak_button": {
+ "protocol_id": 684
+ },
+ "minecraft:oak_chest_boat": {
+ "protocol_id": 775
+ },
"minecraft:oak_door": {
- "protocol_id": 710
+ "protocol_id": 711
},
"minecraft:oak_fence": {
- "protocol_id": 310
+ "protocol_id": 311
},
"minecraft:oak_fence_gate": {
- "protocol_id": 749
+ "protocol_id": 750
},
"minecraft:oak_hanging_sign": {
- "protocol_id": 894
+ "protocol_id": 897
},
"minecraft:oak_leaves": {
- "protocol_id": 175
+ "protocol_id": 176
},
"minecraft:oak_log": {
- "protocol_id": 131
+ "protocol_id": 132
},
"minecraft:oak_planks": {
"protocol_id": 36
},
"minecraft:oak_pressure_plate": {
- "protocol_id": 698
+ "protocol_id": 699
},
"minecraft:oak_sapling": {
"protocol_id": 48
},
"minecraft:oak_sign": {
- "protocol_id": 883
+ "protocol_id": 886
},
"minecraft:oak_slab": {
- "protocol_id": 251
+ "protocol_id": 252
},
"minecraft:oak_stairs": {
- "protocol_id": 382
+ "protocol_id": 383
},
"minecraft:oak_trapdoor": {
- "protocol_id": 730
+ "protocol_id": 731
},
"minecraft:oak_wood": {
- "protocol_id": 165
+ "protocol_id": 166
},
"minecraft:observer": {
- "protocol_id": 665
+ "protocol_id": 666
},
"minecraft:obsidian": {
- "protocol_id": 289
+ "protocol_id": 290
},
"minecraft:ocelot_spawn_egg": {
- "protocol_id": 1040
- },
- "minecraft:ochre_froglight": {
- "protocol_id": 1251
- },
- "minecraft:orange_banner": {
- "protocol_id": 1127
- },
- "minecraft:orange_bed": {
- "protocol_id": 962
- },
- "minecraft:orange_candle": {
- "protocol_id": 1231
- },
- "minecraft:orange_carpet": {
- "protocol_id": 446
- },
- "minecraft:orange_concrete": {
- "protocol_id": 555
- },
- "minecraft:orange_concrete_powder": {
- "protocol_id": 571
- },
- "minecraft:orange_dye": {
- "protocol_id": 942
- },
- "minecraft:orange_glazed_terracotta": {
- "protocol_id": 539
- },
- "minecraft:orange_shulker_box": {
- "protocol_id": 523
- },
- "minecraft:orange_stained_glass": {
- "protocol_id": 471
- },
- "minecraft:orange_stained_glass_pane": {
- "protocol_id": 487
- },
- "minecraft:orange_terracotta": {
- "protocol_id": 427
- },
- "minecraft:orange_tulip": {
- "protocol_id": 223
- },
- "minecraft:orange_wool": {
- "protocol_id": 202
- },
- "minecraft:oxeye_daisy": {
- "protocol_id": 226
- },
- "minecraft:oxidized_chiseled_copper": {
- "protocol_id": 98
- },
- "minecraft:oxidized_copper": {
- "protocol_id": 94
- },
- "minecraft:oxidized_copper_bulb": {
- "protocol_id": 1305
- },
- "minecraft:oxidized_copper_door": {
- "protocol_id": 724
- },
- "minecraft:oxidized_copper_grate": {
- "protocol_id": 1297
- },
- "minecraft:oxidized_copper_trapdoor": {
- "protocol_id": 744
- },
- "minecraft:oxidized_cut_copper": {
- "protocol_id": 102
- },
- "minecraft:oxidized_cut_copper_slab": {
- "protocol_id": 110
- },
- "minecraft:oxidized_cut_copper_stairs": {
- "protocol_id": 106
- },
- "minecraft:packed_ice": {
- "protocol_id": 462
- },
- "minecraft:packed_mud": {
- "protocol_id": 343
- },
- "minecraft:painting": {
- "protocol_id": 880
- },
- "minecraft:panda_spawn_egg": {
- "protocol_id": 1041
- },
- "minecraft:paper": {
- "protocol_id": 921
- },
- "minecraft:parrot_spawn_egg": {
- "protocol_id": 1042
- },
- "minecraft:pearlescent_froglight": {
- "protocol_id": 1253
- },
- "minecraft:peony": {
- "protocol_id": 467
- },
- "minecraft:petrified_oak_slab": {
- "protocol_id": 267
- },
- "minecraft:phantom_membrane": {
- "protocol_id": 1179
- },
- "minecraft:phantom_spawn_egg": {
- "protocol_id": 1043
- },
- "minecraft:pig_spawn_egg": {
- "protocol_id": 1044
- },
- "minecraft:piglin_banner_pattern": {
- "protocol_id": 1190
- },
- "minecraft:piglin_brute_spawn_egg": {
- "protocol_id": 1046
- },
- "minecraft:piglin_head": {
- "protocol_id": 1102
- },
- "minecraft:piglin_spawn_egg": {
"protocol_id": 1045
},
- "minecraft:pillager_spawn_egg": {
+ "minecraft:ochre_froglight": {
+ "protocol_id": 1260
+ },
+ "minecraft:ominous_bottle": {
+ "protocol_id": 1328
+ },
+ "minecraft:ominous_trial_key": {
+ "protocol_id": 1326
+ },
+ "minecraft:orange_banner": {
+ "protocol_id": 1134
+ },
+ "minecraft:orange_bed": {
+ "protocol_id": 965
+ },
+ "minecraft:orange_candle": {
+ "protocol_id": 1240
+ },
+ "minecraft:orange_carpet": {
+ "protocol_id": 447
+ },
+ "minecraft:orange_concrete": {
+ "protocol_id": 556
+ },
+ "minecraft:orange_concrete_powder": {
+ "protocol_id": 572
+ },
+ "minecraft:orange_dye": {
+ "protocol_id": 945
+ },
+ "minecraft:orange_glazed_terracotta": {
+ "protocol_id": 540
+ },
+ "minecraft:orange_shulker_box": {
+ "protocol_id": 524
+ },
+ "minecraft:orange_stained_glass": {
+ "protocol_id": 472
+ },
+ "minecraft:orange_stained_glass_pane": {
+ "protocol_id": 488
+ },
+ "minecraft:orange_terracotta": {
+ "protocol_id": 428
+ },
+ "minecraft:orange_tulip": {
+ "protocol_id": 224
+ },
+ "minecraft:orange_wool": {
+ "protocol_id": 203
+ },
+ "minecraft:oxeye_daisy": {
+ "protocol_id": 227
+ },
+ "minecraft:oxidized_chiseled_copper": {
+ "protocol_id": 99
+ },
+ "minecraft:oxidized_copper": {
+ "protocol_id": 95
+ },
+ "minecraft:oxidized_copper_bulb": {
+ "protocol_id": 1319
+ },
+ "minecraft:oxidized_copper_door": {
+ "protocol_id": 725
+ },
+ "minecraft:oxidized_copper_grate": {
+ "protocol_id": 1311
+ },
+ "minecraft:oxidized_copper_trapdoor": {
+ "protocol_id": 745
+ },
+ "minecraft:oxidized_cut_copper": {
+ "protocol_id": 103
+ },
+ "minecraft:oxidized_cut_copper_slab": {
+ "protocol_id": 111
+ },
+ "minecraft:oxidized_cut_copper_stairs": {
+ "protocol_id": 107
+ },
+ "minecraft:packed_ice": {
+ "protocol_id": 463
+ },
+ "minecraft:packed_mud": {
+ "protocol_id": 344
+ },
+ "minecraft:painting": {
+ "protocol_id": 883
+ },
+ "minecraft:panda_spawn_egg": {
+ "protocol_id": 1046
+ },
+ "minecraft:paper": {
+ "protocol_id": 924
+ },
+ "minecraft:parrot_spawn_egg": {
"protocol_id": 1047
},
+ "minecraft:pearlescent_froglight": {
+ "protocol_id": 1262
+ },
+ "minecraft:peony": {
+ "protocol_id": 468
+ },
+ "minecraft:petrified_oak_slab": {
+ "protocol_id": 268
+ },
+ "minecraft:phantom_membrane": {
+ "protocol_id": 1186
+ },
+ "minecraft:phantom_spawn_egg": {
+ "protocol_id": 1048
+ },
+ "minecraft:pig_spawn_egg": {
+ "protocol_id": 1049
+ },
+ "minecraft:piglin_banner_pattern": {
+ "protocol_id": 1197
+ },
+ "minecraft:piglin_brute_spawn_egg": {
+ "protocol_id": 1051
+ },
+ "minecraft:piglin_head": {
+ "protocol_id": 1109
+ },
+ "minecraft:piglin_spawn_egg": {
+ "protocol_id": 1050
+ },
+ "minecraft:pillager_spawn_egg": {
+ "protocol_id": 1052
+ },
"minecraft:pink_banner": {
- "protocol_id": 1132
+ "protocol_id": 1139
},
"minecraft:pink_bed": {
- "protocol_id": 967
+ "protocol_id": 970
},
"minecraft:pink_candle": {
- "protocol_id": 1236
+ "protocol_id": 1245
},
"minecraft:pink_carpet": {
- "protocol_id": 451
+ "protocol_id": 452
},
"minecraft:pink_concrete": {
- "protocol_id": 560
+ "protocol_id": 561
},
"minecraft:pink_concrete_powder": {
- "protocol_id": 576
+ "protocol_id": 577
},
"minecraft:pink_dye": {
- "protocol_id": 947
+ "protocol_id": 950
},
"minecraft:pink_glazed_terracotta": {
- "protocol_id": 544
+ "protocol_id": 545
},
"minecraft:pink_petals": {
- "protocol_id": 245
+ "protocol_id": 246
},
"minecraft:pink_shulker_box": {
- "protocol_id": 528
+ "protocol_id": 529
},
"minecraft:pink_stained_glass": {
- "protocol_id": 476
+ "protocol_id": 477
},
"minecraft:pink_stained_glass_pane": {
- "protocol_id": 492
+ "protocol_id": 493
},
"minecraft:pink_terracotta": {
- "protocol_id": 432
+ "protocol_id": 433
},
"minecraft:pink_tulip": {
- "protocol_id": 225
+ "protocol_id": 226
},
"minecraft:pink_wool": {
- "protocol_id": 207
+ "protocol_id": 208
},
"minecraft:piston": {
- "protocol_id": 661
+ "protocol_id": 662
},
"minecraft:pitcher_plant": {
- "protocol_id": 231
+ "protocol_id": 232
},
"minecraft:pitcher_pod": {
- "protocol_id": 1146
+ "protocol_id": 1153
},
"minecraft:player_head": {
- "protocol_id": 1098
+ "protocol_id": 1105
},
"minecraft:plenty_pottery_sherd": {
- "protocol_id": 1288
+ "protocol_id": 1301
},
"minecraft:podzol": {
"protocol_id": 30
},
"minecraft:pointed_dripstone": {
- "protocol_id": 1250
+ "protocol_id": 1259
},
"minecraft:poisonous_potato": {
- "protocol_id": 1093
+ "protocol_id": 1100
},
"minecraft:polar_bear_spawn_egg": {
- "protocol_id": 1048
+ "protocol_id": 1053
},
"minecraft:polished_andesite": {
"protocol_id": 7
},
"minecraft:polished_andesite_slab": {
- "protocol_id": 649
+ "protocol_id": 650
},
"minecraft:polished_andesite_stairs": {
- "protocol_id": 632
+ "protocol_id": 633
},
"minecraft:polished_basalt": {
- "protocol_id": 328
+ "protocol_id": 329
},
"minecraft:polished_blackstone": {
- "protocol_id": 1220
+ "protocol_id": 1229
},
"minecraft:polished_blackstone_brick_slab": {
- "protocol_id": 1225
+ "protocol_id": 1234
},
"minecraft:polished_blackstone_brick_stairs": {
- "protocol_id": 1226
+ "protocol_id": 1235
},
"minecraft:polished_blackstone_brick_wall": {
- "protocol_id": 413
+ "protocol_id": 414
},
"minecraft:polished_blackstone_bricks": {
- "protocol_id": 1224
+ "protocol_id": 1233
},
"minecraft:polished_blackstone_button": {
- "protocol_id": 682
+ "protocol_id": 683
},
"minecraft:polished_blackstone_pressure_plate": {
- "protocol_id": 695
+ "protocol_id": 696
},
"minecraft:polished_blackstone_slab": {
- "protocol_id": 1221
+ "protocol_id": 1230
},
"minecraft:polished_blackstone_stairs": {
- "protocol_id": 1222
+ "protocol_id": 1231
},
"minecraft:polished_blackstone_wall": {
- "protocol_id": 412
+ "protocol_id": 413
},
"minecraft:polished_deepslate": {
"protocol_id": 10
},
"minecraft:polished_deepslate_slab": {
- "protocol_id": 652
+ "protocol_id": 653
},
"minecraft:polished_deepslate_stairs": {
- "protocol_id": 635
+ "protocol_id": 636
},
"minecraft:polished_deepslate_wall": {
- "protocol_id": 415
+ "protocol_id": 416
},
"minecraft:polished_diorite": {
"protocol_id": 5
},
"minecraft:polished_diorite_slab": {
- "protocol_id": 641
+ "protocol_id": 642
},
"minecraft:polished_diorite_stairs": {
- "protocol_id": 623
+ "protocol_id": 624
},
"minecraft:polished_granite": {
"protocol_id": 3
},
"minecraft:polished_granite_slab": {
- "protocol_id": 638
+ "protocol_id": 639
},
"minecraft:polished_granite_stairs": {
- "protocol_id": 620
+ "protocol_id": 621
},
"minecraft:polished_tuff": {
"protocol_id": 17
@@ -8449,730 +8708,730 @@
"protocol_id": 20
},
"minecraft:popped_chorus_fruit": {
- "protocol_id": 1144
+ "protocol_id": 1151
},
"minecraft:poppy": {
- "protocol_id": 218
+ "protocol_id": 219
},
"minecraft:porkchop": {
- "protocol_id": 878
+ "protocol_id": 881
},
"minecraft:potato": {
- "protocol_id": 1091
+ "protocol_id": 1098
},
"minecraft:potion": {
- "protocol_id": 995
+ "protocol_id": 998
},
"minecraft:powder_snow_bucket": {
- "protocol_id": 908
+ "protocol_id": 911
},
"minecraft:powered_rail": {
- "protocol_id": 760
+ "protocol_id": 761
},
"minecraft:prismarine": {
- "protocol_id": 502
- },
- "minecraft:prismarine_brick_slab": {
- "protocol_id": 278
- },
- "minecraft:prismarine_brick_stairs": {
- "protocol_id": 506
- },
- "minecraft:prismarine_bricks": {
"protocol_id": 503
},
+ "minecraft:prismarine_brick_slab": {
+ "protocol_id": 279
+ },
+ "minecraft:prismarine_brick_stairs": {
+ "protocol_id": 507
+ },
+ "minecraft:prismarine_bricks": {
+ "protocol_id": 504
+ },
"minecraft:prismarine_crystals": {
- "protocol_id": 1110
+ "protocol_id": 1117
},
"minecraft:prismarine_shard": {
- "protocol_id": 1109
+ "protocol_id": 1116
},
"minecraft:prismarine_slab": {
- "protocol_id": 277
+ "protocol_id": 278
},
"minecraft:prismarine_stairs": {
- "protocol_id": 505
+ "protocol_id": 506
},
"minecraft:prismarine_wall": {
- "protocol_id": 399
+ "protocol_id": 400
},
"minecraft:prize_pottery_sherd": {
- "protocol_id": 1289
+ "protocol_id": 1302
},
"minecraft:pufferfish": {
- "protocol_id": 935
+ "protocol_id": 938
},
"minecraft:pufferfish_bucket": {
- "protocol_id": 912
+ "protocol_id": 915
},
"minecraft:pufferfish_spawn_egg": {
- "protocol_id": 1049
+ "protocol_id": 1054
},
"minecraft:pumpkin": {
- "protocol_id": 321
+ "protocol_id": 322
},
"minecraft:pumpkin_pie": {
- "protocol_id": 1104
- },
- "minecraft:pumpkin_seeds": {
- "protocol_id": 983
- },
- "minecraft:purple_banner": {
- "protocol_id": 1136
- },
- "minecraft:purple_bed": {
- "protocol_id": 971
- },
- "minecraft:purple_candle": {
- "protocol_id": 1240
- },
- "minecraft:purple_carpet": {
- "protocol_id": 455
- },
- "minecraft:purple_concrete": {
- "protocol_id": 564
- },
- "minecraft:purple_concrete_powder": {
- "protocol_id": 580
- },
- "minecraft:purple_dye": {
- "protocol_id": 951
- },
- "minecraft:purple_glazed_terracotta": {
- "protocol_id": 548
- },
- "minecraft:purple_shulker_box": {
- "protocol_id": 532
- },
- "minecraft:purple_stained_glass": {
- "protocol_id": 480
- },
- "minecraft:purple_stained_glass_pane": {
- "protocol_id": 496
- },
- "minecraft:purple_terracotta": {
- "protocol_id": 436
- },
- "minecraft:purple_wool": {
- "protocol_id": 211
- },
- "minecraft:purpur_block": {
- "protocol_id": 294
- },
- "minecraft:purpur_pillar": {
- "protocol_id": 295
- },
- "minecraft:purpur_slab": {
- "protocol_id": 276
- },
- "minecraft:purpur_stairs": {
- "protocol_id": 296
- },
- "minecraft:quartz": {
- "protocol_id": 804
- },
- "minecraft:quartz_block": {
- "protocol_id": 422
- },
- "minecraft:quartz_bricks": {
- "protocol_id": 423
- },
- "minecraft:quartz_pillar": {
- "protocol_id": 424
- },
- "minecraft:quartz_slab": {
- "protocol_id": 273
- },
- "minecraft:quartz_stairs": {
- "protocol_id": 425
- },
- "minecraft:rabbit": {
"protocol_id": 1111
},
+ "minecraft:pumpkin_seeds": {
+ "protocol_id": 986
+ },
+ "minecraft:purple_banner": {
+ "protocol_id": 1143
+ },
+ "minecraft:purple_bed": {
+ "protocol_id": 974
+ },
+ "minecraft:purple_candle": {
+ "protocol_id": 1249
+ },
+ "minecraft:purple_carpet": {
+ "protocol_id": 456
+ },
+ "minecraft:purple_concrete": {
+ "protocol_id": 565
+ },
+ "minecraft:purple_concrete_powder": {
+ "protocol_id": 581
+ },
+ "minecraft:purple_dye": {
+ "protocol_id": 954
+ },
+ "minecraft:purple_glazed_terracotta": {
+ "protocol_id": 549
+ },
+ "minecraft:purple_shulker_box": {
+ "protocol_id": 533
+ },
+ "minecraft:purple_stained_glass": {
+ "protocol_id": 481
+ },
+ "minecraft:purple_stained_glass_pane": {
+ "protocol_id": 497
+ },
+ "minecraft:purple_terracotta": {
+ "protocol_id": 437
+ },
+ "minecraft:purple_wool": {
+ "protocol_id": 212
+ },
+ "minecraft:purpur_block": {
+ "protocol_id": 295
+ },
+ "minecraft:purpur_pillar": {
+ "protocol_id": 296
+ },
+ "minecraft:purpur_slab": {
+ "protocol_id": 277
+ },
+ "minecraft:purpur_stairs": {
+ "protocol_id": 297
+ },
+ "minecraft:quartz": {
+ "protocol_id": 807
+ },
+ "minecraft:quartz_block": {
+ "protocol_id": 423
+ },
+ "minecraft:quartz_bricks": {
+ "protocol_id": 424
+ },
+ "minecraft:quartz_pillar": {
+ "protocol_id": 425
+ },
+ "minecraft:quartz_slab": {
+ "protocol_id": 274
+ },
+ "minecraft:quartz_stairs": {
+ "protocol_id": 426
+ },
+ "minecraft:rabbit": {
+ "protocol_id": 1118
+ },
"minecraft:rabbit_foot": {
- "protocol_id": 1114
+ "protocol_id": 1121
},
"minecraft:rabbit_hide": {
- "protocol_id": 1115
+ "protocol_id": 1122
},
"minecraft:rabbit_spawn_egg": {
- "protocol_id": 1050
+ "protocol_id": 1055
},
"minecraft:rabbit_stew": {
- "protocol_id": 1113
+ "protocol_id": 1120
},
"minecraft:rail": {
- "protocol_id": 762
+ "protocol_id": 763
},
"minecraft:raiser_armor_trim_smithing_template": {
- "protocol_id": 1272
+ "protocol_id": 1281
},
"minecraft:ravager_spawn_egg": {
- "protocol_id": 1051
+ "protocol_id": 1056
},
"minecraft:raw_copper": {
- "protocol_id": 808
+ "protocol_id": 811
},
"minecraft:raw_copper_block": {
"protocol_id": 83
},
"minecraft:raw_gold": {
- "protocol_id": 810
+ "protocol_id": 813
},
"minecraft:raw_gold_block": {
"protocol_id": 84
},
"minecraft:raw_iron": {
- "protocol_id": 806
+ "protocol_id": 809
},
"minecraft:raw_iron_block": {
"protocol_id": 82
},
"minecraft:recovery_compass": {
- "protocol_id": 926
+ "protocol_id": 929
},
"minecraft:red_banner": {
- "protocol_id": 1140
+ "protocol_id": 1147
},
"minecraft:red_bed": {
- "protocol_id": 975
+ "protocol_id": 978
},
"minecraft:red_candle": {
- "protocol_id": 1244
+ "protocol_id": 1253
},
"minecraft:red_carpet": {
- "protocol_id": 459
+ "protocol_id": 460
},
"minecraft:red_concrete": {
- "protocol_id": 568
+ "protocol_id": 569
},
"minecraft:red_concrete_powder": {
- "protocol_id": 584
+ "protocol_id": 585
},
"minecraft:red_dye": {
- "protocol_id": 955
+ "protocol_id": 958
},
"minecraft:red_glazed_terracotta": {
- "protocol_id": 552
+ "protocol_id": 553
},
"minecraft:red_mushroom": {
- "protocol_id": 234
+ "protocol_id": 235
},
"minecraft:red_mushroom_block": {
- "protocol_id": 352
+ "protocol_id": 353
},
"minecraft:red_nether_brick_slab": {
- "protocol_id": 648
+ "protocol_id": 649
},
"minecraft:red_nether_brick_stairs": {
- "protocol_id": 631
+ "protocol_id": 632
},
"minecraft:red_nether_brick_wall": {
- "protocol_id": 407
+ "protocol_id": 408
},
"minecraft:red_nether_bricks": {
- "protocol_id": 518
+ "protocol_id": 519
},
"minecraft:red_sand": {
"protocol_id": 60
},
"minecraft:red_sandstone": {
- "protocol_id": 509
+ "protocol_id": 510
},
"minecraft:red_sandstone_slab": {
- "protocol_id": 274
+ "protocol_id": 275
},
"minecraft:red_sandstone_stairs": {
- "protocol_id": 512
+ "protocol_id": 513
},
"minecraft:red_sandstone_wall": {
- "protocol_id": 400
+ "protocol_id": 401
},
"minecraft:red_shulker_box": {
- "protocol_id": 536
+ "protocol_id": 537
},
"minecraft:red_stained_glass": {
- "protocol_id": 484
+ "protocol_id": 485
},
"minecraft:red_stained_glass_pane": {
- "protocol_id": 500
+ "protocol_id": 501
},
"minecraft:red_terracotta": {
- "protocol_id": 440
+ "protocol_id": 441
},
"minecraft:red_tulip": {
- "protocol_id": 222
+ "protocol_id": 223
},
"minecraft:red_wool": {
- "protocol_id": 215
+ "protocol_id": 216
},
"minecraft:redstone": {
- "protocol_id": 656
+ "protocol_id": 657
},
"minecraft:redstone_block": {
- "protocol_id": 658
+ "protocol_id": 659
},
"minecraft:redstone_lamp": {
- "protocol_id": 679
+ "protocol_id": 680
},
"minecraft:redstone_ore": {
"protocol_id": 70
},
"minecraft:redstone_torch": {
- "protocol_id": 657
+ "protocol_id": 658
},
"minecraft:reinforced_deepslate": {
- "protocol_id": 350
+ "protocol_id": 351
},
"minecraft:repeater": {
- "protocol_id": 659
+ "protocol_id": 660
},
"minecraft:repeating_command_block": {
- "protocol_id": 513
+ "protocol_id": 514
},
"minecraft:respawn_anchor": {
- "protocol_id": 1228
+ "protocol_id": 1237
},
"minecraft:rib_armor_trim_smithing_template": {
- "protocol_id": 1267
+ "protocol_id": 1276
},
"minecraft:rooted_dirt": {
"protocol_id": 31
},
"minecraft:rose_bush": {
- "protocol_id": 466
+ "protocol_id": 467
},
"minecraft:rotten_flesh": {
- "protocol_id": 989
+ "protocol_id": 992
},
"minecraft:saddle": {
- "protocol_id": 764
+ "protocol_id": 765
},
"minecraft:salmon": {
- "protocol_id": 933
+ "protocol_id": 936
},
"minecraft:salmon_bucket": {
- "protocol_id": 913
+ "protocol_id": 916
},
"minecraft:salmon_spawn_egg": {
- "protocol_id": 1052
+ "protocol_id": 1057
},
"minecraft:sand": {
"protocol_id": 57
},
"minecraft:sandstone": {
- "protocol_id": 190
+ "protocol_id": 191
},
"minecraft:sandstone_slab": {
- "protocol_id": 265
+ "protocol_id": 266
},
"minecraft:sandstone_stairs": {
- "protocol_id": 379
+ "protocol_id": 380
},
"minecraft:sandstone_wall": {
- "protocol_id": 408
+ "protocol_id": 409
},
"minecraft:scaffolding": {
- "protocol_id": 655
+ "protocol_id": 656
+ },
+ "minecraft:scrape_pottery_sherd": {
+ "protocol_id": 1303
},
"minecraft:sculk": {
- "protocol_id": 370
- },
- "minecraft:sculk_catalyst": {
- "protocol_id": 372
- },
- "minecraft:sculk_sensor": {
- "protocol_id": 674
- },
- "minecraft:sculk_shrieker": {
- "protocol_id": 373
- },
- "minecraft:sculk_vein": {
"protocol_id": 371
},
- "minecraft:scute": {
- "protocol_id": 794
+ "minecraft:sculk_catalyst": {
+ "protocol_id": 373
+ },
+ "minecraft:sculk_sensor": {
+ "protocol_id": 675
+ },
+ "minecraft:sculk_shrieker": {
+ "protocol_id": 374
+ },
+ "minecraft:sculk_vein": {
+ "protocol_id": 372
},
"minecraft:sea_lantern": {
- "protocol_id": 508
+ "protocol_id": 509
},
"minecraft:sea_pickle": {
- "protocol_id": 200
+ "protocol_id": 201
},
"minecraft:seagrass": {
- "protocol_id": 199
+ "protocol_id": 200
},
"minecraft:sentry_armor_trim_smithing_template": {
- "protocol_id": 1258
+ "protocol_id": 1267
},
"minecraft:shaper_armor_trim_smithing_template": {
- "protocol_id": 1270
+ "protocol_id": 1279
},
"minecraft:sheaf_pottery_sherd": {
- "protocol_id": 1290
+ "protocol_id": 1304
},
"minecraft:shears": {
- "protocol_id": 980
+ "protocol_id": 983
},
"minecraft:sheep_spawn_egg": {
- "protocol_id": 1053
- },
- "minecraft:shelter_pottery_sherd": {
- "protocol_id": 1291
- },
- "minecraft:shield": {
- "protocol_id": 1155
- },
- "minecraft:short_grass": {
- "protocol_id": 194
- },
- "minecraft:shroomlight": {
- "protocol_id": 1208
- },
- "minecraft:shulker_box": {
- "protocol_id": 521
- },
- "minecraft:shulker_shell": {
- "protocol_id": 1157
- },
- "minecraft:shulker_spawn_egg": {
- "protocol_id": 1054
- },
- "minecraft:silence_armor_trim_smithing_template": {
- "protocol_id": 1271
- },
- "minecraft:silverfish_spawn_egg": {
- "protocol_id": 1055
- },
- "minecraft:skeleton_horse_spawn_egg": {
- "protocol_id": 1057
- },
- "minecraft:skeleton_skull": {
- "protocol_id": 1096
- },
- "minecraft:skeleton_spawn_egg": {
- "protocol_id": 1056
- },
- "minecraft:skull_banner_pattern": {
- "protocol_id": 1187
- },
- "minecraft:skull_pottery_sherd": {
- "protocol_id": 1292
- },
- "minecraft:slime_ball": {
- "protocol_id": 923
- },
- "minecraft:slime_block": {
- "protocol_id": 663
- },
- "minecraft:slime_spawn_egg": {
"protocol_id": 1058
},
- "minecraft:small_amethyst_bud": {
- "protocol_id": 1246
+ "minecraft:shelter_pottery_sherd": {
+ "protocol_id": 1305
},
- "minecraft:small_dripleaf": {
- "protocol_id": 249
+ "minecraft:shield": {
+ "protocol_id": 1162
},
- "minecraft:smithing_table": {
- "protocol_id": 1199
+ "minecraft:short_grass": {
+ "protocol_id": 195
},
- "minecraft:smoker": {
- "protocol_id": 1194
+ "minecraft:shroomlight": {
+ "protocol_id": 1217
},
- "minecraft:smooth_basalt": {
- "protocol_id": 329
+ "minecraft:shulker_box": {
+ "protocol_id": 522
},
- "minecraft:smooth_quartz": {
- "protocol_id": 280
+ "minecraft:shulker_shell": {
+ "protocol_id": 1164
},
- "minecraft:smooth_quartz_slab": {
- "protocol_id": 645
- },
- "minecraft:smooth_quartz_stairs": {
- "protocol_id": 628
- },
- "minecraft:smooth_red_sandstone": {
- "protocol_id": 281
- },
- "minecraft:smooth_red_sandstone_slab": {
- "protocol_id": 639
- },
- "minecraft:smooth_red_sandstone_stairs": {
- "protocol_id": 621
- },
- "minecraft:smooth_sandstone": {
- "protocol_id": 282
- },
- "minecraft:smooth_sandstone_slab": {
- "protocol_id": 644
- },
- "minecraft:smooth_sandstone_stairs": {
- "protocol_id": 627
- },
- "minecraft:smooth_stone": {
- "protocol_id": 283
- },
- "minecraft:smooth_stone_slab": {
- "protocol_id": 264
- },
- "minecraft:sniffer_egg": {
- "protocol_id": 587
- },
- "minecraft:sniffer_spawn_egg": {
+ "minecraft:shulker_spawn_egg": {
"protocol_id": 1059
},
- "minecraft:snort_pottery_sherd": {
- "protocol_id": 1293
+ "minecraft:silence_armor_trim_smithing_template": {
+ "protocol_id": 1280
},
- "minecraft:snout_armor_trim_smithing_template": {
- "protocol_id": 1266
- },
- "minecraft:snow": {
- "protocol_id": 304
- },
- "minecraft:snow_block": {
- "protocol_id": 306
- },
- "minecraft:snow_golem_spawn_egg": {
+ "minecraft:silverfish_spawn_egg": {
"protocol_id": 1060
},
- "minecraft:snowball": {
- "protocol_id": 909
+ "minecraft:skeleton_horse_spawn_egg": {
+ "protocol_id": 1062
},
- "minecraft:soul_campfire": {
- "protocol_id": 1207
+ "minecraft:skeleton_skull": {
+ "protocol_id": 1103
},
- "minecraft:soul_lantern": {
- "protocol_id": 1203
- },
- "minecraft:soul_sand": {
- "protocol_id": 325
- },
- "minecraft:soul_soil": {
- "protocol_id": 326
- },
- "minecraft:soul_torch": {
- "protocol_id": 330
- },
- "minecraft:spawner": {
- "protocol_id": 297
- },
- "minecraft:spectral_arrow": {
- "protocol_id": 1152
- },
- "minecraft:spider_eye": {
- "protocol_id": 997
- },
- "minecraft:spider_spawn_egg": {
+ "minecraft:skeleton_spawn_egg": {
"protocol_id": 1061
},
+ "minecraft:skull_banner_pattern": {
+ "protocol_id": 1194
+ },
+ "minecraft:skull_pottery_sherd": {
+ "protocol_id": 1306
+ },
+ "minecraft:slime_ball": {
+ "protocol_id": 926
+ },
+ "minecraft:slime_block": {
+ "protocol_id": 664
+ },
+ "minecraft:slime_spawn_egg": {
+ "protocol_id": 1063
+ },
+ "minecraft:small_amethyst_bud": {
+ "protocol_id": 1255
+ },
+ "minecraft:small_dripleaf": {
+ "protocol_id": 250
+ },
+ "minecraft:smithing_table": {
+ "protocol_id": 1208
+ },
+ "minecraft:smoker": {
+ "protocol_id": 1203
+ },
+ "minecraft:smooth_basalt": {
+ "protocol_id": 330
+ },
+ "minecraft:smooth_quartz": {
+ "protocol_id": 281
+ },
+ "minecraft:smooth_quartz_slab": {
+ "protocol_id": 646
+ },
+ "minecraft:smooth_quartz_stairs": {
+ "protocol_id": 629
+ },
+ "minecraft:smooth_red_sandstone": {
+ "protocol_id": 282
+ },
+ "minecraft:smooth_red_sandstone_slab": {
+ "protocol_id": 640
+ },
+ "minecraft:smooth_red_sandstone_stairs": {
+ "protocol_id": 622
+ },
+ "minecraft:smooth_sandstone": {
+ "protocol_id": 283
+ },
+ "minecraft:smooth_sandstone_slab": {
+ "protocol_id": 645
+ },
+ "minecraft:smooth_sandstone_stairs": {
+ "protocol_id": 628
+ },
+ "minecraft:smooth_stone": {
+ "protocol_id": 284
+ },
+ "minecraft:smooth_stone_slab": {
+ "protocol_id": 265
+ },
+ "minecraft:sniffer_egg": {
+ "protocol_id": 588
+ },
+ "minecraft:sniffer_spawn_egg": {
+ "protocol_id": 1064
+ },
+ "minecraft:snort_pottery_sherd": {
+ "protocol_id": 1307
+ },
+ "minecraft:snout_armor_trim_smithing_template": {
+ "protocol_id": 1275
+ },
+ "minecraft:snow": {
+ "protocol_id": 305
+ },
+ "minecraft:snow_block": {
+ "protocol_id": 307
+ },
+ "minecraft:snow_golem_spawn_egg": {
+ "protocol_id": 1065
+ },
+ "minecraft:snowball": {
+ "protocol_id": 912
+ },
+ "minecraft:soul_campfire": {
+ "protocol_id": 1216
+ },
+ "minecraft:soul_lantern": {
+ "protocol_id": 1212
+ },
+ "minecraft:soul_sand": {
+ "protocol_id": 326
+ },
+ "minecraft:soul_soil": {
+ "protocol_id": 327
+ },
+ "minecraft:soul_torch": {
+ "protocol_id": 331
+ },
+ "minecraft:spawner": {
+ "protocol_id": 298
+ },
+ "minecraft:spectral_arrow": {
+ "protocol_id": 1159
+ },
+ "minecraft:spider_eye": {
+ "protocol_id": 1000
+ },
+ "minecraft:spider_spawn_egg": {
+ "protocol_id": 1066
+ },
"minecraft:spire_armor_trim_smithing_template": {
- "protocol_id": 1268
+ "protocol_id": 1277
},
"minecraft:splash_potion": {
- "protocol_id": 1151
+ "protocol_id": 1158
},
"minecraft:sponge": {
- "protocol_id": 185
+ "protocol_id": 186
},
"minecraft:spore_blossom": {
- "protocol_id": 232
+ "protocol_id": 233
},
"minecraft:spruce_boat": {
- "protocol_id": 775
- },
- "minecraft:spruce_button": {
- "protocol_id": 684
- },
- "minecraft:spruce_chest_boat": {
"protocol_id": 776
},
+ "minecraft:spruce_button": {
+ "protocol_id": 685
+ },
+ "minecraft:spruce_chest_boat": {
+ "protocol_id": 777
+ },
"minecraft:spruce_door": {
- "protocol_id": 711
+ "protocol_id": 712
},
"minecraft:spruce_fence": {
- "protocol_id": 311
+ "protocol_id": 312
},
"minecraft:spruce_fence_gate": {
- "protocol_id": 750
+ "protocol_id": 751
},
"minecraft:spruce_hanging_sign": {
- "protocol_id": 895
+ "protocol_id": 898
},
"minecraft:spruce_leaves": {
- "protocol_id": 176
+ "protocol_id": 177
},
"minecraft:spruce_log": {
- "protocol_id": 132
+ "protocol_id": 133
},
"minecraft:spruce_planks": {
"protocol_id": 37
},
"minecraft:spruce_pressure_plate": {
- "protocol_id": 699
+ "protocol_id": 700
},
"minecraft:spruce_sapling": {
"protocol_id": 49
},
"minecraft:spruce_sign": {
- "protocol_id": 884
+ "protocol_id": 887
},
"minecraft:spruce_slab": {
- "protocol_id": 252
+ "protocol_id": 253
},
"minecraft:spruce_stairs": {
- "protocol_id": 383
+ "protocol_id": 384
},
"minecraft:spruce_trapdoor": {
- "protocol_id": 731
+ "protocol_id": 732
},
"minecraft:spruce_wood": {
- "protocol_id": 166
+ "protocol_id": 167
},
"minecraft:spyglass": {
- "protocol_id": 930
+ "protocol_id": 933
},
"minecraft:squid_spawn_egg": {
- "protocol_id": 1062
+ "protocol_id": 1067
},
"minecraft:stick": {
- "protocol_id": 844
+ "protocol_id": 847
},
"minecraft:sticky_piston": {
- "protocol_id": 662
+ "protocol_id": 663
},
"minecraft:stone": {
"protocol_id": 1
},
"minecraft:stone_axe": {
- "protocol_id": 822
+ "protocol_id": 825
},
"minecraft:stone_brick_slab": {
- "protocol_id": 270
+ "protocol_id": 271
},
"minecraft:stone_brick_stairs": {
- "protocol_id": 361
+ "protocol_id": 362
},
"minecraft:stone_brick_wall": {
- "protocol_id": 403
+ "protocol_id": 404
},
"minecraft:stone_bricks": {
- "protocol_id": 339
+ "protocol_id": 340
},
"minecraft:stone_button": {
- "protocol_id": 681
+ "protocol_id": 682
},
"minecraft:stone_hoe": {
- "protocol_id": 823
+ "protocol_id": 826
},
"minecraft:stone_pickaxe": {
- "protocol_id": 821
+ "protocol_id": 824
},
"minecraft:stone_pressure_plate": {
- "protocol_id": 694
+ "protocol_id": 695
},
"minecraft:stone_shovel": {
- "protocol_id": 820
+ "protocol_id": 823
},
"minecraft:stone_slab": {
- "protocol_id": 263
+ "protocol_id": 264
},
"minecraft:stone_stairs": {
- "protocol_id": 626
+ "protocol_id": 627
},
"minecraft:stone_sword": {
- "protocol_id": 819
+ "protocol_id": 822
},
"minecraft:stonecutter": {
- "protocol_id": 1200
+ "protocol_id": 1209
},
"minecraft:stray_spawn_egg": {
- "protocol_id": 1063
+ "protocol_id": 1068
},
"minecraft:strider_spawn_egg": {
- "protocol_id": 1064
+ "protocol_id": 1069
},
"minecraft:string": {
- "protocol_id": 847
+ "protocol_id": 850
},
"minecraft:stripped_acacia_log": {
- "protocol_id": 148
- },
- "minecraft:stripped_acacia_wood": {
- "protocol_id": 158
- },
- "minecraft:stripped_bamboo_block": {
- "protocol_id": 164
- },
- "minecraft:stripped_birch_log": {
- "protocol_id": 146
- },
- "minecraft:stripped_birch_wood": {
- "protocol_id": 156
- },
- "minecraft:stripped_cherry_log": {
"protocol_id": 149
},
- "minecraft:stripped_cherry_wood": {
+ "minecraft:stripped_acacia_wood": {
"protocol_id": 159
},
- "minecraft:stripped_crimson_hyphae": {
- "protocol_id": 162
+ "minecraft:stripped_bamboo_block": {
+ "protocol_id": 165
},
- "minecraft:stripped_crimson_stem": {
- "protocol_id": 152
- },
- "minecraft:stripped_dark_oak_log": {
- "protocol_id": 150
- },
- "minecraft:stripped_dark_oak_wood": {
- "protocol_id": 160
- },
- "minecraft:stripped_jungle_log": {
+ "minecraft:stripped_birch_log": {
"protocol_id": 147
},
- "minecraft:stripped_jungle_wood": {
+ "minecraft:stripped_birch_wood": {
"protocol_id": 157
},
- "minecraft:stripped_mangrove_log": {
- "protocol_id": 151
+ "minecraft:stripped_cherry_log": {
+ "protocol_id": 150
},
- "minecraft:stripped_mangrove_wood": {
- "protocol_id": 161
+ "minecraft:stripped_cherry_wood": {
+ "protocol_id": 160
},
- "minecraft:stripped_oak_log": {
- "protocol_id": 144
- },
- "minecraft:stripped_oak_wood": {
- "protocol_id": 154
- },
- "minecraft:stripped_spruce_log": {
- "protocol_id": 145
- },
- "minecraft:stripped_spruce_wood": {
- "protocol_id": 155
- },
- "minecraft:stripped_warped_hyphae": {
+ "minecraft:stripped_crimson_hyphae": {
"protocol_id": 163
},
- "minecraft:stripped_warped_stem": {
+ "minecraft:stripped_crimson_stem": {
"protocol_id": 153
},
+ "minecraft:stripped_dark_oak_log": {
+ "protocol_id": 151
+ },
+ "minecraft:stripped_dark_oak_wood": {
+ "protocol_id": 161
+ },
+ "minecraft:stripped_jungle_log": {
+ "protocol_id": 148
+ },
+ "minecraft:stripped_jungle_wood": {
+ "protocol_id": 158
+ },
+ "minecraft:stripped_mangrove_log": {
+ "protocol_id": 152
+ },
+ "minecraft:stripped_mangrove_wood": {
+ "protocol_id": 162
+ },
+ "minecraft:stripped_oak_log": {
+ "protocol_id": 145
+ },
+ "minecraft:stripped_oak_wood": {
+ "protocol_id": 155
+ },
+ "minecraft:stripped_spruce_log": {
+ "protocol_id": 146
+ },
+ "minecraft:stripped_spruce_wood": {
+ "protocol_id": 156
+ },
+ "minecraft:stripped_warped_hyphae": {
+ "protocol_id": 164
+ },
+ "minecraft:stripped_warped_stem": {
+ "protocol_id": 154
+ },
"minecraft:structure_block": {
- "protocol_id": 791
+ "protocol_id": 792
},
"minecraft:structure_void": {
- "protocol_id": 520
+ "protocol_id": 521
},
"minecraft:sugar": {
- "protocol_id": 959
+ "protocol_id": 962
},
"minecraft:sugar_cane": {
- "protocol_id": 242
+ "protocol_id": 243
},
"minecraft:sunflower": {
- "protocol_id": 464
+ "protocol_id": 465
},
"minecraft:suspicious_gravel": {
"protocol_id": 59
@@ -9181,88 +9440,88 @@
"protocol_id": 58
},
"minecraft:suspicious_stew": {
- "protocol_id": 1183
+ "protocol_id": 1190
},
"minecraft:sweet_berries": {
- "protocol_id": 1204
+ "protocol_id": 1213
},
"minecraft:tadpole_bucket": {
- "protocol_id": 917
+ "protocol_id": 920
},
"minecraft:tadpole_spawn_egg": {
- "protocol_id": 1065
+ "protocol_id": 1070
},
"minecraft:tall_grass": {
- "protocol_id": 468
+ "protocol_id": 469
},
"minecraft:target": {
- "protocol_id": 670
+ "protocol_id": 671
},
"minecraft:terracotta": {
- "protocol_id": 461
+ "protocol_id": 462
},
"minecraft:tide_armor_trim_smithing_template": {
- "protocol_id": 1265
+ "protocol_id": 1274
},
"minecraft:tinted_glass": {
- "protocol_id": 188
+ "protocol_id": 189
},
"minecraft:tipped_arrow": {
- "protocol_id": 1153
+ "protocol_id": 1160
},
"minecraft:tnt": {
- "protocol_id": 678
+ "protocol_id": 679
},
"minecraft:tnt_minecart": {
- "protocol_id": 768
+ "protocol_id": 769
},
"minecraft:torch": {
- "protocol_id": 290
+ "protocol_id": 291
},
"minecraft:torchflower": {
- "protocol_id": 230
+ "protocol_id": 231
},
"minecraft:torchflower_seeds": {
- "protocol_id": 1145
+ "protocol_id": 1152
},
"minecraft:totem_of_undying": {
- "protocol_id": 1156
+ "protocol_id": 1163
},
"minecraft:trader_llama_spawn_egg": {
- "protocol_id": 1066
+ "protocol_id": 1071
},
"minecraft:trapped_chest": {
- "protocol_id": 677
+ "protocol_id": 678
},
"minecraft:trial_key": {
- "protocol_id": 1311
+ "protocol_id": 1325
},
"minecraft:trial_spawner": {
- "protocol_id": 1310
+ "protocol_id": 1324
},
"minecraft:trident": {
- "protocol_id": 1178
+ "protocol_id": 1185
},
"minecraft:tripwire_hook": {
- "protocol_id": 676
+ "protocol_id": 677
},
"minecraft:tropical_fish": {
- "protocol_id": 934
+ "protocol_id": 937
},
"minecraft:tropical_fish_bucket": {
- "protocol_id": 915
+ "protocol_id": 918
},
"minecraft:tropical_fish_spawn_egg": {
- "protocol_id": 1067
+ "protocol_id": 1072
},
"minecraft:tube_coral": {
- "protocol_id": 598
+ "protocol_id": 599
},
"minecraft:tube_coral_block": {
- "protocol_id": 593
+ "protocol_id": 594
},
"minecraft:tube_coral_fan": {
- "protocol_id": 608
+ "protocol_id": 609
},
"minecraft:tuff": {
"protocol_id": 12
@@ -9289,67 +9548,73 @@
"protocol_id": 15
},
"minecraft:turtle_egg": {
- "protocol_id": 586
+ "protocol_id": 587
},
"minecraft:turtle_helmet": {
- "protocol_id": 793
+ "protocol_id": 794
+ },
+ "minecraft:turtle_scute": {
+ "protocol_id": 795
},
"minecraft:turtle_spawn_egg": {
- "protocol_id": 1068
- },
- "minecraft:twisting_vines": {
- "protocol_id": 241
- },
- "minecraft:verdant_froglight": {
- "protocol_id": 1252
- },
- "minecraft:vex_armor_trim_smithing_template": {
- "protocol_id": 1264
- },
- "minecraft:vex_spawn_egg": {
- "protocol_id": 1069
- },
- "minecraft:villager_spawn_egg": {
- "protocol_id": 1070
- },
- "minecraft:vindicator_spawn_egg": {
- "protocol_id": 1071
- },
- "minecraft:vine": {
- "protocol_id": 358
- },
- "minecraft:wandering_trader_spawn_egg": {
- "protocol_id": 1072
- },
- "minecraft:ward_armor_trim_smithing_template": {
- "protocol_id": 1262
- },
- "minecraft:warden_spawn_egg": {
"protocol_id": 1073
},
+ "minecraft:twisting_vines": {
+ "protocol_id": 242
+ },
+ "minecraft:vault": {
+ "protocol_id": 1327
+ },
+ "minecraft:verdant_froglight": {
+ "protocol_id": 1261
+ },
+ "minecraft:vex_armor_trim_smithing_template": {
+ "protocol_id": 1273
+ },
+ "minecraft:vex_spawn_egg": {
+ "protocol_id": 1074
+ },
+ "minecraft:villager_spawn_egg": {
+ "protocol_id": 1075
+ },
+ "minecraft:vindicator_spawn_egg": {
+ "protocol_id": 1076
+ },
+ "minecraft:vine": {
+ "protocol_id": 359
+ },
+ "minecraft:wandering_trader_spawn_egg": {
+ "protocol_id": 1077
+ },
+ "minecraft:ward_armor_trim_smithing_template": {
+ "protocol_id": 1271
+ },
+ "minecraft:warden_spawn_egg": {
+ "protocol_id": 1078
+ },
"minecraft:warped_button": {
- "protocol_id": 693
+ "protocol_id": 694
},
"minecraft:warped_door": {
- "protocol_id": 720
+ "protocol_id": 721
},
"minecraft:warped_fence": {
- "protocol_id": 320
+ "protocol_id": 321
},
"minecraft:warped_fence_gate": {
- "protocol_id": 759
+ "protocol_id": 760
},
"minecraft:warped_fungus": {
- "protocol_id": 236
+ "protocol_id": 237
},
"minecraft:warped_fungus_on_a_stick": {
- "protocol_id": 771
+ "protocol_id": 772
},
"minecraft:warped_hanging_sign": {
- "protocol_id": 904
+ "protocol_id": 907
},
"minecraft:warped_hyphae": {
- "protocol_id": 174
+ "protocol_id": 175
},
"minecraft:warped_nylium": {
"protocol_id": 34
@@ -9358,326 +9623,376 @@
"protocol_id": 46
},
"minecraft:warped_pressure_plate": {
- "protocol_id": 708
+ "protocol_id": 709
},
"minecraft:warped_roots": {
- "protocol_id": 238
+ "protocol_id": 239
},
"minecraft:warped_sign": {
- "protocol_id": 893
+ "protocol_id": 896
},
"minecraft:warped_slab": {
- "protocol_id": 262
+ "protocol_id": 263
},
"minecraft:warped_stairs": {
- "protocol_id": 393
+ "protocol_id": 394
},
"minecraft:warped_stem": {
- "protocol_id": 142
+ "protocol_id": 143
},
"minecraft:warped_trapdoor": {
- "protocol_id": 740
+ "protocol_id": 741
},
"minecraft:warped_wart_block": {
- "protocol_id": 517
+ "protocol_id": 518
},
"minecraft:water_bucket": {
- "protocol_id": 906
+ "protocol_id": 909
},
"minecraft:waxed_chiseled_copper": {
- "protocol_id": 115
- },
- "minecraft:waxed_copper_block": {
- "protocol_id": 111
- },
- "minecraft:waxed_copper_bulb": {
- "protocol_id": 1306
- },
- "minecraft:waxed_copper_door": {
- "protocol_id": 725
- },
- "minecraft:waxed_copper_grate": {
- "protocol_id": 1298
- },
- "minecraft:waxed_copper_trapdoor": {
- "protocol_id": 745
- },
- "minecraft:waxed_cut_copper": {
- "protocol_id": 119
- },
- "minecraft:waxed_cut_copper_slab": {
- "protocol_id": 127
- },
- "minecraft:waxed_cut_copper_stairs": {
- "protocol_id": 123
- },
- "minecraft:waxed_exposed_chiseled_copper": {
"protocol_id": 116
},
- "minecraft:waxed_exposed_copper": {
+ "minecraft:waxed_copper_block": {
"protocol_id": 112
},
- "minecraft:waxed_exposed_copper_bulb": {
- "protocol_id": 1307
+ "minecraft:waxed_copper_bulb": {
+ "protocol_id": 1320
},
- "minecraft:waxed_exposed_copper_door": {
+ "minecraft:waxed_copper_door": {
"protocol_id": 726
},
- "minecraft:waxed_exposed_copper_grate": {
- "protocol_id": 1299
+ "minecraft:waxed_copper_grate": {
+ "protocol_id": 1312
},
- "minecraft:waxed_exposed_copper_trapdoor": {
+ "minecraft:waxed_copper_trapdoor": {
"protocol_id": 746
},
- "minecraft:waxed_exposed_cut_copper": {
+ "minecraft:waxed_cut_copper": {
"protocol_id": 120
},
- "minecraft:waxed_exposed_cut_copper_slab": {
+ "minecraft:waxed_cut_copper_slab": {
"protocol_id": 128
},
- "minecraft:waxed_exposed_cut_copper_stairs": {
+ "minecraft:waxed_cut_copper_stairs": {
"protocol_id": 124
},
- "minecraft:waxed_oxidized_chiseled_copper": {
- "protocol_id": 118
- },
- "minecraft:waxed_oxidized_copper": {
- "protocol_id": 114
- },
- "minecraft:waxed_oxidized_copper_bulb": {
- "protocol_id": 1309
- },
- "minecraft:waxed_oxidized_copper_door": {
- "protocol_id": 728
- },
- "minecraft:waxed_oxidized_copper_grate": {
- "protocol_id": 1301
- },
- "minecraft:waxed_oxidized_copper_trapdoor": {
- "protocol_id": 748
- },
- "minecraft:waxed_oxidized_cut_copper": {
- "protocol_id": 122
- },
- "minecraft:waxed_oxidized_cut_copper_slab": {
- "protocol_id": 130
- },
- "minecraft:waxed_oxidized_cut_copper_stairs": {
- "protocol_id": 126
- },
- "minecraft:waxed_weathered_chiseled_copper": {
+ "minecraft:waxed_exposed_chiseled_copper": {
"protocol_id": 117
},
- "minecraft:waxed_weathered_copper": {
+ "minecraft:waxed_exposed_copper": {
"protocol_id": 113
},
- "minecraft:waxed_weathered_copper_bulb": {
- "protocol_id": 1308
+ "minecraft:waxed_exposed_copper_bulb": {
+ "protocol_id": 1321
},
- "minecraft:waxed_weathered_copper_door": {
+ "minecraft:waxed_exposed_copper_door": {
"protocol_id": 727
},
- "minecraft:waxed_weathered_copper_grate": {
- "protocol_id": 1300
+ "minecraft:waxed_exposed_copper_grate": {
+ "protocol_id": 1313
},
- "minecraft:waxed_weathered_copper_trapdoor": {
+ "minecraft:waxed_exposed_copper_trapdoor": {
"protocol_id": 747
},
- "minecraft:waxed_weathered_cut_copper": {
+ "minecraft:waxed_exposed_cut_copper": {
"protocol_id": 121
},
- "minecraft:waxed_weathered_cut_copper_slab": {
+ "minecraft:waxed_exposed_cut_copper_slab": {
"protocol_id": 129
},
- "minecraft:waxed_weathered_cut_copper_stairs": {
+ "minecraft:waxed_exposed_cut_copper_stairs": {
"protocol_id": 125
},
+ "minecraft:waxed_oxidized_chiseled_copper": {
+ "protocol_id": 119
+ },
+ "minecraft:waxed_oxidized_copper": {
+ "protocol_id": 115
+ },
+ "minecraft:waxed_oxidized_copper_bulb": {
+ "protocol_id": 1323
+ },
+ "minecraft:waxed_oxidized_copper_door": {
+ "protocol_id": 729
+ },
+ "minecraft:waxed_oxidized_copper_grate": {
+ "protocol_id": 1315
+ },
+ "minecraft:waxed_oxidized_copper_trapdoor": {
+ "protocol_id": 749
+ },
+ "minecraft:waxed_oxidized_cut_copper": {
+ "protocol_id": 123
+ },
+ "minecraft:waxed_oxidized_cut_copper_slab": {
+ "protocol_id": 131
+ },
+ "minecraft:waxed_oxidized_cut_copper_stairs": {
+ "protocol_id": 127
+ },
+ "minecraft:waxed_weathered_chiseled_copper": {
+ "protocol_id": 118
+ },
+ "minecraft:waxed_weathered_copper": {
+ "protocol_id": 114
+ },
+ "minecraft:waxed_weathered_copper_bulb": {
+ "protocol_id": 1322
+ },
+ "minecraft:waxed_weathered_copper_door": {
+ "protocol_id": 728
+ },
+ "minecraft:waxed_weathered_copper_grate": {
+ "protocol_id": 1314
+ },
+ "minecraft:waxed_weathered_copper_trapdoor": {
+ "protocol_id": 748
+ },
+ "minecraft:waxed_weathered_cut_copper": {
+ "protocol_id": 122
+ },
+ "minecraft:waxed_weathered_cut_copper_slab": {
+ "protocol_id": 130
+ },
+ "minecraft:waxed_weathered_cut_copper_stairs": {
+ "protocol_id": 126
+ },
"minecraft:wayfinder_armor_trim_smithing_template": {
- "protocol_id": 1269
+ "protocol_id": 1278
},
"minecraft:weathered_chiseled_copper": {
- "protocol_id": 97
+ "protocol_id": 98
},
"minecraft:weathered_copper": {
- "protocol_id": 93
+ "protocol_id": 94
},
"minecraft:weathered_copper_bulb": {
- "protocol_id": 1304
+ "protocol_id": 1318
},
"minecraft:weathered_copper_door": {
- "protocol_id": 723
+ "protocol_id": 724
},
"minecraft:weathered_copper_grate": {
- "protocol_id": 1296
+ "protocol_id": 1310
},
"minecraft:weathered_copper_trapdoor": {
- "protocol_id": 743
+ "protocol_id": 744
},
"minecraft:weathered_cut_copper": {
- "protocol_id": 101
+ "protocol_id": 102
},
"minecraft:weathered_cut_copper_slab": {
- "protocol_id": 109
+ "protocol_id": 110
},
"minecraft:weathered_cut_copper_stairs": {
- "protocol_id": 105
+ "protocol_id": 106
},
"minecraft:weeping_vines": {
- "protocol_id": 240
+ "protocol_id": 241
},
"minecraft:wet_sponge": {
- "protocol_id": 186
+ "protocol_id": 187
},
"minecraft:wheat": {
- "protocol_id": 851
+ "protocol_id": 854
},
"minecraft:wheat_seeds": {
- "protocol_id": 850
+ "protocol_id": 853
},
"minecraft:white_banner": {
- "protocol_id": 1126
+ "protocol_id": 1133
},
"minecraft:white_bed": {
- "protocol_id": 961
+ "protocol_id": 964
},
"minecraft:white_candle": {
- "protocol_id": 1230
+ "protocol_id": 1239
},
"minecraft:white_carpet": {
- "protocol_id": 445
+ "protocol_id": 446
},
"minecraft:white_concrete": {
- "protocol_id": 554
+ "protocol_id": 555
},
"minecraft:white_concrete_powder": {
- "protocol_id": 570
+ "protocol_id": 571
},
"minecraft:white_dye": {
- "protocol_id": 941
+ "protocol_id": 944
},
"minecraft:white_glazed_terracotta": {
- "protocol_id": 538
+ "protocol_id": 539
},
"minecraft:white_shulker_box": {
- "protocol_id": 522
+ "protocol_id": 523
},
"minecraft:white_stained_glass": {
- "protocol_id": 470
+ "protocol_id": 471
},
"minecraft:white_stained_glass_pane": {
- "protocol_id": 486
+ "protocol_id": 487
},
"minecraft:white_terracotta": {
- "protocol_id": 426
+ "protocol_id": 427
},
"minecraft:white_tulip": {
- "protocol_id": 224
+ "protocol_id": 225
},
"minecraft:white_wool": {
- "protocol_id": 201
+ "protocol_id": 202
},
"minecraft:wild_armor_trim_smithing_template": {
- "protocol_id": 1261
+ "protocol_id": 1270
+ },
+ "minecraft:wind_charge": {
+ "protocol_id": 1090
},
"minecraft:witch_spawn_egg": {
- "protocol_id": 1074
- },
- "minecraft:wither_rose": {
- "protocol_id": 229
- },
- "minecraft:wither_skeleton_skull": {
- "protocol_id": 1097
- },
- "minecraft:wither_skeleton_spawn_egg": {
- "protocol_id": 1076
- },
- "minecraft:wither_spawn_egg": {
- "protocol_id": 1075
- },
- "minecraft:wolf_spawn_egg": {
- "protocol_id": 1077
- },
- "minecraft:wooden_axe": {
- "protocol_id": 817
- },
- "minecraft:wooden_hoe": {
- "protocol_id": 818
- },
- "minecraft:wooden_pickaxe": {
- "protocol_id": 816
- },
- "minecraft:wooden_shovel": {
- "protocol_id": 815
- },
- "minecraft:wooden_sword": {
- "protocol_id": 814
- },
- "minecraft:writable_book": {
- "protocol_id": 1085
- },
- "minecraft:written_book": {
- "protocol_id": 1086
- },
- "minecraft:yellow_banner": {
- "protocol_id": 1130
- },
- "minecraft:yellow_bed": {
- "protocol_id": 965
- },
- "minecraft:yellow_candle": {
- "protocol_id": 1234
- },
- "minecraft:yellow_carpet": {
- "protocol_id": 449
- },
- "minecraft:yellow_concrete": {
- "protocol_id": 558
- },
- "minecraft:yellow_concrete_powder": {
- "protocol_id": 574
- },
- "minecraft:yellow_dye": {
- "protocol_id": 945
- },
- "minecraft:yellow_glazed_terracotta": {
- "protocol_id": 542
- },
- "minecraft:yellow_shulker_box": {
- "protocol_id": 526
- },
- "minecraft:yellow_stained_glass": {
- "protocol_id": 474
- },
- "minecraft:yellow_stained_glass_pane": {
- "protocol_id": 490
- },
- "minecraft:yellow_terracotta": {
- "protocol_id": 430
- },
- "minecraft:yellow_wool": {
- "protocol_id": 205
- },
- "minecraft:zoglin_spawn_egg": {
- "protocol_id": 1078
- },
- "minecraft:zombie_head": {
- "protocol_id": 1099
- },
- "minecraft:zombie_horse_spawn_egg": {
- "protocol_id": 1080
- },
- "minecraft:zombie_spawn_egg": {
"protocol_id": 1079
},
- "minecraft:zombie_villager_spawn_egg": {
+ "minecraft:wither_rose": {
+ "protocol_id": 230
+ },
+ "minecraft:wither_skeleton_skull": {
+ "protocol_id": 1104
+ },
+ "minecraft:wither_skeleton_spawn_egg": {
"protocol_id": 1081
},
- "minecraft:zombified_piglin_spawn_egg": {
+ "minecraft:wither_spawn_egg": {
+ "protocol_id": 1080
+ },
+ "minecraft:wolf_armor": {
+ "protocol_id": 797
+ },
+ "minecraft:wolf_spawn_egg": {
"protocol_id": 1082
+ },
+ "minecraft:wooden_axe": {
+ "protocol_id": 820
+ },
+ "minecraft:wooden_hoe": {
+ "protocol_id": 821
+ },
+ "minecraft:wooden_pickaxe": {
+ "protocol_id": 819
+ },
+ "minecraft:wooden_shovel": {
+ "protocol_id": 818
+ },
+ "minecraft:wooden_sword": {
+ "protocol_id": 817
+ },
+ "minecraft:writable_book": {
+ "protocol_id": 1091
+ },
+ "minecraft:written_book": {
+ "protocol_id": 1092
+ },
+ "minecraft:yellow_banner": {
+ "protocol_id": 1137
+ },
+ "minecraft:yellow_bed": {
+ "protocol_id": 968
+ },
+ "minecraft:yellow_candle": {
+ "protocol_id": 1243
+ },
+ "minecraft:yellow_carpet": {
+ "protocol_id": 450
+ },
+ "minecraft:yellow_concrete": {
+ "protocol_id": 559
+ },
+ "minecraft:yellow_concrete_powder": {
+ "protocol_id": 575
+ },
+ "minecraft:yellow_dye": {
+ "protocol_id": 948
+ },
+ "minecraft:yellow_glazed_terracotta": {
+ "protocol_id": 543
+ },
+ "minecraft:yellow_shulker_box": {
+ "protocol_id": 527
+ },
+ "minecraft:yellow_stained_glass": {
+ "protocol_id": 475
+ },
+ "minecraft:yellow_stained_glass_pane": {
+ "protocol_id": 491
+ },
+ "minecraft:yellow_terracotta": {
+ "protocol_id": 431
+ },
+ "minecraft:yellow_wool": {
+ "protocol_id": 206
+ },
+ "minecraft:zoglin_spawn_egg": {
+ "protocol_id": 1083
+ },
+ "minecraft:zombie_head": {
+ "protocol_id": 1106
+ },
+ "minecraft:zombie_horse_spawn_egg": {
+ "protocol_id": 1085
+ },
+ "minecraft:zombie_spawn_egg": {
+ "protocol_id": 1084
+ },
+ "minecraft:zombie_villager_spawn_egg": {
+ "protocol_id": 1086
+ },
+ "minecraft:zombified_piglin_spawn_egg": {
+ "protocol_id": 1087
}
},
"protocol_id": 7
},
+ "minecraft:item_sub_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:potion_contents": {
+ "protocol_id": 3
+ },
+ "minecraft:stored_enchantments": {
+ "protocol_id": 2
+ },
+ "minecraft:trim": {
+ "protocol_id": 12
+ },
+ "minecraft:writable_book_content": {
+ "protocol_id": 9
+ },
+ "minecraft:written_book_content": {
+ "protocol_id": 10
+ }
+ },
+ "protocol_id": 72
+ },
"minecraft:loot_condition_type": {
"entries": {
"minecraft:all_of": {
@@ -9740,85 +10055,124 @@
"minecraft:loot_function_type": {
"entries": {
"minecraft:apply_bonus": {
- "protocol_id": 15
- },
- "minecraft:copy_name": {
- "protocol_id": 12
- },
- "minecraft:copy_nbt": {
- "protocol_id": 20
- },
- "minecraft:copy_state": {
- "protocol_id": 21
- },
- "minecraft:enchant_randomly": {
- "protocol_id": 2
- },
- "minecraft:enchant_with_levels": {
- "protocol_id": 1
- },
- "minecraft:exploration_map": {
- "protocol_id": 10
- },
- "minecraft:explosion_decay": {
- "protocol_id": 17
- },
- "minecraft:fill_player_head": {
"protocol_id": 19
},
- "minecraft:furnace_smelt": {
- "protocol_id": 5
+ "minecraft:copy_components": {
+ "protocol_id": 31
},
- "minecraft:limit_count": {
+ "minecraft:copy_custom_data": {
+ "protocol_id": 24
+ },
+ "minecraft:copy_name": {
"protocol_id": 14
},
- "minecraft:looting_enchant": {
- "protocol_id": 6
- },
- "minecraft:reference": {
+ "minecraft:copy_state": {
"protocol_id": 25
},
- "minecraft:sequence": {
- "protocol_id": 26
+ "minecraft:enchant_randomly": {
+ "protocol_id": 3
},
- "minecraft:set_attributes": {
+ "minecraft:enchant_with_levels": {
+ "protocol_id": 2
+ },
+ "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:looting_enchant": {
"protocol_id": 8
},
+ "minecraft:modify_contents": {
+ "protocol_id": 16
+ },
+ "minecraft:reference": {
+ "protocol_id": 29
+ },
+ "minecraft:sequence": {
+ "protocol_id": 30
+ },
+ "minecraft:set_attributes": {
+ "protocol_id": 10
+ },
"minecraft:set_banner_pattern": {
- "protocol_id": 22
+ "protocol_id": 26
+ },
+ "minecraft:set_book_cover": {
+ "protocol_id": 34
+ },
+ "minecraft:set_components": {
+ "protocol_id": 6
},
"minecraft:set_contents": {
- "protocol_id": 13
+ "protocol_id": 15
},
"minecraft:set_count": {
"protocol_id": 0
},
+ "minecraft:set_custom_data": {
+ "protocol_id": 5
+ },
+ "minecraft:set_custom_model_data": {
+ "protocol_id": 39
+ },
"minecraft:set_damage": {
- "protocol_id": 7
- },
- "minecraft:set_enchantments": {
- "protocol_id": 3
- },
- "minecraft:set_instrument": {
- "protocol_id": 24
- },
- "minecraft:set_loot_table": {
- "protocol_id": 16
- },
- "minecraft:set_lore": {
- "protocol_id": 18
- },
- "minecraft:set_name": {
"protocol_id": 9
},
- "minecraft:set_nbt": {
+ "minecraft:set_enchantments": {
"protocol_id": 4
},
+ "minecraft:set_firework_explosion": {
+ "protocol_id": 33
+ },
+ "minecraft:set_fireworks": {
+ "protocol_id": 32
+ },
+ "minecraft:set_instrument": {
+ "protocol_id": 28
+ },
+ "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": 38
+ },
"minecraft:set_potion": {
- "protocol_id": 23
+ "protocol_id": 27
},
"minecraft:set_stew_effect": {
- "protocol_id": 11
+ "protocol_id": 13
+ },
+ "minecraft:set_writable_book_pages": {
+ "protocol_id": 36
+ },
+ "minecraft:set_written_book_pages": {
+ "protocol_id": 35
+ },
+ "minecraft:toggle_tooltips": {
+ "protocol_id": 37
}
},
"protocol_id": 32
@@ -9845,6 +10199,9 @@
"minecraft:score": {
"protocol_id": 3
},
+ "minecraft:storage": {
+ "protocol_id": 4
+ },
"minecraft:uniform": {
"protocol_id": 1
}
@@ -9891,20 +10248,130 @@
},
"protocol_id": 36
},
+ "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": 73
+ },
"minecraft:memory_module_type": {
"default": "minecraft:dummy",
"entries": {
"minecraft:admiring_disabled": {
- "protocol_id": 57
+ "protocol_id": 58
},
"minecraft:admiring_item": {
- "protocol_id": 54
+ "protocol_id": 55
},
"minecraft:angry_at": {
- "protocol_id": 52
+ "protocol_id": 53
},
"minecraft:ate_recently": {
- "protocol_id": 72
+ "protocol_id": 73
},
"minecraft:attack_cooling_down": {
"protocol_id": 15
@@ -9919,43 +10386,49 @@
"protocol_id": 17
},
"minecraft:breeze_jump_cooldown": {
- "protocol_id": 97
- },
- "minecraft:breeze_jump_inhaling": {
- "protocol_id": 102
- },
- "minecraft:breeze_jump_target": {
- "protocol_id": 103
- },
- "minecraft:breeze_shoot": {
"protocol_id": 98
},
- "minecraft:breeze_shoot_charging": {
+ "minecraft:breeze_jump_inhaling": {
+ "protocol_id": 103
+ },
+ "minecraft:breeze_jump_target": {
+ "protocol_id": 104
+ },
+ "minecraft:breeze_leaving_water": {
+ "protocol_id": 105
+ },
+ "minecraft:breeze_shoot": {
"protocol_id": 99
},
+ "minecraft:breeze_shoot_charging": {
+ "protocol_id": 100
+ },
"minecraft:breeze_shoot_cooldown": {
- "protocol_id": 101
+ "protocol_id": 102
},
"minecraft:breeze_shoot_recover": {
- "protocol_id": 100
+ "protocol_id": 101
},
"minecraft:cant_reach_walk_target_since": {
"protocol_id": 30
},
"minecraft:celebrate_location": {
- "protocol_id": 59
- },
- "minecraft:dancing": {
"protocol_id": 60
},
+ "minecraft:dancing": {
+ "protocol_id": 61
+ },
+ "minecraft:danger_detected_recently": {
+ "protocol_id": 32
+ },
"minecraft:dig_cooldown": {
- "protocol_id": 81
+ "protocol_id": 82
},
"minecraft:disable_walk_to_admire_item": {
- "protocol_id": 56
+ "protocol_id": 57
},
"minecraft:disturbance_location": {
- "protocol_id": 76
+ "protocol_id": 77
},
"minecraft:doors_to_close": {
"protocol_id": 21
@@ -9964,13 +10437,13 @@
"protocol_id": 0
},
"minecraft:gaze_cooldown_ticks": {
- "protocol_id": 41
+ "protocol_id": 42
},
"minecraft:golem_detected_recently": {
"protocol_id": 31
},
"minecraft:has_hunting_cooldown": {
- "protocol_id": 45
+ "protocol_id": 46
},
"minecraft:heard_bell_time": {
"protocol_id": 29
@@ -9982,7 +10455,7 @@
"protocol_id": 1
},
"minecraft:hunted_recently": {
- "protocol_id": 58
+ "protocol_id": 59
},
"minecraft:hurt_by": {
"protocol_id": 23
@@ -9997,52 +10470,52 @@
"protocol_id": 16
},
"minecraft:is_emerging": {
- "protocol_id": 79
+ "protocol_id": 80
},
"minecraft:is_in_water": {
- "protocol_id": 48
- },
- "minecraft:is_panicking": {
- "protocol_id": 50
- },
- "minecraft:is_pregnant": {
"protocol_id": 49
},
+ "minecraft:is_panicking": {
+ "protocol_id": 51
+ },
+ "minecraft:is_pregnant": {
+ "protocol_id": 50
+ },
"minecraft:is_sniffing": {
- "protocol_id": 78
+ "protocol_id": 79
},
"minecraft:is_tempted": {
- "protocol_id": 42
+ "protocol_id": 43
},
"minecraft:item_pickup_cooldown_ticks": {
- "protocol_id": 92
+ "protocol_id": 93
},
"minecraft:job_site": {
"protocol_id": 2
},
"minecraft:last_slept": {
- "protocol_id": 32
- },
- "minecraft:last_woken": {
"protocol_id": 33
},
- "minecraft:last_worked_at_poi": {
+ "minecraft:last_woken": {
"protocol_id": 34
},
- "minecraft:liked_noteblock": {
- "protocol_id": 90
+ "minecraft:last_worked_at_poi": {
+ "protocol_id": 35
},
- "minecraft:liked_noteblock_cooldown_ticks": {
+ "minecraft:liked_noteblock": {
"protocol_id": 91
},
+ "minecraft:liked_noteblock_cooldown_ticks": {
+ "protocol_id": 92
+ },
"minecraft:liked_player": {
- "protocol_id": 89
+ "protocol_id": 90
},
"minecraft:long_jump_cooling_down": {
- "protocol_id": 43
+ "protocol_id": 44
},
"minecraft:long_jump_mid_jump": {
- "protocol_id": 44
+ "protocol_id": 45
},
"minecraft:look_target": {
"protocol_id": 13
@@ -10054,7 +10527,7 @@
"protocol_id": 6
},
"minecraft:nearby_adult_piglins": {
- "protocol_id": 64
+ "protocol_id": 65
},
"minecraft:nearest_attackable": {
"protocol_id": 27
@@ -10066,37 +10539,37 @@
"protocol_id": 26
},
"minecraft:nearest_player_holding_wanted_item": {
- "protocol_id": 71
+ "protocol_id": 72
},
"minecraft:nearest_players": {
"protocol_id": 9
},
"minecraft:nearest_repellent": {
- "protocol_id": 73
+ "protocol_id": 74
},
"minecraft:nearest_targetable_player_not_wearing_gold": {
- "protocol_id": 63
+ "protocol_id": 64
},
"minecraft:nearest_visible_adult": {
- "protocol_id": 35
+ "protocol_id": 36
},
"minecraft:nearest_visible_adult_hoglins": {
- "protocol_id": 66
- },
- "minecraft:nearest_visible_adult_piglin": {
"protocol_id": 67
},
+ "minecraft:nearest_visible_adult_piglin": {
+ "protocol_id": 68
+ },
"minecraft:nearest_visible_adult_piglins": {
- "protocol_id": 65
+ "protocol_id": 66
},
"minecraft:nearest_visible_baby_hoglin": {
- "protocol_id": 62
+ "protocol_id": 63
},
"minecraft:nearest_visible_huntable_hoglin": {
- "protocol_id": 61
+ "protocol_id": 62
},
"minecraft:nearest_visible_nemesis": {
- "protocol_id": 37
+ "protocol_id": 38
},
"minecraft:nearest_visible_player": {
"protocol_id": 10
@@ -10105,97 +10578,97 @@
"protocol_id": 11
},
"minecraft:nearest_visible_wanted_item": {
- "protocol_id": 36
+ "protocol_id": 37
},
"minecraft:nearest_visible_zombified": {
- "protocol_id": 68
+ "protocol_id": 69
},
"minecraft:pacified": {
- "protocol_id": 74
+ "protocol_id": 75
},
"minecraft:path": {
"protocol_id": 19
},
"minecraft:play_dead_ticks": {
- "protocol_id": 38
+ "protocol_id": 39
},
"minecraft:potential_job_site": {
"protocol_id": 3
},
"minecraft:ram_cooldown_ticks": {
- "protocol_id": 46
- },
- "minecraft:ram_target": {
"protocol_id": 47
},
+ "minecraft:ram_target": {
+ "protocol_id": 48
+ },
"minecraft:recent_projectile": {
- "protocol_id": 77
+ "protocol_id": 78
},
"minecraft:ride_target": {
"protocol_id": 18
},
"minecraft:roar_sound_cooldown": {
- "protocol_id": 82
+ "protocol_id": 83
},
"minecraft:roar_sound_delay": {
- "protocol_id": 80
+ "protocol_id": 81
},
"minecraft:roar_target": {
- "protocol_id": 75
+ "protocol_id": 76
},
"minecraft:secondary_job_site": {
"protocol_id": 5
},
"minecraft:sniff_cooldown": {
- "protocol_id": 83
- },
- "minecraft:sniffer_digging": {
- "protocol_id": 95
- },
- "minecraft:sniffer_explored_positions": {
- "protocol_id": 93
- },
- "minecraft:sniffer_happy": {
- "protocol_id": 96
- },
- "minecraft:sniffer_sniffing_target": {
- "protocol_id": 94
- },
- "minecraft:sonic_boom_cooldown": {
- "protocol_id": 86
- },
- "minecraft:sonic_boom_sound_cooldown": {
- "protocol_id": 87
- },
- "minecraft:sonic_boom_sound_delay": {
- "protocol_id": 88
- },
- "minecraft:temptation_cooldown_ticks": {
- "protocol_id": 40
- },
- "minecraft:tempting_player": {
- "protocol_id": 39
- },
- "minecraft:time_trying_to_reach_admire_item": {
- "protocol_id": 55
- },
- "minecraft:touch_cooldown": {
"protocol_id": 84
},
- "minecraft:universal_anger": {
- "protocol_id": 53
+ "minecraft:sniffer_digging": {
+ "protocol_id": 96
},
- "minecraft:unreachable_tongue_targets": {
- "protocol_id": 51
+ "minecraft:sniffer_explored_positions": {
+ "protocol_id": 94
},
- "minecraft:vibration_cooldown": {
+ "minecraft:sniffer_happy": {
+ "protocol_id": 97
+ },
+ "minecraft:sniffer_sniffing_target": {
+ "protocol_id": 95
+ },
+ "minecraft:sonic_boom_cooldown": {
+ "protocol_id": 87
+ },
+ "minecraft:sonic_boom_sound_cooldown": {
+ "protocol_id": 88
+ },
+ "minecraft:sonic_boom_sound_delay": {
+ "protocol_id": 89
+ },
+ "minecraft:temptation_cooldown_ticks": {
+ "protocol_id": 41
+ },
+ "minecraft:tempting_player": {
+ "protocol_id": 40
+ },
+ "minecraft:time_trying_to_reach_admire_item": {
+ "protocol_id": 56
+ },
+ "minecraft:touch_cooldown": {
"protocol_id": 85
},
+ "minecraft:universal_anger": {
+ "protocol_id": 54
+ },
+ "minecraft:unreachable_tongue_targets": {
+ "protocol_id": 52
+ },
+ "minecraft:vibration_cooldown": {
+ "protocol_id": 86
+ },
"minecraft:visible_adult_hoglin_count": {
- "protocol_id": 70
+ "protocol_id": 71
},
"minecraft:visible_adult_piglin_count": {
- "protocol_id": 69
+ "protocol_id": 70
},
"minecraft:visible_mobs": {
"protocol_id": 7
@@ -10327,6 +10800,9 @@
"minecraft:hunger": {
"protocol_id": 16
},
+ "minecraft:infested": {
+ "protocol_id": 38
+ },
"minecraft:instant_damage": {
"protocol_id": 6
},
@@ -10354,9 +10830,15 @@
"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
},
@@ -10378,6 +10860,9 @@
"minecraft:strength": {
"protocol_id": 4
},
+ "minecraft:trial_omen": {
+ "protocol_id": 33
+ },
"minecraft:unluck": {
"protocol_id": 26
},
@@ -10387,6 +10872,12 @@
"minecraft:weakness": {
"protocol_id": 17
},
+ "minecraft:weaving": {
+ "protocol_id": 36
+ },
+ "minecraft:wind_charged": {
+ "protocol_id": 35
+ },
"minecraft:wither": {
"protocol_id": 19
}
@@ -10405,7 +10896,7 @@
"protocol_id": 1
}
},
- "protocol_id": 69
+ "protocol_id": 68
},
"minecraft:painting_variant": {
"default": "minecraft:kebab",
@@ -10505,308 +10996,332 @@
},
"minecraft:particle_type": {
"entries": {
- "minecraft:ambient_entity_effect": {
+ "minecraft:angry_villager": {
"protocol_id": 0
},
- "minecraft:angry_villager": {
- "protocol_id": 1
- },
"minecraft:ash": {
- "protocol_id": 75
- },
- "minecraft:block": {
- "protocol_id": 2
- },
- "minecraft:block_marker": {
- "protocol_id": 3
- },
- "minecraft:bubble": {
- "protocol_id": 4
- },
- "minecraft:bubble_column_up": {
- "protocol_id": 65
- },
- "minecraft:bubble_pop": {
- "protocol_id": 63
- },
- "minecraft:campfire_cosy_smoke": {
- "protocol_id": 68
- },
- "minecraft:campfire_signal_smoke": {
- "protocol_id": 69
- },
- "minecraft:cherry_leaves": {
- "protocol_id": 31
- },
- "minecraft:cloud": {
- "protocol_id": 5
- },
- "minecraft:composter": {
- "protocol_id": 39
- },
- "minecraft:crimson_spore": {
- "protocol_id": 76
- },
- "minecraft:crit": {
- "protocol_id": 6
- },
- "minecraft:current_down": {
- "protocol_id": 64
- },
- "minecraft:damage_indicator": {
- "protocol_id": 7
- },
- "minecraft:dolphin": {
- "protocol_id": 67
- },
- "minecraft:dragon_breath": {
- "protocol_id": 8
- },
- "minecraft:dripping_dripstone_lava": {
- "protocol_id": 86
- },
- "minecraft:dripping_dripstone_water": {
- "protocol_id": 88
- },
- "minecraft:dripping_honey": {
- "protocol_id": 70
- },
- "minecraft:dripping_lava": {
- "protocol_id": 9
- },
- "minecraft:dripping_obsidian_tear": {
- "protocol_id": 79
- },
- "minecraft:dripping_water": {
- "protocol_id": 12
- },
- "minecraft:dust": {
- "protocol_id": 14
- },
- "minecraft:dust_color_transition": {
- "protocol_id": 15
- },
- "minecraft:dust_plume": {
- "protocol_id": 98
- },
- "minecraft:effect": {
- "protocol_id": 16
- },
- "minecraft:egg_crack": {
- "protocol_id": 97
- },
- "minecraft:elder_guardian": {
- "protocol_id": 17
- },
- "minecraft:electric_spark": {
- "protocol_id": 94
- },
- "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": 87
- },
- "minecraft:falling_dripstone_water": {
- "protocol_id": 89
- },
- "minecraft:falling_dust": {
- "protocol_id": 27
- },
- "minecraft:falling_honey": {
- "protocol_id": 71
- },
- "minecraft:falling_lava": {
- "protocol_id": 10
- },
- "minecraft:falling_nectar": {
- "protocol_id": 73
- },
- "minecraft:falling_obsidian_tear": {
- "protocol_id": 80
- },
- "minecraft:falling_spore_blossom": {
- "protocol_id": 74
- },
- "minecraft:falling_water": {
- "protocol_id": 13
- },
- "minecraft:firework": {
- "protocol_id": 28
- },
- "minecraft:fishing": {
- "protocol_id": 29
- },
- "minecraft:flame": {
- "protocol_id": 30
- },
- "minecraft:flash": {
- "protocol_id": 37
- },
- "minecraft:glow": {
- "protocol_id": 91
- },
- "minecraft:glow_squid_ink": {
- "protocol_id": 90
- },
- "minecraft:gust": {
- "protocol_id": 24
- },
- "minecraft:gust_dust": {
- "protocol_id": 99
- },
- "minecraft:gust_emitter": {
- "protocol_id": 25
- },
- "minecraft:happy_villager": {
- "protocol_id": 38
- },
- "minecraft:heart": {
- "protocol_id": 40
- },
- "minecraft:instant_effect": {
- "protocol_id": 41
- },
- "minecraft:item": {
- "protocol_id": 42
- },
- "minecraft:item_slime": {
- "protocol_id": 44
- },
- "minecraft:item_snowball": {
- "protocol_id": 45
- },
- "minecraft:landing_honey": {
- "protocol_id": 72
- },
- "minecraft:landing_lava": {
- "protocol_id": 11
- },
- "minecraft:landing_obsidian_tear": {
- "protocol_id": 81
- },
- "minecraft:large_smoke": {
- "protocol_id": 46
- },
- "minecraft:lava": {
- "protocol_id": 47
- },
- "minecraft:mycelium": {
- "protocol_id": 48
- },
- "minecraft:nautilus": {
- "protocol_id": 66
- },
- "minecraft:note": {
- "protocol_id": 49
- },
- "minecraft:poof": {
- "protocol_id": 50
- },
- "minecraft:portal": {
- "protocol_id": 51
- },
- "minecraft:rain": {
- "protocol_id": 52
- },
- "minecraft:reverse_portal": {
- "protocol_id": 82
- },
- "minecraft:scrape": {
- "protocol_id": 95
- },
- "minecraft:sculk_charge": {
- "protocol_id": 33
- },
- "minecraft:sculk_charge_pop": {
- "protocol_id": 34
- },
- "minecraft:sculk_soul": {
- "protocol_id": 32
- },
- "minecraft:shriek": {
- "protocol_id": 96
- },
- "minecraft:small_flame": {
- "protocol_id": 84
- },
- "minecraft:smoke": {
- "protocol_id": 53
- },
- "minecraft:sneeze": {
- "protocol_id": 55
- },
- "minecraft:snowflake": {
- "protocol_id": 85
- },
- "minecraft:sonic_boom": {
- "protocol_id": 26
- },
- "minecraft:soul": {
- "protocol_id": 36
- },
- "minecraft:soul_fire_flame": {
- "protocol_id": 35
- },
- "minecraft:spit": {
- "protocol_id": 56
- },
- "minecraft:splash": {
- "protocol_id": 61
- },
- "minecraft:spore_blossom_air": {
"protocol_id": 78
},
- "minecraft:squid_ink": {
- "protocol_id": 57
+ "minecraft:block": {
+ "protocol_id": 1
},
- "minecraft:sweep_attack": {
- "protocol_id": 58
+ "minecraft:block_marker": {
+ "protocol_id": 2
},
- "minecraft:totem_of_undying": {
- "protocol_id": 59
+ "minecraft:bubble": {
+ "protocol_id": 3
},
- "minecraft:trial_spawner_detection": {
+ "minecraft:bubble_column_up": {
+ "protocol_id": 68
+ },
+ "minecraft:bubble_pop": {
+ "protocol_id": 66
+ },
+ "minecraft:campfire_cosy_smoke": {
+ "protocol_id": 71
+ },
+ "minecraft:campfire_signal_smoke": {
+ "protocol_id": 72
+ },
+ "minecraft:cherry_leaves": {
+ "protocol_id": 33
+ },
+ "minecraft:cloud": {
+ "protocol_id": 4
+ },
+ "minecraft:composter": {
+ "protocol_id": 41
+ },
+ "minecraft:crimson_spore": {
+ "protocol_id": 79
+ },
+ "minecraft:crit": {
+ "protocol_id": 5
+ },
+ "minecraft:current_down": {
+ "protocol_id": 67
+ },
+ "minecraft:damage_indicator": {
+ "protocol_id": 6
+ },
+ "minecraft:dolphin": {
+ "protocol_id": 70
+ },
+ "minecraft:dragon_breath": {
+ "protocol_id": 7
+ },
+ "minecraft:dripping_dripstone_lava": {
+ "protocol_id": 89
+ },
+ "minecraft:dripping_dripstone_water": {
+ "protocol_id": 91
+ },
+ "minecraft:dripping_honey": {
+ "protocol_id": 73
+ },
+ "minecraft:dripping_lava": {
+ "protocol_id": 8
+ },
+ "minecraft:dripping_obsidian_tear": {
+ "protocol_id": 82
+ },
+ "minecraft:dripping_water": {
+ "protocol_id": 11
+ },
+ "minecraft:dust": {
+ "protocol_id": 13
+ },
+ "minecraft:dust_color_transition": {
+ "protocol_id": 14
+ },
+ "minecraft:dust_pillar": {
+ "protocol_id": 105
+ },
+ "minecraft:dust_plume": {
+ "protocol_id": 101
+ },
+ "minecraft:effect": {
+ "protocol_id": 15
+ },
+ "minecraft:egg_crack": {
"protocol_id": 100
},
- "minecraft:underwater": {
- "protocol_id": 60
+ "minecraft:elder_guardian": {
+ "protocol_id": 16
},
- "minecraft:vibration": {
- "protocol_id": 43
+ "minecraft:electric_spark": {
+ "protocol_id": 97
},
- "minecraft:warped_spore": {
- "protocol_id": 77
+ "minecraft:enchant": {
+ "protocol_id": 18
},
- "minecraft:wax_off": {
- "protocol_id": 93
+ "minecraft:enchanted_hit": {
+ "protocol_id": 17
},
- "minecraft:wax_on": {
+ "minecraft:end_rod": {
+ "protocol_id": 19
+ },
+ "minecraft:entity_effect": {
+ "protocol_id": 20
+ },
+ "minecraft:explosion": {
+ "protocol_id": 22
+ },
+ "minecraft:explosion_emitter": {
+ "protocol_id": 21
+ },
+ "minecraft:falling_dripstone_lava": {
+ "protocol_id": 90
+ },
+ "minecraft:falling_dripstone_water": {
"protocol_id": 92
},
- "minecraft:white_ash": {
+ "minecraft:falling_dust": {
+ "protocol_id": 28
+ },
+ "minecraft:falling_honey": {
+ "protocol_id": 74
+ },
+ "minecraft:falling_lava": {
+ "protocol_id": 9
+ },
+ "minecraft:falling_nectar": {
+ "protocol_id": 76
+ },
+ "minecraft:falling_obsidian_tear": {
"protocol_id": 83
},
- "minecraft:white_smoke": {
+ "minecraft:falling_spore_blossom": {
+ "protocol_id": 77
+ },
+ "minecraft:falling_water": {
+ "protocol_id": 12
+ },
+ "minecraft:firework": {
+ "protocol_id": 29
+ },
+ "minecraft:fishing": {
+ "protocol_id": 30
+ },
+ "minecraft:flame": {
+ "protocol_id": 31
+ },
+ "minecraft:flash": {
+ "protocol_id": 39
+ },
+ "minecraft:glow": {
+ "protocol_id": 94
+ },
+ "minecraft:glow_squid_ink": {
+ "protocol_id": 93
+ },
+ "minecraft:gust": {
+ "protocol_id": 23
+ },
+ "minecraft:gust_emitter_large": {
+ "protocol_id": 25
+ },
+ "minecraft:gust_emitter_small": {
+ "protocol_id": 26
+ },
+ "minecraft:happy_villager": {
+ "protocol_id": 40
+ },
+ "minecraft:heart": {
+ "protocol_id": 42
+ },
+ "minecraft:infested": {
+ "protocol_id": 32
+ },
+ "minecraft:instant_effect": {
+ "protocol_id": 43
+ },
+ "minecraft:item": {
+ "protocol_id": 44
+ },
+ "minecraft:item_cobweb": {
+ "protocol_id": 47
+ },
+ "minecraft:item_slime": {
+ "protocol_id": 46
+ },
+ "minecraft:item_snowball": {
+ "protocol_id": 48
+ },
+ "minecraft:landing_honey": {
+ "protocol_id": 75
+ },
+ "minecraft:landing_lava": {
+ "protocol_id": 10
+ },
+ "minecraft:landing_obsidian_tear": {
+ "protocol_id": 84
+ },
+ "minecraft:large_smoke": {
+ "protocol_id": 49
+ },
+ "minecraft:lava": {
+ "protocol_id": 50
+ },
+ "minecraft:mycelium": {
+ "protocol_id": 51
+ },
+ "minecraft:nautilus": {
+ "protocol_id": 69
+ },
+ "minecraft:note": {
+ "protocol_id": 52
+ },
+ "minecraft:ominous_spawning": {
+ "protocol_id": 106
+ },
+ "minecraft:poof": {
+ "protocol_id": 53
+ },
+ "minecraft:portal": {
"protocol_id": 54
},
- "minecraft:witch": {
+ "minecraft:raid_omen": {
+ "protocol_id": 107
+ },
+ "minecraft:rain": {
+ "protocol_id": 55
+ },
+ "minecraft:reverse_portal": {
+ "protocol_id": 85
+ },
+ "minecraft:scrape": {
+ "protocol_id": 98
+ },
+ "minecraft:sculk_charge": {
+ "protocol_id": 35
+ },
+ "minecraft:sculk_charge_pop": {
+ "protocol_id": 36
+ },
+ "minecraft:sculk_soul": {
+ "protocol_id": 34
+ },
+ "minecraft:shriek": {
+ "protocol_id": 99
+ },
+ "minecraft:small_flame": {
+ "protocol_id": 87
+ },
+ "minecraft:small_gust": {
+ "protocol_id": 24
+ },
+ "minecraft:smoke": {
+ "protocol_id": 56
+ },
+ "minecraft:sneeze": {
+ "protocol_id": 58
+ },
+ "minecraft:snowflake": {
+ "protocol_id": 88
+ },
+ "minecraft:sonic_boom": {
+ "protocol_id": 27
+ },
+ "minecraft:soul": {
+ "protocol_id": 38
+ },
+ "minecraft:soul_fire_flame": {
+ "protocol_id": 37
+ },
+ "minecraft:spit": {
+ "protocol_id": 59
+ },
+ "minecraft:splash": {
+ "protocol_id": 64
+ },
+ "minecraft:spore_blossom_air": {
+ "protocol_id": 81
+ },
+ "minecraft:squid_ink": {
+ "protocol_id": 60
+ },
+ "minecraft:sweep_attack": {
+ "protocol_id": 61
+ },
+ "minecraft:totem_of_undying": {
"protocol_id": 62
+ },
+ "minecraft:trial_omen": {
+ "protocol_id": 108
+ },
+ "minecraft:trial_spawner_detection": {
+ "protocol_id": 102
+ },
+ "minecraft:trial_spawner_detection_ominous": {
+ "protocol_id": 103
+ },
+ "minecraft:underwater": {
+ "protocol_id": 63
+ },
+ "minecraft:vault_connection": {
+ "protocol_id": 104
+ },
+ "minecraft:vibration": {
+ "protocol_id": 45
+ },
+ "minecraft:warped_spore": {
+ "protocol_id": 80
+ },
+ "minecraft:wax_off": {
+ "protocol_id": 96
+ },
+ "minecraft:wax_on": {
+ "protocol_id": 95
+ },
+ "minecraft:white_ash": {
+ "protocol_id": 86
+ },
+ "minecraft:white_smoke": {
+ "protocol_id": 57
+ },
+ "minecraft:witch": {
+ "protocol_id": 65
}
},
"protocol_id": 9
@@ -10902,136 +11417,144 @@
"protocol_id": 21
},
"minecraft:potion": {
- "default": "minecraft:empty",
"entries": {
"minecraft:awkward": {
- "protocol_id": 4
- },
- "minecraft:empty": {
- "protocol_id": 0
- },
- "minecraft:fire_resistance": {
- "protocol_id": 12
- },
- "minecraft:harming": {
- "protocol_id": 27
- },
- "minecraft:healing": {
- "protocol_id": 25
- },
- "minecraft:invisibility": {
- "protocol_id": 7
- },
- "minecraft:leaping": {
- "protocol_id": 9
- },
- "minecraft:long_fire_resistance": {
- "protocol_id": 13
- },
- "minecraft:long_invisibility": {
- "protocol_id": 8
- },
- "minecraft:long_leaping": {
- "protocol_id": 10
- },
- "minecraft:long_night_vision": {
- "protocol_id": 6
- },
- "minecraft:long_poison": {
- "protocol_id": 30
- },
- "minecraft:long_regeneration": {
- "protocol_id": 33
- },
- "minecraft:long_slow_falling": {
- "protocol_id": 42
- },
- "minecraft:long_slowness": {
- "protocol_id": 18
- },
- "minecraft:long_strength": {
- "protocol_id": 36
- },
- "minecraft:long_swiftness": {
- "protocol_id": 15
- },
- "minecraft:long_turtle_master": {
- "protocol_id": 21
- },
- "minecraft:long_water_breathing": {
- "protocol_id": 24
- },
- "minecraft:long_weakness": {
- "protocol_id": 39
- },
- "minecraft:luck": {
- "protocol_id": 40
- },
- "minecraft:mundane": {
- "protocol_id": 2
- },
- "minecraft:night_vision": {
- "protocol_id": 5
- },
- "minecraft:poison": {
- "protocol_id": 29
- },
- "minecraft:regeneration": {
- "protocol_id": 32
- },
- "minecraft:slow_falling": {
- "protocol_id": 41
- },
- "minecraft:slowness": {
- "protocol_id": 17
- },
- "minecraft:strength": {
- "protocol_id": 35
- },
- "minecraft:strong_harming": {
- "protocol_id": 28
- },
- "minecraft:strong_healing": {
- "protocol_id": 26
- },
- "minecraft:strong_leaping": {
- "protocol_id": 11
- },
- "minecraft:strong_poison": {
- "protocol_id": 31
- },
- "minecraft:strong_regeneration": {
- "protocol_id": 34
- },
- "minecraft:strong_slowness": {
- "protocol_id": 19
- },
- "minecraft:strong_strength": {
- "protocol_id": 37
- },
- "minecraft:strong_swiftness": {
- "protocol_id": 16
- },
- "minecraft:strong_turtle_master": {
- "protocol_id": 22
- },
- "minecraft:swiftness": {
- "protocol_id": 14
- },
- "minecraft:thick": {
"protocol_id": 3
},
- "minecraft:turtle_master": {
+ "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:water": {
- "protocol_id": 1
- },
- "minecraft:water_breathing": {
+ "minecraft:long_water_breathing": {
"protocol_id": 23
},
- "minecraft:weakness": {
+ "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
@@ -11196,44 +11719,50 @@
"minecraft:sensor_type": {
"default": "minecraft:dummy",
"entries": {
- "minecraft:axolotl_attackables": {
- "protocol_id": 14
+ "minecraft:armadillo_scare_detected": {
+ "protocol_id": 10
},
- "minecraft:axolotl_temptations": {
+ "minecraft:armadillo_temptations": {
+ "protocol_id": 20
+ },
+ "minecraft:axolotl_attackables": {
"protocol_id": 15
},
+ "minecraft:axolotl_temptations": {
+ "protocol_id": 16
+ },
"minecraft:breeze_attack_entity_sensor": {
- "protocol_id": 23
+ "protocol_id": 25
},
"minecraft:camel_temptations": {
- "protocol_id": 18
+ "protocol_id": 19
},
"minecraft:dummy": {
"protocol_id": 0
},
"minecraft:frog_attackables": {
- "protocol_id": 19
+ "protocol_id": 21
},
"minecraft:frog_temptations": {
- "protocol_id": 17
+ "protocol_id": 18
},
"minecraft:goat_temptations": {
- "protocol_id": 16
+ "protocol_id": 17
},
"minecraft:golem_detected": {
"protocol_id": 9
},
"minecraft:hoglin_specific_sensor": {
- "protocol_id": 12
+ "protocol_id": 13
},
"minecraft:hurt_by": {
"protocol_id": 5
},
"minecraft:is_in_water": {
- "protocol_id": 20
+ "protocol_id": 22
},
"minecraft:nearest_adult": {
- "protocol_id": 13
+ "protocol_id": 14
},
"minecraft:nearest_bed": {
"protocol_id": 4
@@ -11248,16 +11777,16 @@
"protocol_id": 3
},
"minecraft:piglin_brute_specific_sensor": {
- "protocol_id": 11
+ "protocol_id": 12
},
"minecraft:piglin_specific_sensor": {
- "protocol_id": 10
+ "protocol_id": 11
},
"minecraft:secondary_pois": {
"protocol_id": 8
},
"minecraft:sniffer_temptations": {
- "protocol_id": 22
+ "protocol_id": 24
},
"minecraft:villager_babies": {
"protocol_id": 7
@@ -11266,7 +11795,7 @@
"protocol_id": 6
},
"minecraft:warden_entity_sensor": {
- "protocol_id": 21
+ "protocol_id": 23
}
},
"protocol_id": 28
@@ -11415,2023 +11944,2110 @@
"protocol_id": 53
},
"minecraft:block.azalea.break": {
- "protocol_id": 80
- },
- "minecraft:block.azalea.fall": {
- "protocol_id": 81
- },
- "minecraft:block.azalea.hit": {
- "protocol_id": 82
- },
- "minecraft:block.azalea.place": {
- "protocol_id": 83
- },
- "minecraft:block.azalea.step": {
- "protocol_id": 84
- },
- "minecraft:block.azalea_leaves.break": {
- "protocol_id": 85
- },
- "minecraft:block.azalea_leaves.fall": {
- "protocol_id": 86
- },
- "minecraft:block.azalea_leaves.hit": {
- "protocol_id": 87
- },
- "minecraft:block.azalea_leaves.place": {
- "protocol_id": 88
- },
- "minecraft:block.azalea_leaves.step": {
- "protocol_id": 89
- },
- "minecraft:block.bamboo.break": {
- "protocol_id": 90
- },
- "minecraft:block.bamboo.fall": {
- "protocol_id": 91
- },
- "minecraft:block.bamboo.hit": {
- "protocol_id": 92
- },
- "minecraft:block.bamboo.place": {
- "protocol_id": 93
- },
- "minecraft:block.bamboo.step": {
- "protocol_id": 94
- },
- "minecraft:block.bamboo_sapling.break": {
"protocol_id": 95
},
- "minecraft:block.bamboo_sapling.hit": {
+ "minecraft:block.azalea.fall": {
"protocol_id": 96
},
- "minecraft:block.bamboo_sapling.place": {
+ "minecraft:block.azalea.hit": {
"protocol_id": 97
},
- "minecraft:block.bamboo_wood.break": {
+ "minecraft:block.azalea.place": {
"protocol_id": 98
},
- "minecraft:block.bamboo_wood.fall": {
+ "minecraft:block.azalea.step": {
"protocol_id": 99
},
- "minecraft:block.bamboo_wood.hit": {
+ "minecraft:block.azalea_leaves.break": {
"protocol_id": 100
},
- "minecraft:block.bamboo_wood.place": {
+ "minecraft:block.azalea_leaves.fall": {
"protocol_id": 101
},
- "minecraft:block.bamboo_wood.step": {
+ "minecraft:block.azalea_leaves.hit": {
"protocol_id": 102
},
- "minecraft:block.bamboo_wood_button.click_off": {
- "protocol_id": 107
- },
- "minecraft:block.bamboo_wood_button.click_on": {
- "protocol_id": 108
- },
- "minecraft:block.bamboo_wood_door.close": {
+ "minecraft:block.azalea_leaves.place": {
"protocol_id": 103
},
- "minecraft:block.bamboo_wood_door.open": {
+ "minecraft:block.azalea_leaves.step": {
"protocol_id": 104
},
- "minecraft:block.bamboo_wood_fence_gate.close": {
- "protocol_id": 111
- },
- "minecraft:block.bamboo_wood_fence_gate.open": {
- "protocol_id": 112
- },
- "minecraft:block.bamboo_wood_hanging_sign.break": {
- "protocol_id": 634
- },
- "minecraft:block.bamboo_wood_hanging_sign.fall": {
- "protocol_id": 635
- },
- "minecraft:block.bamboo_wood_hanging_sign.hit": {
- "protocol_id": 636
- },
- "minecraft:block.bamboo_wood_hanging_sign.place": {
- "protocol_id": 637
- },
- "minecraft:block.bamboo_wood_hanging_sign.step": {
- "protocol_id": 633
- },
- "minecraft:block.bamboo_wood_pressure_plate.click_off": {
- "protocol_id": 109
- },
- "minecraft:block.bamboo_wood_pressure_plate.click_on": {
- "protocol_id": 110
- },
- "minecraft:block.bamboo_wood_trapdoor.close": {
+ "minecraft:block.bamboo.break": {
"protocol_id": 105
},
- "minecraft:block.bamboo_wood_trapdoor.open": {
+ "minecraft:block.bamboo.fall": {
"protocol_id": 106
},
- "minecraft:block.barrel.close": {
+ "minecraft:block.bamboo.hit": {
+ "protocol_id": 107
+ },
+ "minecraft:block.bamboo.place": {
+ "protocol_id": 108
+ },
+ "minecraft:block.bamboo.step": {
+ "protocol_id": 109
+ },
+ "minecraft:block.bamboo_sapling.break": {
+ "protocol_id": 110
+ },
+ "minecraft:block.bamboo_sapling.hit": {
+ "protocol_id": 111
+ },
+ "minecraft:block.bamboo_sapling.place": {
+ "protocol_id": 112
+ },
+ "minecraft:block.bamboo_wood.break": {
"protocol_id": 113
},
- "minecraft:block.barrel.open": {
+ "minecraft:block.bamboo_wood.fall": {
"protocol_id": 114
},
- "minecraft:block.basalt.break": {
+ "minecraft:block.bamboo_wood.hit": {
"protocol_id": 115
},
- "minecraft:block.basalt.fall": {
- "protocol_id": 119
- },
- "minecraft:block.basalt.hit": {
- "protocol_id": 118
- },
- "minecraft:block.basalt.place": {
- "protocol_id": 117
- },
- "minecraft:block.basalt.step": {
+ "minecraft:block.bamboo_wood.place": {
"protocol_id": 116
},
- "minecraft:block.beacon.activate": {
- "protocol_id": 125
+ "minecraft:block.bamboo_wood.step": {
+ "protocol_id": 117
},
- "minecraft:block.beacon.ambient": {
+ "minecraft:block.bamboo_wood_button.click_off": {
+ "protocol_id": 122
+ },
+ "minecraft:block.bamboo_wood_button.click_on": {
+ "protocol_id": 123
+ },
+ "minecraft:block.bamboo_wood_door.close": {
+ "protocol_id": 118
+ },
+ "minecraft:block.bamboo_wood_door.open": {
+ "protocol_id": 119
+ },
+ "minecraft:block.bamboo_wood_fence_gate.close": {
"protocol_id": 126
},
- "minecraft:block.beacon.deactivate": {
+ "minecraft:block.bamboo_wood_fence_gate.open": {
"protocol_id": 127
},
- "minecraft:block.beacon.power_select": {
+ "minecraft:block.bamboo_wood_hanging_sign.break": {
+ "protocol_id": 669
+ },
+ "minecraft:block.bamboo_wood_hanging_sign.fall": {
+ "protocol_id": 670
+ },
+ "minecraft:block.bamboo_wood_hanging_sign.hit": {
+ "protocol_id": 671
+ },
+ "minecraft:block.bamboo_wood_hanging_sign.place": {
+ "protocol_id": 672
+ },
+ "minecraft:block.bamboo_wood_hanging_sign.step": {
+ "protocol_id": 668
+ },
+ "minecraft:block.bamboo_wood_pressure_plate.click_off": {
+ "protocol_id": 124
+ },
+ "minecraft:block.bamboo_wood_pressure_plate.click_on": {
+ "protocol_id": 125
+ },
+ "minecraft:block.bamboo_wood_trapdoor.close": {
+ "protocol_id": 120
+ },
+ "minecraft:block.bamboo_wood_trapdoor.open": {
+ "protocol_id": 121
+ },
+ "minecraft:block.barrel.close": {
"protocol_id": 128
},
- "minecraft:block.beehive.drip": {
- "protocol_id": 135
+ "minecraft:block.barrel.open": {
+ "protocol_id": 129
},
- "minecraft:block.beehive.enter": {
- "protocol_id": 136
+ "minecraft:block.basalt.break": {
+ "protocol_id": 130
},
- "minecraft:block.beehive.exit": {
- "protocol_id": 137
+ "minecraft:block.basalt.fall": {
+ "protocol_id": 134
},
- "minecraft:block.beehive.shear": {
- "protocol_id": 138
+ "minecraft:block.basalt.hit": {
+ "protocol_id": 133
},
- "minecraft:block.beehive.work": {
- "protocol_id": 139
+ "minecraft:block.basalt.place": {
+ "protocol_id": 132
},
- "minecraft:block.bell.resonate": {
- "protocol_id": 141
+ "minecraft:block.basalt.step": {
+ "protocol_id": 131
},
- "minecraft:block.bell.use": {
+ "minecraft:block.beacon.activate": {
"protocol_id": 140
},
- "minecraft:block.big_dripleaf.break": {
+ "minecraft:block.beacon.ambient": {
+ "protocol_id": 141
+ },
+ "minecraft:block.beacon.deactivate": {
"protocol_id": 142
},
- "minecraft:block.big_dripleaf.fall": {
+ "minecraft:block.beacon.power_select": {
"protocol_id": 143
},
- "minecraft:block.big_dripleaf.hit": {
- "protocol_id": 144
+ "minecraft:block.beehive.drip": {
+ "protocol_id": 150
},
- "minecraft:block.big_dripleaf.place": {
- "protocol_id": 145
+ "minecraft:block.beehive.enter": {
+ "protocol_id": 151
},
- "minecraft:block.big_dripleaf.step": {
- "protocol_id": 146
+ "minecraft:block.beehive.exit": {
+ "protocol_id": 152
},
- "minecraft:block.big_dripleaf.tilt_down": {
- "protocol_id": 413
+ "minecraft:block.beehive.shear": {
+ "protocol_id": 153
},
- "minecraft:block.big_dripleaf.tilt_up": {
- "protocol_id": 414
- },
- "minecraft:block.blastfurnace.fire_crackle": {
- "protocol_id": 162
- },
- "minecraft:block.bone_block.break": {
+ "minecraft:block.beehive.work": {
"protocol_id": 154
},
- "minecraft:block.bone_block.fall": {
- "protocol_id": 155
- },
- "minecraft:block.bone_block.hit": {
+ "minecraft:block.bell.resonate": {
"protocol_id": 156
},
- "minecraft:block.bone_block.place": {
+ "minecraft:block.bell.use": {
+ "protocol_id": 155
+ },
+ "minecraft:block.big_dripleaf.break": {
"protocol_id": 157
},
- "minecraft:block.bone_block.step": {
+ "minecraft:block.big_dripleaf.fall": {
"protocol_id": 158
},
- "minecraft:block.brewing_stand.brew": {
- "protocol_id": 175
+ "minecraft:block.big_dripleaf.hit": {
+ "protocol_id": 159
},
- "minecraft:block.bubble_column.bubble_pop": {
- "protocol_id": 181
+ "minecraft:block.big_dripleaf.place": {
+ "protocol_id": 160
},
- "minecraft:block.bubble_column.upwards_ambient": {
+ "minecraft:block.big_dripleaf.step": {
+ "protocol_id": 161
+ },
+ "minecraft:block.big_dripleaf.tilt_down": {
+ "protocol_id": 443
+ },
+ "minecraft:block.big_dripleaf.tilt_up": {
+ "protocol_id": 444
+ },
+ "minecraft:block.blastfurnace.fire_crackle": {
"protocol_id": 182
},
- "minecraft:block.bubble_column.upwards_inside": {
- "protocol_id": 183
+ "minecraft:block.bone_block.break": {
+ "protocol_id": 174
},
- "minecraft:block.bubble_column.whirlpool_ambient": {
- "protocol_id": 184
+ "minecraft:block.bone_block.fall": {
+ "protocol_id": 175
},
- "minecraft:block.bubble_column.whirlpool_inside": {
- "protocol_id": 185
+ "minecraft:block.bone_block.hit": {
+ "protocol_id": 176
},
- "minecraft:block.cake.add_candle": {
- "protocol_id": 201
+ "minecraft:block.bone_block.place": {
+ "protocol_id": 177
},
- "minecraft:block.calcite.break": {
- "protocol_id": 202
+ "minecraft:block.bone_block.step": {
+ "protocol_id": 178
},
- "minecraft:block.calcite.fall": {
- "protocol_id": 206
+ "minecraft:block.brewing_stand.brew": {
+ "protocol_id": 199
},
- "minecraft:block.calcite.hit": {
+ "minecraft:block.bubble_column.bubble_pop": {
"protocol_id": 205
},
- "minecraft:block.calcite.place": {
- "protocol_id": 204
+ "minecraft:block.bubble_column.upwards_ambient": {
+ "protocol_id": 206
},
- "minecraft:block.calcite.step": {
- "protocol_id": 203
+ "minecraft:block.bubble_column.upwards_inside": {
+ "protocol_id": 207
},
- "minecraft:block.campfire.crackle": {
- "protocol_id": 218
+ "minecraft:block.bubble_column.whirlpool_ambient": {
+ "protocol_id": 208
},
- "minecraft:block.candle.ambient": {
- "protocol_id": 219
+ "minecraft:block.bubble_column.whirlpool_inside": {
+ "protocol_id": 209
},
- "minecraft:block.candle.break": {
- "protocol_id": 220
- },
- "minecraft:block.candle.extinguish": {
- "protocol_id": 221
- },
- "minecraft:block.candle.fall": {
- "protocol_id": 222
- },
- "minecraft:block.candle.hit": {
- "protocol_id": 223
- },
- "minecraft:block.candle.place": {
- "protocol_id": 224
- },
- "minecraft:block.candle.step": {
+ "minecraft:block.cake.add_candle": {
"protocol_id": 225
},
- "minecraft:block.cave_vines.break": {
- "protocol_id": 235
+ "minecraft:block.calcite.break": {
+ "protocol_id": 226
},
- "minecraft:block.cave_vines.fall": {
- "protocol_id": 236
+ "minecraft:block.calcite.fall": {
+ "protocol_id": 230
},
- "minecraft:block.cave_vines.hit": {
- "protocol_id": 237
+ "minecraft:block.calcite.hit": {
+ "protocol_id": 229
},
- "minecraft:block.cave_vines.pick_berries": {
- "protocol_id": 240
+ "minecraft:block.calcite.place": {
+ "protocol_id": 228
},
- "minecraft:block.cave_vines.place": {
- "protocol_id": 238
+ "minecraft:block.calcite.step": {
+ "protocol_id": 227
},
- "minecraft:block.cave_vines.step": {
- "protocol_id": 239
- },
- "minecraft:block.chain.break": {
- "protocol_id": 241
- },
- "minecraft:block.chain.fall": {
+ "minecraft:block.campfire.crackle": {
"protocol_id": 242
},
- "minecraft:block.chain.hit": {
+ "minecraft:block.candle.ambient": {
"protocol_id": 243
},
- "minecraft:block.chain.place": {
+ "minecraft:block.candle.break": {
"protocol_id": 244
},
- "minecraft:block.chain.step": {
+ "minecraft:block.candle.extinguish": {
"protocol_id": 245
},
- "minecraft:block.cherry_leaves.break": {
- "protocol_id": 256
- },
- "minecraft:block.cherry_leaves.fall": {
- "protocol_id": 257
- },
- "minecraft:block.cherry_leaves.hit": {
- "protocol_id": 258
- },
- "minecraft:block.cherry_leaves.place": {
- "protocol_id": 259
- },
- "minecraft:block.cherry_leaves.step": {
- "protocol_id": 260
- },
- "minecraft:block.cherry_sapling.break": {
- "protocol_id": 251
- },
- "minecraft:block.cherry_sapling.fall": {
- "protocol_id": 252
- },
- "minecraft:block.cherry_sapling.hit": {
- "protocol_id": 253
- },
- "minecraft:block.cherry_sapling.place": {
- "protocol_id": 254
- },
- "minecraft:block.cherry_sapling.step": {
- "protocol_id": 255
- },
- "minecraft:block.cherry_wood.break": {
+ "minecraft:block.candle.fall": {
"protocol_id": 246
},
- "minecraft:block.cherry_wood.fall": {
+ "minecraft:block.candle.hit": {
"protocol_id": 247
},
- "minecraft:block.cherry_wood.hit": {
+ "minecraft:block.candle.place": {
"protocol_id": 248
},
- "minecraft:block.cherry_wood.place": {
+ "minecraft:block.candle.step": {
"protocol_id": 249
},
- "minecraft:block.cherry_wood.step": {
- "protocol_id": 250
+ "minecraft:block.cave_vines.break": {
+ "protocol_id": 259
},
- "minecraft:block.cherry_wood_button.click_off": {
- "protocol_id": 270
+ "minecraft:block.cave_vines.fall": {
+ "protocol_id": 260
},
- "minecraft:block.cherry_wood_button.click_on": {
- "protocol_id": 271
- },
- "minecraft:block.cherry_wood_door.close": {
- "protocol_id": 266
- },
- "minecraft:block.cherry_wood_door.open": {
- "protocol_id": 267
- },
- "minecraft:block.cherry_wood_fence_gate.close": {
- "protocol_id": 274
- },
- "minecraft:block.cherry_wood_fence_gate.open": {
- "protocol_id": 275
- },
- "minecraft:block.cherry_wood_hanging_sign.break": {
- "protocol_id": 262
- },
- "minecraft:block.cherry_wood_hanging_sign.fall": {
- "protocol_id": 263
- },
- "minecraft:block.cherry_wood_hanging_sign.hit": {
- "protocol_id": 264
- },
- "minecraft:block.cherry_wood_hanging_sign.place": {
- "protocol_id": 265
- },
- "minecraft:block.cherry_wood_hanging_sign.step": {
+ "minecraft:block.cave_vines.hit": {
"protocol_id": 261
},
- "minecraft:block.cherry_wood_pressure_plate.click_off": {
- "protocol_id": 272
+ "minecraft:block.cave_vines.pick_berries": {
+ "protocol_id": 264
},
- "minecraft:block.cherry_wood_pressure_plate.click_on": {
- "protocol_id": 273
+ "minecraft:block.cave_vines.place": {
+ "protocol_id": 262
},
- "minecraft:block.cherry_wood_trapdoor.close": {
+ "minecraft:block.cave_vines.step": {
+ "protocol_id": 263
+ },
+ "minecraft:block.chain.break": {
+ "protocol_id": 265
+ },
+ "minecraft:block.chain.fall": {
+ "protocol_id": 266
+ },
+ "minecraft:block.chain.hit": {
+ "protocol_id": 267
+ },
+ "minecraft:block.chain.place": {
"protocol_id": 268
},
- "minecraft:block.cherry_wood_trapdoor.open": {
+ "minecraft:block.chain.step": {
"protocol_id": 269
},
- "minecraft:block.chest.close": {
- "protocol_id": 276
+ "minecraft:block.cherry_leaves.break": {
+ "protocol_id": 280
},
- "minecraft:block.chest.locked": {
- "protocol_id": 277
+ "minecraft:block.cherry_leaves.fall": {
+ "protocol_id": 281
},
- "minecraft:block.chest.open": {
- "protocol_id": 278
+ "minecraft:block.cherry_leaves.hit": {
+ "protocol_id": 282
},
- "minecraft:block.chiseled_bookshelf.break": {
+ "minecraft:block.cherry_leaves.place": {
+ "protocol_id": 283
+ },
+ "minecraft:block.cherry_leaves.step": {
"protocol_id": 284
},
- "minecraft:block.chiseled_bookshelf.fall": {
- "protocol_id": 285
+ "minecraft:block.cherry_sapling.break": {
+ "protocol_id": 275
},
- "minecraft:block.chiseled_bookshelf.hit": {
- "protocol_id": 286
+ "minecraft:block.cherry_sapling.fall": {
+ "protocol_id": 276
},
- "minecraft:block.chiseled_bookshelf.insert": {
- "protocol_id": 287
+ "minecraft:block.cherry_sapling.hit": {
+ "protocol_id": 277
},
- "minecraft:block.chiseled_bookshelf.insert.enchanted": {
- "protocol_id": 288
+ "minecraft:block.cherry_sapling.place": {
+ "protocol_id": 278
},
- "minecraft:block.chiseled_bookshelf.pickup": {
- "protocol_id": 290
+ "minecraft:block.cherry_sapling.step": {
+ "protocol_id": 279
},
- "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
- "protocol_id": 291
+ "minecraft:block.cherry_wood.break": {
+ "protocol_id": 270
},
- "minecraft:block.chiseled_bookshelf.place": {
- "protocol_id": 292
+ "minecraft:block.cherry_wood.fall": {
+ "protocol_id": 271
},
- "minecraft:block.chiseled_bookshelf.step": {
- "protocol_id": 289
+ "minecraft:block.cherry_wood.hit": {
+ "protocol_id": 272
},
- "minecraft:block.chorus_flower.death": {
- "protocol_id": 293
+ "minecraft:block.cherry_wood.place": {
+ "protocol_id": 273
},
- "minecraft:block.chorus_flower.grow": {
+ "minecraft:block.cherry_wood.step": {
+ "protocol_id": 274
+ },
+ "minecraft:block.cherry_wood_button.click_off": {
"protocol_id": 294
},
- "minecraft:block.comparator.click": {
+ "minecraft:block.cherry_wood_button.click_on": {
+ "protocol_id": 295
+ },
+ "minecraft:block.cherry_wood_door.close": {
+ "protocol_id": 290
+ },
+ "minecraft:block.cherry_wood_door.open": {
+ "protocol_id": 291
+ },
+ "minecraft:block.cherry_wood_fence_gate.close": {
+ "protocol_id": 298
+ },
+ "minecraft:block.cherry_wood_fence_gate.open": {
+ "protocol_id": 299
+ },
+ "minecraft:block.cherry_wood_hanging_sign.break": {
+ "protocol_id": 286
+ },
+ "minecraft:block.cherry_wood_hanging_sign.fall": {
+ "protocol_id": 287
+ },
+ "minecraft:block.cherry_wood_hanging_sign.hit": {
+ "protocol_id": 288
+ },
+ "minecraft:block.cherry_wood_hanging_sign.place": {
+ "protocol_id": 289
+ },
+ "minecraft:block.cherry_wood_hanging_sign.step": {
+ "protocol_id": 285
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_off": {
+ "protocol_id": 296
+ },
+ "minecraft:block.cherry_wood_pressure_plate.click_on": {
+ "protocol_id": 297
+ },
+ "minecraft:block.cherry_wood_trapdoor.close": {
+ "protocol_id": 292
+ },
+ "minecraft:block.cherry_wood_trapdoor.open": {
+ "protocol_id": 293
+ },
+ "minecraft:block.chest.close": {
"protocol_id": 300
},
- "minecraft:block.composter.empty": {
+ "minecraft:block.chest.locked": {
"protocol_id": 301
},
- "minecraft:block.composter.fill": {
+ "minecraft:block.chest.open": {
"protocol_id": 302
},
- "minecraft:block.composter.fill_success": {
- "protocol_id": 303
- },
- "minecraft:block.composter.ready": {
- "protocol_id": 304
- },
- "minecraft:block.conduit.activate": {
- "protocol_id": 305
- },
- "minecraft:block.conduit.ambient": {
- "protocol_id": 306
- },
- "minecraft:block.conduit.ambient.short": {
- "protocol_id": 307
- },
- "minecraft:block.conduit.attack.target": {
+ "minecraft:block.chiseled_bookshelf.break": {
"protocol_id": 308
},
- "minecraft:block.conduit.deactivate": {
+ "minecraft:block.chiseled_bookshelf.fall": {
"protocol_id": 309
},
- "minecraft:block.copper.break": {
- "protocol_id": 317
- },
- "minecraft:block.copper.fall": {
- "protocol_id": 321
- },
- "minecraft:block.copper.hit": {
- "protocol_id": 320
- },
- "minecraft:block.copper.place": {
- "protocol_id": 319
- },
- "minecraft:block.copper.step": {
- "protocol_id": 318
- },
- "minecraft:block.copper_bulb.break": {
+ "minecraft:block.chiseled_bookshelf.hit": {
"protocol_id": 310
},
- "minecraft:block.copper_bulb.fall": {
- "protocol_id": 314
- },
- "minecraft:block.copper_bulb.hit": {
- "protocol_id": 313
- },
- "minecraft:block.copper_bulb.place": {
- "protocol_id": 312
- },
- "minecraft:block.copper_bulb.step": {
+ "minecraft:block.chiseled_bookshelf.insert": {
"protocol_id": 311
},
- "minecraft:block.copper_bulb.turn_off": {
- "protocol_id": 316
+ "minecraft:block.chiseled_bookshelf.insert.enchanted": {
+ "protocol_id": 312
},
- "minecraft:block.copper_bulb.turn_on": {
+ "minecraft:block.chiseled_bookshelf.pickup": {
+ "protocol_id": 314
+ },
+ "minecraft:block.chiseled_bookshelf.pickup.enchanted": {
"protocol_id": 315
},
- "minecraft:block.copper_door.close": {
- "protocol_id": 322
+ "minecraft:block.chiseled_bookshelf.place": {
+ "protocol_id": 316
},
- "minecraft:block.copper_door.open": {
- "protocol_id": 323
+ "minecraft:block.chiseled_bookshelf.step": {
+ "protocol_id": 313
},
- "minecraft:block.copper_grate.break": {
+ "minecraft:block.chorus_flower.death": {
+ "protocol_id": 317
+ },
+ "minecraft:block.chorus_flower.grow": {
+ "protocol_id": 318
+ },
+ "minecraft:block.cobweb.break": {
+ "protocol_id": 320
+ },
+ "minecraft:block.cobweb.fall": {
"protocol_id": 324
},
- "minecraft:block.copper_grate.fall": {
- "protocol_id": 328
+ "minecraft:block.cobweb.hit": {
+ "protocol_id": 323
},
- "minecraft:block.copper_grate.hit": {
- "protocol_id": 327
+ "minecraft:block.cobweb.place": {
+ "protocol_id": 322
},
- "minecraft:block.copper_grate.place": {
- "protocol_id": 326
+ "minecraft:block.cobweb.step": {
+ "protocol_id": 321
},
- "minecraft:block.copper_grate.step": {
- "protocol_id": 325
- },
- "minecraft:block.copper_trapdoor.close": {
+ "minecraft:block.comparator.click": {
"protocol_id": 329
},
- "minecraft:block.copper_trapdoor.open": {
+ "minecraft:block.composter.empty": {
"protocol_id": 330
},
- "minecraft:block.coral_block.break": {
+ "minecraft:block.composter.fill": {
"protocol_id": 331
},
- "minecraft:block.coral_block.fall": {
+ "minecraft:block.composter.fill_success": {
"protocol_id": 332
},
- "minecraft:block.coral_block.hit": {
+ "minecraft:block.composter.ready": {
"protocol_id": 333
},
- "minecraft:block.coral_block.place": {
+ "minecraft:block.conduit.activate": {
"protocol_id": 334
},
- "minecraft:block.coral_block.step": {
+ "minecraft:block.conduit.ambient": {
"protocol_id": 335
},
- "minecraft:block.crafter.craft": {
- "protocol_id": 341
+ "minecraft:block.conduit.ambient.short": {
+ "protocol_id": 336
},
- "minecraft:block.crafter.fail": {
- "protocol_id": 342
+ "minecraft:block.conduit.attack.target": {
+ "protocol_id": 337
},
- "minecraft:block.crop.break": {
+ "minecraft:block.conduit.deactivate": {
+ "protocol_id": 338
+ },
+ "minecraft:block.copper.break": {
"protocol_id": 346
},
- "minecraft:block.decorated_pot.break": {
- "protocol_id": 356
+ "minecraft:block.copper.fall": {
+ "protocol_id": 350
},
- "minecraft:block.decorated_pot.fall": {
+ "minecraft:block.copper.hit": {
+ "protocol_id": 349
+ },
+ "minecraft:block.copper.place": {
+ "protocol_id": 348
+ },
+ "minecraft:block.copper.step": {
+ "protocol_id": 347
+ },
+ "minecraft:block.copper_bulb.break": {
+ "protocol_id": 339
+ },
+ "minecraft:block.copper_bulb.fall": {
+ "protocol_id": 343
+ },
+ "minecraft:block.copper_bulb.hit": {
+ "protocol_id": 342
+ },
+ "minecraft:block.copper_bulb.place": {
+ "protocol_id": 341
+ },
+ "minecraft:block.copper_bulb.step": {
+ "protocol_id": 340
+ },
+ "minecraft:block.copper_bulb.turn_off": {
+ "protocol_id": 345
+ },
+ "minecraft:block.copper_bulb.turn_on": {
+ "protocol_id": 344
+ },
+ "minecraft:block.copper_door.close": {
+ "protocol_id": 351
+ },
+ "minecraft:block.copper_door.open": {
+ "protocol_id": 352
+ },
+ "minecraft:block.copper_grate.break": {
+ "protocol_id": 353
+ },
+ "minecraft:block.copper_grate.fall": {
"protocol_id": 357
},
- "minecraft:block.decorated_pot.hit": {
+ "minecraft:block.copper_grate.hit": {
+ "protocol_id": 356
+ },
+ "minecraft:block.copper_grate.place": {
+ "protocol_id": 355
+ },
+ "minecraft:block.copper_grate.step": {
+ "protocol_id": 354
+ },
+ "minecraft:block.copper_trapdoor.close": {
"protocol_id": 358
},
- "minecraft:block.decorated_pot.insert": {
+ "minecraft:block.copper_trapdoor.open": {
"protocol_id": 359
},
- "minecraft:block.decorated_pot.insert_fail": {
+ "minecraft:block.coral_block.break": {
"protocol_id": 360
},
- "minecraft:block.decorated_pot.place": {
- "protocol_id": 362
- },
- "minecraft:block.decorated_pot.shatter": {
- "protocol_id": 363
- },
- "minecraft:block.decorated_pot.step": {
+ "minecraft:block.coral_block.fall": {
"protocol_id": 361
},
- "minecraft:block.deepslate.break": {
- "protocol_id": 369
+ "minecraft:block.coral_block.hit": {
+ "protocol_id": 362
},
- "minecraft:block.deepslate.fall": {
- "protocol_id": 370
+ "minecraft:block.coral_block.place": {
+ "protocol_id": 363
},
- "minecraft:block.deepslate.hit": {
- "protocol_id": 371
- },
- "minecraft:block.deepslate.place": {
- "protocol_id": 372
- },
- "minecraft:block.deepslate.step": {
- "protocol_id": 373
- },
- "minecraft:block.deepslate_bricks.break": {
+ "minecraft:block.coral_block.step": {
"protocol_id": 364
},
- "minecraft:block.deepslate_bricks.fall": {
- "protocol_id": 365
+ "minecraft:block.crafter.craft": {
+ "protocol_id": 370
},
- "minecraft:block.deepslate_bricks.hit": {
- "protocol_id": 366
+ "minecraft:block.crafter.fail": {
+ "protocol_id": 371
},
- "minecraft:block.deepslate_bricks.place": {
- "protocol_id": 367
- },
- "minecraft:block.deepslate_bricks.step": {
- "protocol_id": 368
- },
- "minecraft:block.deepslate_tiles.break": {
- "protocol_id": 374
- },
- "minecraft:block.deepslate_tiles.fall": {
+ "minecraft:block.crop.break": {
"protocol_id": 375
},
- "minecraft:block.deepslate_tiles.hit": {
- "protocol_id": 376
+ "minecraft:block.decorated_pot.break": {
+ "protocol_id": 385
},
- "minecraft:block.deepslate_tiles.place": {
- "protocol_id": 377
+ "minecraft:block.decorated_pot.fall": {
+ "protocol_id": 386
},
- "minecraft:block.deepslate_tiles.step": {
- "protocol_id": 378
+ "minecraft:block.decorated_pot.hit": {
+ "protocol_id": 387
},
- "minecraft:block.dispenser.dispense": {
- "protocol_id": 379
+ "minecraft:block.decorated_pot.insert": {
+ "protocol_id": 388
},
- "minecraft:block.dispenser.fail": {
- "protocol_id": 380
+ "minecraft:block.decorated_pot.insert_fail": {
+ "protocol_id": 389
},
- "minecraft:block.dispenser.launch": {
- "protocol_id": 381
+ "minecraft:block.decorated_pot.place": {
+ "protocol_id": 391
},
- "minecraft:block.dripstone_block.break": {
+ "minecraft:block.decorated_pot.shatter": {
+ "protocol_id": 392
+ },
+ "minecraft:block.decorated_pot.step": {
+ "protocol_id": 390
+ },
+ "minecraft:block.deepslate.break": {
"protocol_id": 398
},
- "minecraft:block.dripstone_block.fall": {
- "protocol_id": 402
- },
- "minecraft:block.dripstone_block.hit": {
- "protocol_id": 401
- },
- "minecraft:block.dripstone_block.place": {
- "protocol_id": 400
- },
- "minecraft:block.dripstone_block.step": {
+ "minecraft:block.deepslate.fall": {
"protocol_id": 399
},
- "minecraft:block.enchantment_table.use": {
- "protocol_id": 435
+ "minecraft:block.deepslate.hit": {
+ "protocol_id": 400
},
- "minecraft:block.end_gateway.spawn": {
- "protocol_id": 458
+ "minecraft:block.deepslate.place": {
+ "protocol_id": 401
},
- "minecraft:block.end_portal.spawn": {
- "protocol_id": 460
+ "minecraft:block.deepslate.step": {
+ "protocol_id": 402
},
- "minecraft:block.end_portal_frame.fill": {
- "protocol_id": 459
+ "minecraft:block.deepslate_bricks.break": {
+ "protocol_id": 393
},
- "minecraft:block.ender_chest.close": {
- "protocol_id": 436
+ "minecraft:block.deepslate_bricks.fall": {
+ "protocol_id": 394
},
- "minecraft:block.ender_chest.open": {
- "protocol_id": 437
+ "minecraft:block.deepslate_bricks.hit": {
+ "protocol_id": 395
},
- "minecraft:block.fence_gate.close": {
- "protocol_id": 472
+ "minecraft:block.deepslate_bricks.place": {
+ "protocol_id": 396
},
- "minecraft:block.fence_gate.open": {
- "protocol_id": 473
+ "minecraft:block.deepslate_bricks.step": {
+ "protocol_id": 397
},
- "minecraft:block.fire.ambient": {
- "protocol_id": 483
- },
- "minecraft:block.fire.extinguish": {
- "protocol_id": 484
- },
- "minecraft:block.flowering_azalea.break": {
- "protocol_id": 490
- },
- "minecraft:block.flowering_azalea.fall": {
- "protocol_id": 491
- },
- "minecraft:block.flowering_azalea.hit": {
- "protocol_id": 492
- },
- "minecraft:block.flowering_azalea.place": {
- "protocol_id": 493
- },
- "minecraft:block.flowering_azalea.step": {
- "protocol_id": 494
- },
- "minecraft:block.froglight.break": {
- "protocol_id": 516
- },
- "minecraft:block.froglight.fall": {
- "protocol_id": 517
- },
- "minecraft:block.froglight.hit": {
- "protocol_id": 518
- },
- "minecraft:block.froglight.place": {
- "protocol_id": 519
- },
- "minecraft:block.froglight.step": {
- "protocol_id": 520
- },
- "minecraft:block.frogspawn.break": {
- "protocol_id": 522
- },
- "minecraft:block.frogspawn.fall": {
- "protocol_id": 523
- },
- "minecraft:block.frogspawn.hatch": {
- "protocol_id": 524
- },
- "minecraft:block.frogspawn.hit": {
- "protocol_id": 525
- },
- "minecraft:block.frogspawn.place": {
- "protocol_id": 526
- },
- "minecraft:block.frogspawn.step": {
- "protocol_id": 521
- },
- "minecraft:block.fungus.break": {
- "protocol_id": 914
- },
- "minecraft:block.fungus.fall": {
- "protocol_id": 918
- },
- "minecraft:block.fungus.hit": {
- "protocol_id": 917
- },
- "minecraft:block.fungus.place": {
- "protocol_id": 916
- },
- "minecraft:block.fungus.step": {
- "protocol_id": 915
- },
- "minecraft:block.furnace.fire_crackle": {
- "protocol_id": 540
- },
- "minecraft:block.gilded_blackstone.break": {
- "protocol_id": 558
- },
- "minecraft:block.gilded_blackstone.fall": {
- "protocol_id": 559
- },
- "minecraft:block.gilded_blackstone.hit": {
- "protocol_id": 560
- },
- "minecraft:block.gilded_blackstone.place": {
- "protocol_id": 561
- },
- "minecraft:block.gilded_blackstone.step": {
- "protocol_id": 562
- },
- "minecraft:block.glass.break": {
- "protocol_id": 563
- },
- "minecraft:block.glass.fall": {
- "protocol_id": 564
- },
- "minecraft:block.glass.hit": {
- "protocol_id": 565
- },
- "minecraft:block.glass.place": {
- "protocol_id": 566
- },
- "minecraft:block.glass.step": {
- "protocol_id": 567
- },
- "minecraft:block.grass.break": {
- "protocol_id": 598
- },
- "minecraft:block.grass.fall": {
- "protocol_id": 599
- },
- "minecraft:block.grass.hit": {
- "protocol_id": 600
- },
- "minecraft:block.grass.place": {
- "protocol_id": 601
- },
- "minecraft:block.grass.step": {
- "protocol_id": 602
- },
- "minecraft:block.gravel.break": {
- "protocol_id": 603
- },
- "minecraft:block.gravel.fall": {
- "protocol_id": 604
- },
- "minecraft:block.gravel.hit": {
- "protocol_id": 605
- },
- "minecraft:block.gravel.place": {
- "protocol_id": 606
- },
- "minecraft:block.gravel.step": {
- "protocol_id": 607
- },
- "minecraft:block.grindstone.use": {
- "protocol_id": 608
- },
- "minecraft:block.growing_plant.crop": {
- "protocol_id": 609
- },
- "minecraft:block.hanging_roots.break": {
- "protocol_id": 618
- },
- "minecraft:block.hanging_roots.fall": {
- "protocol_id": 619
- },
- "minecraft:block.hanging_roots.hit": {
- "protocol_id": 620
- },
- "minecraft:block.hanging_roots.place": {
- "protocol_id": 621
- },
- "minecraft:block.hanging_roots.step": {
- "protocol_id": 622
- },
- "minecraft:block.hanging_sign.break": {
- "protocol_id": 624
- },
- "minecraft:block.hanging_sign.fall": {
- "protocol_id": 625
- },
- "minecraft:block.hanging_sign.hit": {
- "protocol_id": 626
- },
- "minecraft:block.hanging_sign.place": {
- "protocol_id": 627
- },
- "minecraft:block.hanging_sign.step": {
- "protocol_id": 623
- },
- "minecraft:block.hanging_sign.waxed_interact_fail": {
- "protocol_id": 1451
- },
- "minecraft:block.honey_block.break": {
- "protocol_id": 658
- },
- "minecraft:block.honey_block.fall": {
- "protocol_id": 659
- },
- "minecraft:block.honey_block.hit": {
- "protocol_id": 660
- },
- "minecraft:block.honey_block.place": {
- "protocol_id": 661
- },
- "minecraft:block.honey_block.slide": {
- "protocol_id": 662
- },
- "minecraft:block.honey_block.step": {
- "protocol_id": 663
- },
- "minecraft:block.iron_door.close": {
- "protocol_id": 706
- },
- "minecraft:block.iron_door.open": {
- "protocol_id": 707
- },
- "minecraft:block.iron_trapdoor.close": {
- "protocol_id": 714
- },
- "minecraft:block.iron_trapdoor.open": {
- "protocol_id": 715
- },
- "minecraft:block.ladder.break": {
- "protocol_id": 723
- },
- "minecraft:block.ladder.fall": {
- "protocol_id": 724
- },
- "minecraft:block.ladder.hit": {
- "protocol_id": 725
- },
- "minecraft:block.ladder.place": {
- "protocol_id": 726
- },
- "minecraft:block.ladder.step": {
- "protocol_id": 727
- },
- "minecraft:block.lantern.break": {
- "protocol_id": 728
- },
- "minecraft:block.lantern.fall": {
- "protocol_id": 729
- },
- "minecraft:block.lantern.hit": {
- "protocol_id": 730
- },
- "minecraft:block.lantern.place": {
- "protocol_id": 731
- },
- "minecraft:block.lantern.step": {
- "protocol_id": 732
- },
- "minecraft:block.large_amethyst_bud.break": {
- "protocol_id": 733
- },
- "minecraft:block.large_amethyst_bud.place": {
- "protocol_id": 734
- },
- "minecraft:block.lava.ambient": {
- "protocol_id": 735
- },
- "minecraft:block.lava.extinguish": {
- "protocol_id": 736
- },
- "minecraft:block.lava.pop": {
- "protocol_id": 737
- },
- "minecraft:block.lever.click": {
- "protocol_id": 740
- },
- "minecraft:block.lily_pad.place": {
- "protocol_id": 1420
- },
- "minecraft:block.lodestone.break": {
- "protocol_id": 754
- },
- "minecraft:block.lodestone.fall": {
- "protocol_id": 758
- },
- "minecraft:block.lodestone.hit": {
- "protocol_id": 757
- },
- "minecraft:block.lodestone.place": {
- "protocol_id": 756
- },
- "minecraft:block.lodestone.step": {
- "protocol_id": 755
- },
- "minecraft:block.mangrove_roots.break": {
- "protocol_id": 766
- },
- "minecraft:block.mangrove_roots.fall": {
- "protocol_id": 767
- },
- "minecraft:block.mangrove_roots.hit": {
- "protocol_id": 768
- },
- "minecraft:block.mangrove_roots.place": {
- "protocol_id": 769
- },
- "minecraft:block.mangrove_roots.step": {
- "protocol_id": 770
- },
- "minecraft:block.medium_amethyst_bud.break": {
- "protocol_id": 771
- },
- "minecraft:block.medium_amethyst_bud.place": {
- "protocol_id": 772
- },
- "minecraft:block.metal.break": {
- "protocol_id": 773
- },
- "minecraft:block.metal.fall": {
- "protocol_id": 774
- },
- "minecraft:block.metal.hit": {
- "protocol_id": 775
- },
- "minecraft:block.metal.place": {
- "protocol_id": 776
- },
- "minecraft:block.metal.step": {
- "protocol_id": 779
- },
- "minecraft:block.metal_pressure_plate.click_off": {
- "protocol_id": 777
- },
- "minecraft:block.metal_pressure_plate.click_on": {
- "protocol_id": 778
- },
- "minecraft:block.moss.break": {
- "protocol_id": 798
- },
- "minecraft:block.moss.fall": {
- "protocol_id": 799
- },
- "minecraft:block.moss.hit": {
- "protocol_id": 800
- },
- "minecraft:block.moss.place": {
- "protocol_id": 801
- },
- "minecraft:block.moss.step": {
- "protocol_id": 802
- },
- "minecraft:block.moss_carpet.break": {
- "protocol_id": 788
- },
- "minecraft:block.moss_carpet.fall": {
- "protocol_id": 789
- },
- "minecraft:block.moss_carpet.hit": {
- "protocol_id": 790
- },
- "minecraft:block.moss_carpet.place": {
- "protocol_id": 791
- },
- "minecraft:block.moss_carpet.step": {
- "protocol_id": 792
- },
- "minecraft:block.mud.break": {
- "protocol_id": 803
- },
- "minecraft:block.mud.fall": {
- "protocol_id": 804
- },
- "minecraft:block.mud.hit": {
- "protocol_id": 805
- },
- "minecraft:block.mud.place": {
- "protocol_id": 806
- },
- "minecraft:block.mud.step": {
- "protocol_id": 807
- },
- "minecraft:block.mud_bricks.break": {
- "protocol_id": 808
- },
- "minecraft:block.mud_bricks.fall": {
- "protocol_id": 809
- },
- "minecraft:block.mud_bricks.hit": {
- "protocol_id": 810
- },
- "minecraft:block.mud_bricks.place": {
- "protocol_id": 811
- },
- "minecraft:block.mud_bricks.step": {
- "protocol_id": 812
- },
- "minecraft:block.muddy_mangrove_roots.break": {
- "protocol_id": 813
- },
- "minecraft:block.muddy_mangrove_roots.fall": {
- "protocol_id": 814
- },
- "minecraft:block.muddy_mangrove_roots.hit": {
- "protocol_id": 815
- },
- "minecraft:block.muddy_mangrove_roots.place": {
- "protocol_id": 816
- },
- "minecraft:block.muddy_mangrove_roots.step": {
- "protocol_id": 817
- },
- "minecraft:block.nether_bricks.break": {
- "protocol_id": 871
- },
- "minecraft:block.nether_bricks.fall": {
- "protocol_id": 875
- },
- "minecraft:block.nether_bricks.hit": {
- "protocol_id": 874
- },
- "minecraft:block.nether_bricks.place": {
- "protocol_id": 873
- },
- "minecraft:block.nether_bricks.step": {
- "protocol_id": 872
- },
- "minecraft:block.nether_gold_ore.break": {
- "protocol_id": 1112
- },
- "minecraft:block.nether_gold_ore.fall": {
- "protocol_id": 1113
- },
- "minecraft:block.nether_gold_ore.hit": {
- "protocol_id": 1114
- },
- "minecraft:block.nether_gold_ore.place": {
- "protocol_id": 1115
- },
- "minecraft:block.nether_gold_ore.step": {
- "protocol_id": 1116
- },
- "minecraft:block.nether_ore.break": {
- "protocol_id": 1117
- },
- "minecraft:block.nether_ore.fall": {
- "protocol_id": 1118
- },
- "minecraft:block.nether_ore.hit": {
- "protocol_id": 1119
- },
- "minecraft:block.nether_ore.place": {
- "protocol_id": 1120
- },
- "minecraft:block.nether_ore.step": {
- "protocol_id": 1121
- },
- "minecraft:block.nether_sprouts.break": {
- "protocol_id": 909
- },
- "minecraft:block.nether_sprouts.fall": {
- "protocol_id": 913
- },
- "minecraft:block.nether_sprouts.hit": {
- "protocol_id": 912
- },
- "minecraft:block.nether_sprouts.place": {
- "protocol_id": 911
- },
- "minecraft:block.nether_sprouts.step": {
- "protocol_id": 910
- },
- "minecraft:block.nether_wart.break": {
- "protocol_id": 876
- },
- "minecraft:block.nether_wood.break": {
- "protocol_id": 878
- },
- "minecraft:block.nether_wood.fall": {
- "protocol_id": 879
- },
- "minecraft:block.nether_wood.hit": {
- "protocol_id": 880
- },
- "minecraft:block.nether_wood.place": {
- "protocol_id": 881
- },
- "minecraft:block.nether_wood.step": {
- "protocol_id": 882
- },
- "minecraft:block.nether_wood_button.click_off": {
- "protocol_id": 887
- },
- "minecraft:block.nether_wood_button.click_on": {
- "protocol_id": 888
- },
- "minecraft:block.nether_wood_door.close": {
- "protocol_id": 883
- },
- "minecraft:block.nether_wood_door.open": {
- "protocol_id": 884
- },
- "minecraft:block.nether_wood_fence_gate.close": {
- "protocol_id": 891
- },
- "minecraft:block.nether_wood_fence_gate.open": {
- "protocol_id": 892
- },
- "minecraft:block.nether_wood_hanging_sign.break": {
- "protocol_id": 629
- },
- "minecraft:block.nether_wood_hanging_sign.fall": {
- "protocol_id": 630
- },
- "minecraft:block.nether_wood_hanging_sign.hit": {
- "protocol_id": 631
- },
- "minecraft:block.nether_wood_hanging_sign.place": {
- "protocol_id": 632
- },
- "minecraft:block.nether_wood_hanging_sign.step": {
- "protocol_id": 628
- },
- "minecraft:block.nether_wood_pressure_plate.click_off": {
- "protocol_id": 889
- },
- "minecraft:block.nether_wood_pressure_plate.click_on": {
- "protocol_id": 890
- },
- "minecraft:block.nether_wood_trapdoor.close": {
- "protocol_id": 885
- },
- "minecraft:block.nether_wood_trapdoor.open": {
- "protocol_id": 886
- },
- "minecraft:block.netherite_block.break": {
- "protocol_id": 929
- },
- "minecraft:block.netherite_block.fall": {
- "protocol_id": 933
- },
- "minecraft:block.netherite_block.hit": {
- "protocol_id": 932
- },
- "minecraft:block.netherite_block.place": {
- "protocol_id": 931
- },
- "minecraft:block.netherite_block.step": {
- "protocol_id": 930
- },
- "minecraft:block.netherrack.break": {
- "protocol_id": 934
- },
- "minecraft:block.netherrack.fall": {
- "protocol_id": 938
- },
- "minecraft:block.netherrack.hit": {
- "protocol_id": 937
- },
- "minecraft:block.netherrack.place": {
- "protocol_id": 936
- },
- "minecraft:block.netherrack.step": {
- "protocol_id": 935
- },
- "minecraft:block.note_block.banjo": {
- "protocol_id": 954
- },
- "minecraft:block.note_block.basedrum": {
- "protocol_id": 939
- },
- "minecraft:block.note_block.bass": {
- "protocol_id": 940
- },
- "minecraft:block.note_block.bell": {
- "protocol_id": 941
- },
- "minecraft:block.note_block.bit": {
- "protocol_id": 953
- },
- "minecraft:block.note_block.chime": {
- "protocol_id": 942
- },
- "minecraft:block.note_block.cow_bell": {
- "protocol_id": 951
- },
- "minecraft:block.note_block.didgeridoo": {
- "protocol_id": 952
- },
- "minecraft:block.note_block.flute": {
- "protocol_id": 943
- },
- "minecraft:block.note_block.guitar": {
- "protocol_id": 944
- },
- "minecraft:block.note_block.harp": {
- "protocol_id": 945
- },
- "minecraft:block.note_block.hat": {
- "protocol_id": 946
- },
- "minecraft:block.note_block.imitate.creeper": {
- "protocol_id": 957
- },
- "minecraft:block.note_block.imitate.ender_dragon": {
- "protocol_id": 958
- },
- "minecraft:block.note_block.imitate.piglin": {
- "protocol_id": 960
- },
- "minecraft:block.note_block.imitate.skeleton": {
- "protocol_id": 956
- },
- "minecraft:block.note_block.imitate.wither_skeleton": {
- "protocol_id": 959
- },
- "minecraft:block.note_block.imitate.zombie": {
- "protocol_id": 955
- },
- "minecraft:block.note_block.iron_xylophone": {
- "protocol_id": 950
- },
- "minecraft:block.note_block.pling": {
- "protocol_id": 947
- },
- "minecraft:block.note_block.snare": {
- "protocol_id": 948
- },
- "minecraft:block.note_block.xylophone": {
- "protocol_id": 949
- },
- "minecraft:block.nylium.break": {
- "protocol_id": 904
- },
- "minecraft:block.nylium.fall": {
- "protocol_id": 908
- },
- "minecraft:block.nylium.hit": {
- "protocol_id": 907
- },
- "minecraft:block.nylium.place": {
- "protocol_id": 906
- },
- "minecraft:block.nylium.step": {
- "protocol_id": 905
- },
- "minecraft:block.packed_mud.break": {
- "protocol_id": 894
- },
- "minecraft:block.packed_mud.fall": {
- "protocol_id": 895
- },
- "minecraft:block.packed_mud.hit": {
- "protocol_id": 896
- },
- "minecraft:block.packed_mud.place": {
- "protocol_id": 897
- },
- "minecraft:block.packed_mud.step": {
- "protocol_id": 898
- },
- "minecraft:block.pink_petals.break": {
- "protocol_id": 793
- },
- "minecraft:block.pink_petals.fall": {
- "protocol_id": 794
- },
- "minecraft:block.pink_petals.hit": {
- "protocol_id": 795
- },
- "minecraft:block.pink_petals.place": {
- "protocol_id": 796
- },
- "minecraft:block.pink_petals.step": {
- "protocol_id": 797
- },
- "minecraft:block.piston.contract": {
- "protocol_id": 1048
- },
- "minecraft:block.piston.extend": {
- "protocol_id": 1049
- },
- "minecraft:block.pointed_dripstone.break": {
+ "minecraft:block.deepslate_tiles.break": {
"protocol_id": 403
},
- "minecraft:block.pointed_dripstone.drip_lava": {
- "protocol_id": 409
- },
- "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": {
- "protocol_id": 411
- },
- "minecraft:block.pointed_dripstone.drip_water": {
- "protocol_id": 410
- },
- "minecraft:block.pointed_dripstone.drip_water_into_cauldron": {
- "protocol_id": 412
- },
- "minecraft:block.pointed_dripstone.fall": {
- "protocol_id": 407
- },
- "minecraft:block.pointed_dripstone.hit": {
- "protocol_id": 406
- },
- "minecraft:block.pointed_dripstone.land": {
- "protocol_id": 408
- },
- "minecraft:block.pointed_dripstone.place": {
- "protocol_id": 405
- },
- "minecraft:block.pointed_dripstone.step": {
+ "minecraft:block.deepslate_tiles.fall": {
"protocol_id": 404
},
- "minecraft:block.polished_deepslate.break": {
- "protocol_id": 1077
+ "minecraft:block.deepslate_tiles.hit": {
+ "protocol_id": 405
},
- "minecraft:block.polished_deepslate.fall": {
- "protocol_id": 1078
+ "minecraft:block.deepslate_tiles.place": {
+ "protocol_id": 406
},
- "minecraft:block.polished_deepslate.hit": {
- "protocol_id": 1079
+ "minecraft:block.deepslate_tiles.step": {
+ "protocol_id": 407
},
- "minecraft:block.polished_deepslate.place": {
- "protocol_id": 1080
+ "minecraft:block.dispenser.dispense": {
+ "protocol_id": 408
},
- "minecraft:block.polished_deepslate.step": {
- "protocol_id": 1081
+ "minecraft:block.dispenser.fail": {
+ "protocol_id": 409
},
- "minecraft:block.polished_tuff.break": {
- "protocol_id": 1361
+ "minecraft:block.dispenser.launch": {
+ "protocol_id": 410
},
- "minecraft:block.polished_tuff.fall": {
- "protocol_id": 1362
+ "minecraft:block.dripstone_block.break": {
+ "protocol_id": 428
},
- "minecraft:block.polished_tuff.hit": {
- "protocol_id": 1363
+ "minecraft:block.dripstone_block.fall": {
+ "protocol_id": 432
},
- "minecraft:block.polished_tuff.place": {
- "protocol_id": 1364
+ "minecraft:block.dripstone_block.hit": {
+ "protocol_id": 431
},
- "minecraft:block.polished_tuff.step": {
- "protocol_id": 1365
+ "minecraft:block.dripstone_block.place": {
+ "protocol_id": 430
},
- "minecraft:block.portal.ambient": {
- "protocol_id": 1082
+ "minecraft:block.dripstone_block.step": {
+ "protocol_id": 429
},
- "minecraft:block.portal.travel": {
- "protocol_id": 1083
+ "minecraft:block.enchantment_table.use": {
+ "protocol_id": 465
},
- "minecraft:block.portal.trigger": {
- "protocol_id": 1084
+ "minecraft:block.end_gateway.spawn": {
+ "protocol_id": 488
},
- "minecraft:block.powder_snow.break": {
- "protocol_id": 1085
+ "minecraft:block.end_portal.spawn": {
+ "protocol_id": 490
},
- "minecraft:block.powder_snow.fall": {
- "protocol_id": 1086
+ "minecraft:block.end_portal_frame.fill": {
+ "protocol_id": 489
},
- "minecraft:block.powder_snow.hit": {
- "protocol_id": 1087
+ "minecraft:block.ender_chest.close": {
+ "protocol_id": 466
},
- "minecraft:block.powder_snow.place": {
- "protocol_id": 1088
+ "minecraft:block.ender_chest.open": {
+ "protocol_id": 467
},
- "minecraft:block.powder_snow.step": {
- "protocol_id": 1089
+ "minecraft:block.fence_gate.close": {
+ "protocol_id": 502
},
- "minecraft:block.pumpkin.carve": {
- "protocol_id": 1097
+ "minecraft:block.fence_gate.open": {
+ "protocol_id": 503
},
- "minecraft:block.redstone_torch.burnout": {
- "protocol_id": 1122
- },
- "minecraft:block.respawn_anchor.ambient": {
- "protocol_id": 1123
- },
- "minecraft:block.respawn_anchor.charge": {
- "protocol_id": 1124
- },
- "minecraft:block.respawn_anchor.deplete": {
- "protocol_id": 1125
- },
- "minecraft:block.respawn_anchor.set_spawn": {
- "protocol_id": 1126
- },
- "minecraft:block.rooted_dirt.break": {
- "protocol_id": 1127
- },
- "minecraft:block.rooted_dirt.fall": {
- "protocol_id": 1128
- },
- "minecraft:block.rooted_dirt.hit": {
- "protocol_id": 1129
- },
- "minecraft:block.rooted_dirt.place": {
- "protocol_id": 1130
- },
- "minecraft:block.rooted_dirt.step": {
- "protocol_id": 1131
- },
- "minecraft:block.roots.break": {
- "protocol_id": 535
- },
- "minecraft:block.roots.fall": {
- "protocol_id": 539
- },
- "minecraft:block.roots.hit": {
- "protocol_id": 538
- },
- "minecraft:block.roots.place": {
- "protocol_id": 537
- },
- "minecraft:block.roots.step": {
- "protocol_id": 536
- },
- "minecraft:block.sand.break": {
- "protocol_id": 1136
- },
- "minecraft:block.sand.fall": {
- "protocol_id": 1137
- },
- "minecraft:block.sand.hit": {
- "protocol_id": 1138
- },
- "minecraft:block.sand.place": {
- "protocol_id": 1139
- },
- "minecraft:block.sand.step": {
- "protocol_id": 1140
- },
- "minecraft:block.scaffolding.break": {
- "protocol_id": 1141
- },
- "minecraft:block.scaffolding.fall": {
- "protocol_id": 1142
- },
- "minecraft:block.scaffolding.hit": {
- "protocol_id": 1143
- },
- "minecraft:block.scaffolding.place": {
- "protocol_id": 1144
- },
- "minecraft:block.scaffolding.step": {
- "protocol_id": 1145
- },
- "minecraft:block.sculk.break": {
- "protocol_id": 1148
- },
- "minecraft:block.sculk.charge": {
- "protocol_id": 1147
- },
- "minecraft:block.sculk.fall": {
- "protocol_id": 1149
- },
- "minecraft:block.sculk.hit": {
- "protocol_id": 1150
- },
- "minecraft:block.sculk.place": {
- "protocol_id": 1151
- },
- "minecraft:block.sculk.spread": {
- "protocol_id": 1146
- },
- "minecraft:block.sculk.step": {
- "protocol_id": 1152
- },
- "minecraft:block.sculk_catalyst.bloom": {
- "protocol_id": 1153
- },
- "minecraft:block.sculk_catalyst.break": {
- "protocol_id": 1154
- },
- "minecraft:block.sculk_catalyst.fall": {
- "protocol_id": 1155
- },
- "minecraft:block.sculk_catalyst.hit": {
- "protocol_id": 1156
- },
- "minecraft:block.sculk_catalyst.place": {
- "protocol_id": 1157
- },
- "minecraft:block.sculk_catalyst.step": {
- "protocol_id": 1158
- },
- "minecraft:block.sculk_sensor.break": {
- "protocol_id": 1161
- },
- "minecraft:block.sculk_sensor.clicking": {
- "protocol_id": 1159
- },
- "minecraft:block.sculk_sensor.clicking_stop": {
- "protocol_id": 1160
- },
- "minecraft:block.sculk_sensor.fall": {
- "protocol_id": 1162
- },
- "minecraft:block.sculk_sensor.hit": {
- "protocol_id": 1163
- },
- "minecraft:block.sculk_sensor.place": {
- "protocol_id": 1164
- },
- "minecraft:block.sculk_sensor.step": {
- "protocol_id": 1165
- },
- "minecraft:block.sculk_shrieker.break": {
- "protocol_id": 1166
- },
- "minecraft:block.sculk_shrieker.fall": {
- "protocol_id": 1167
- },
- "minecraft:block.sculk_shrieker.hit": {
- "protocol_id": 1168
- },
- "minecraft:block.sculk_shrieker.place": {
- "protocol_id": 1169
- },
- "minecraft:block.sculk_shrieker.shriek": {
- "protocol_id": 1170
- },
- "minecraft:block.sculk_shrieker.step": {
- "protocol_id": 1171
- },
- "minecraft:block.sculk_vein.break": {
- "protocol_id": 1172
- },
- "minecraft:block.sculk_vein.fall": {
- "protocol_id": 1173
- },
- "minecraft:block.sculk_vein.hit": {
- "protocol_id": 1174
- },
- "minecraft:block.sculk_vein.place": {
- "protocol_id": 1175
- },
- "minecraft:block.sculk_vein.step": {
- "protocol_id": 1176
- },
- "minecraft:block.shroomlight.break": {
- "protocol_id": 1184
- },
- "minecraft:block.shroomlight.fall": {
- "protocol_id": 1188
- },
- "minecraft:block.shroomlight.hit": {
- "protocol_id": 1187
- },
- "minecraft:block.shroomlight.place": {
- "protocol_id": 1186
- },
- "minecraft:block.shroomlight.step": {
- "protocol_id": 1185
- },
- "minecraft:block.shulker_box.close": {
- "protocol_id": 1191
- },
- "minecraft:block.shulker_box.open": {
- "protocol_id": 1192
- },
- "minecraft:block.sign.waxed_interact_fail": {
- "protocol_id": 1452
- },
- "minecraft:block.slime_block.break": {
- "protocol_id": 1225
- },
- "minecraft:block.slime_block.fall": {
- "protocol_id": 1226
- },
- "minecraft:block.slime_block.hit": {
- "protocol_id": 1227
- },
- "minecraft:block.slime_block.place": {
- "protocol_id": 1228
- },
- "minecraft:block.slime_block.step": {
- "protocol_id": 1229
- },
- "minecraft:block.small_amethyst_bud.break": {
- "protocol_id": 1230
- },
- "minecraft:block.small_amethyst_bud.place": {
- "protocol_id": 1231
- },
- "minecraft:block.small_dripleaf.break": {
- "protocol_id": 1232
- },
- "minecraft:block.small_dripleaf.fall": {
- "protocol_id": 1233
- },
- "minecraft:block.small_dripleaf.hit": {
- "protocol_id": 1234
- },
- "minecraft:block.small_dripleaf.place": {
- "protocol_id": 1235
- },
- "minecraft:block.small_dripleaf.step": {
- "protocol_id": 1236
- },
- "minecraft:block.smithing_table.use": {
- "protocol_id": 1266
- },
- "minecraft:block.smoker.smoke": {
- "protocol_id": 1267
- },
- "minecraft:block.sniffer_egg.crack": {
- "protocol_id": 1281
- },
- "minecraft:block.sniffer_egg.hatch": {
- "protocol_id": 1282
- },
- "minecraft:block.sniffer_egg.plop": {
- "protocol_id": 1280
- },
- "minecraft:block.snow.break": {
- "protocol_id": 1284
- },
- "minecraft:block.snow.fall": {
- "protocol_id": 1285
- },
- "minecraft:block.snow.hit": {
- "protocol_id": 1291
- },
- "minecraft:block.snow.place": {
- "protocol_id": 1292
- },
- "minecraft:block.snow.step": {
- "protocol_id": 1293
- },
- "minecraft:block.soul_sand.break": {
- "protocol_id": 1237
- },
- "minecraft:block.soul_sand.fall": {
- "protocol_id": 1241
- },
- "minecraft:block.soul_sand.hit": {
- "protocol_id": 1240
- },
- "minecraft:block.soul_sand.place": {
- "protocol_id": 1239
- },
- "minecraft:block.soul_sand.step": {
- "protocol_id": 1238
- },
- "minecraft:block.soul_soil.break": {
- "protocol_id": 1242
- },
- "minecraft:block.soul_soil.fall": {
- "protocol_id": 1246
- },
- "minecraft:block.soul_soil.hit": {
- "protocol_id": 1245
- },
- "minecraft:block.soul_soil.place": {
- "protocol_id": 1244
- },
- "minecraft:block.soul_soil.step": {
- "protocol_id": 1243
- },
- "minecraft:block.sponge.absorb": {
- "protocol_id": 1305
- },
- "minecraft:block.sponge.break": {
- "protocol_id": 1300
- },
- "minecraft:block.sponge.fall": {
- "protocol_id": 1301
- },
- "minecraft:block.sponge.hit": {
- "protocol_id": 1302
- },
- "minecraft:block.sponge.place": {
- "protocol_id": 1303
- },
- "minecraft:block.sponge.step": {
- "protocol_id": 1304
- },
- "minecraft:block.spore_blossom.break": {
- "protocol_id": 1248
- },
- "minecraft:block.spore_blossom.fall": {
- "protocol_id": 1249
- },
- "minecraft:block.spore_blossom.hit": {
- "protocol_id": 1250
- },
- "minecraft:block.spore_blossom.place": {
- "protocol_id": 1251
- },
- "minecraft:block.spore_blossom.step": {
- "protocol_id": 1252
- },
- "minecraft:block.stem.break": {
- "protocol_id": 899
- },
- "minecraft:block.stem.fall": {
- "protocol_id": 903
- },
- "minecraft:block.stem.hit": {
- "protocol_id": 902
- },
- "minecraft:block.stem.place": {
- "protocol_id": 901
- },
- "minecraft:block.stem.step": {
- "protocol_id": 900
- },
- "minecraft:block.stone.break": {
- "protocol_id": 1312
- },
- "minecraft:block.stone.fall": {
- "protocol_id": 1315
- },
- "minecraft:block.stone.hit": {
- "protocol_id": 1316
- },
- "minecraft:block.stone.place": {
- "protocol_id": 1317
- },
- "minecraft:block.stone.step": {
- "protocol_id": 1320
- },
- "minecraft:block.stone_button.click_off": {
- "protocol_id": 1313
- },
- "minecraft:block.stone_button.click_on": {
- "protocol_id": 1314
- },
- "minecraft:block.stone_pressure_plate.click_off": {
- "protocol_id": 1318
- },
- "minecraft:block.stone_pressure_plate.click_on": {
- "protocol_id": 1319
- },
- "minecraft:block.suspicious_gravel.break": {
- "protocol_id": 511
- },
- "minecraft:block.suspicious_gravel.fall": {
- "protocol_id": 515
- },
- "minecraft:block.suspicious_gravel.hit": {
- "protocol_id": 514
- },
- "minecraft:block.suspicious_gravel.place": {
+ "minecraft:block.fire.ambient": {
"protocol_id": 513
},
- "minecraft:block.suspicious_gravel.step": {
- "protocol_id": 512
+ "minecraft:block.fire.extinguish": {
+ "protocol_id": 514
},
- "minecraft:block.suspicious_sand.break": {
- "protocol_id": 506
+ "minecraft:block.flowering_azalea.break": {
+ "protocol_id": 520
},
- "minecraft:block.suspicious_sand.fall": {
- "protocol_id": 510
+ "minecraft:block.flowering_azalea.fall": {
+ "protocol_id": 521
},
- "minecraft:block.suspicious_sand.hit": {
- "protocol_id": 509
+ "minecraft:block.flowering_azalea.hit": {
+ "protocol_id": 522
},
- "minecraft:block.suspicious_sand.place": {
- "protocol_id": 508
+ "minecraft:block.flowering_azalea.place": {
+ "protocol_id": 523
},
- "minecraft:block.suspicious_sand.step": {
- "protocol_id": 507
+ "minecraft:block.flowering_azalea.step": {
+ "protocol_id": 524
},
- "minecraft:block.sweet_berry_bush.break": {
- "protocol_id": 1325
+ "minecraft:block.froglight.break": {
+ "protocol_id": 546
},
- "minecraft:block.sweet_berry_bush.pick_berries": {
- "protocol_id": 1327
+ "minecraft:block.froglight.fall": {
+ "protocol_id": 547
},
- "minecraft:block.sweet_berry_bush.place": {
- "protocol_id": 1326
+ "minecraft:block.froglight.hit": {
+ "protocol_id": 548
},
- "minecraft:block.trial_spawner.ambient": {
- "protocol_id": 645
+ "minecraft:block.froglight.place": {
+ "protocol_id": 549
},
- "minecraft:block.trial_spawner.break": {
+ "minecraft:block.froglight.step": {
+ "protocol_id": 550
+ },
+ "minecraft:block.frogspawn.break": {
+ "protocol_id": 552
+ },
+ "minecraft:block.frogspawn.fall": {
+ "protocol_id": 553
+ },
+ "minecraft:block.frogspawn.hatch": {
+ "protocol_id": 554
+ },
+ "minecraft:block.frogspawn.hit": {
+ "protocol_id": 555
+ },
+ "minecraft:block.frogspawn.place": {
+ "protocol_id": 556
+ },
+ "minecraft:block.frogspawn.step": {
+ "protocol_id": 551
+ },
+ "minecraft:block.fungus.break": {
+ "protocol_id": 958
+ },
+ "minecraft:block.fungus.fall": {
+ "protocol_id": 962
+ },
+ "minecraft:block.fungus.hit": {
+ "protocol_id": 961
+ },
+ "minecraft:block.fungus.place": {
+ "protocol_id": 960
+ },
+ "minecraft:block.fungus.step": {
+ "protocol_id": 959
+ },
+ "minecraft:block.furnace.fire_crackle": {
+ "protocol_id": 570
+ },
+ "minecraft:block.gilded_blackstone.break": {
+ "protocol_id": 588
+ },
+ "minecraft:block.gilded_blackstone.fall": {
+ "protocol_id": 589
+ },
+ "minecraft:block.gilded_blackstone.hit": {
+ "protocol_id": 590
+ },
+ "minecraft:block.gilded_blackstone.place": {
+ "protocol_id": 591
+ },
+ "minecraft:block.gilded_blackstone.step": {
+ "protocol_id": 592
+ },
+ "minecraft:block.glass.break": {
+ "protocol_id": 593
+ },
+ "minecraft:block.glass.fall": {
+ "protocol_id": 594
+ },
+ "minecraft:block.glass.hit": {
+ "protocol_id": 595
+ },
+ "minecraft:block.glass.place": {
+ "protocol_id": 596
+ },
+ "minecraft:block.glass.step": {
+ "protocol_id": 597
+ },
+ "minecraft:block.grass.break": {
+ "protocol_id": 628
+ },
+ "minecraft:block.grass.fall": {
+ "protocol_id": 629
+ },
+ "minecraft:block.grass.hit": {
+ "protocol_id": 630
+ },
+ "minecraft:block.grass.place": {
+ "protocol_id": 631
+ },
+ "minecraft:block.grass.step": {
+ "protocol_id": 632
+ },
+ "minecraft:block.gravel.break": {
+ "protocol_id": 633
+ },
+ "minecraft:block.gravel.fall": {
+ "protocol_id": 634
+ },
+ "minecraft:block.gravel.hit": {
+ "protocol_id": 635
+ },
+ "minecraft:block.gravel.place": {
+ "protocol_id": 636
+ },
+ "minecraft:block.gravel.step": {
+ "protocol_id": 637
+ },
+ "minecraft:block.grindstone.use": {
"protocol_id": 638
},
- "minecraft:block.trial_spawner.close_shutter": {
- "protocol_id": 647
- },
- "minecraft:block.trial_spawner.detect_player": {
- "protocol_id": 644
- },
- "minecraft:block.trial_spawner.eject_item": {
- "protocol_id": 648
- },
- "minecraft:block.trial_spawner.fall": {
- "protocol_id": 642
- },
- "minecraft:block.trial_spawner.hit": {
- "protocol_id": 641
- },
- "minecraft:block.trial_spawner.open_shutter": {
- "protocol_id": 646
- },
- "minecraft:block.trial_spawner.place": {
- "protocol_id": 640
- },
- "minecraft:block.trial_spawner.spawn_mob": {
- "protocol_id": 643
- },
- "minecraft:block.trial_spawner.step": {
+ "minecraft:block.growing_plant.crop": {
"protocol_id": 639
},
- "minecraft:block.tripwire.attach": {
- "protocol_id": 1343
+ "minecraft:block.hanging_roots.break": {
+ "protocol_id": 648
},
- "minecraft:block.tripwire.click_off": {
- "protocol_id": 1344
+ "minecraft:block.hanging_roots.fall": {
+ "protocol_id": 649
},
- "minecraft:block.tripwire.click_on": {
- "protocol_id": 1345
+ "minecraft:block.hanging_roots.hit": {
+ "protocol_id": 650
},
- "minecraft:block.tripwire.detach": {
- "protocol_id": 1346
+ "minecraft:block.hanging_roots.place": {
+ "protocol_id": 651
},
- "minecraft:block.tuff.break": {
- "protocol_id": 1351
+ "minecraft:block.hanging_roots.step": {
+ "protocol_id": 652
},
- "minecraft:block.tuff.fall": {
- "protocol_id": 1355
+ "minecraft:block.hanging_sign.break": {
+ "protocol_id": 654
},
- "minecraft:block.tuff.hit": {
- "protocol_id": 1354
+ "minecraft:block.hanging_sign.fall": {
+ "protocol_id": 655
},
- "minecraft:block.tuff.place": {
- "protocol_id": 1353
+ "minecraft:block.hanging_sign.hit": {
+ "protocol_id": 656
},
- "minecraft:block.tuff.step": {
- "protocol_id": 1352
+ "minecraft:block.hanging_sign.place": {
+ "protocol_id": 657
},
- "minecraft:block.tuff_bricks.break": {
- "protocol_id": 1356
+ "minecraft:block.hanging_sign.step": {
+ "protocol_id": 653
},
- "minecraft:block.tuff_bricks.fall": {
- "protocol_id": 1357
+ "minecraft:block.hanging_sign.waxed_interact_fail": {
+ "protocol_id": 1510
},
- "minecraft:block.tuff_bricks.hit": {
- "protocol_id": 1358
+ "minecraft:block.heavy_core.break": {
+ "protocol_id": 658
},
- "minecraft:block.tuff_bricks.place": {
- "protocol_id": 1359
+ "minecraft:block.heavy_core.fall": {
+ "protocol_id": 659
},
- "minecraft:block.tuff_bricks.step": {
- "protocol_id": 1360
+ "minecraft:block.heavy_core.hit": {
+ "protocol_id": 660
},
- "minecraft:block.vine.break": {
- "protocol_id": 1415
+ "minecraft:block.heavy_core.place": {
+ "protocol_id": 661
},
- "minecraft:block.vine.fall": {
- "protocol_id": 1416
+ "minecraft:block.heavy_core.step": {
+ "protocol_id": 662
},
- "minecraft:block.vine.hit": {
- "protocol_id": 1417
+ "minecraft:block.honey_block.break": {
+ "protocol_id": 698
},
- "minecraft:block.vine.place": {
- "protocol_id": 1418
+ "minecraft:block.honey_block.fall": {
+ "protocol_id": 699
},
- "minecraft:block.vine.step": {
- "protocol_id": 1419
+ "minecraft:block.honey_block.hit": {
+ "protocol_id": 700
},
- "minecraft:block.wart_block.break": {
- "protocol_id": 924
+ "minecraft:block.honey_block.place": {
+ "protocol_id": 701
},
- "minecraft:block.wart_block.fall": {
- "protocol_id": 928
+ "minecraft:block.honey_block.slide": {
+ "protocol_id": 702
},
- "minecraft:block.wart_block.hit": {
- "protocol_id": 927
+ "minecraft:block.honey_block.step": {
+ "protocol_id": 703
},
- "minecraft:block.wart_block.place": {
- "protocol_id": 926
+ "minecraft:block.iron_door.close": {
+ "protocol_id": 746
},
- "minecraft:block.wart_block.step": {
- "protocol_id": 925
+ "minecraft:block.iron_door.open": {
+ "protocol_id": 747
},
- "minecraft:block.water.ambient": {
- "protocol_id": 1453
+ "minecraft:block.iron_trapdoor.close": {
+ "protocol_id": 754
},
- "minecraft:block.weeping_vines.break": {
+ "minecraft:block.iron_trapdoor.open": {
+ "protocol_id": 755
+ },
+ "minecraft:block.ladder.break": {
+ "protocol_id": 763
+ },
+ "minecraft:block.ladder.fall": {
+ "protocol_id": 764
+ },
+ "minecraft:block.ladder.hit": {
+ "protocol_id": 765
+ },
+ "minecraft:block.ladder.place": {
+ "protocol_id": 766
+ },
+ "minecraft:block.ladder.step": {
+ "protocol_id": 767
+ },
+ "minecraft:block.lantern.break": {
+ "protocol_id": 768
+ },
+ "minecraft:block.lantern.fall": {
+ "protocol_id": 769
+ },
+ "minecraft:block.lantern.hit": {
+ "protocol_id": 770
+ },
+ "minecraft:block.lantern.place": {
+ "protocol_id": 771
+ },
+ "minecraft:block.lantern.step": {
+ "protocol_id": 772
+ },
+ "minecraft:block.large_amethyst_bud.break": {
+ "protocol_id": 773
+ },
+ "minecraft:block.large_amethyst_bud.place": {
+ "protocol_id": 774
+ },
+ "minecraft:block.lava.ambient": {
+ "protocol_id": 775
+ },
+ "minecraft:block.lava.extinguish": {
+ "protocol_id": 776
+ },
+ "minecraft:block.lava.pop": {
+ "protocol_id": 777
+ },
+ "minecraft:block.lever.click": {
+ "protocol_id": 780
+ },
+ "minecraft:block.lily_pad.place": {
+ "protocol_id": 1479
+ },
+ "minecraft:block.lodestone.break": {
+ "protocol_id": 794
+ },
+ "minecraft:block.lodestone.fall": {
+ "protocol_id": 798
+ },
+ "minecraft:block.lodestone.hit": {
+ "protocol_id": 797
+ },
+ "minecraft:block.lodestone.place": {
+ "protocol_id": 796
+ },
+ "minecraft:block.lodestone.step": {
+ "protocol_id": 795
+ },
+ "minecraft:block.mangrove_roots.break": {
+ "protocol_id": 809
+ },
+ "minecraft:block.mangrove_roots.fall": {
+ "protocol_id": 810
+ },
+ "minecraft:block.mangrove_roots.hit": {
+ "protocol_id": 811
+ },
+ "minecraft:block.mangrove_roots.place": {
+ "protocol_id": 812
+ },
+ "minecraft:block.mangrove_roots.step": {
+ "protocol_id": 813
+ },
+ "minecraft:block.medium_amethyst_bud.break": {
+ "protocol_id": 814
+ },
+ "minecraft:block.medium_amethyst_bud.place": {
+ "protocol_id": 815
+ },
+ "minecraft:block.metal.break": {
+ "protocol_id": 816
+ },
+ "minecraft:block.metal.fall": {
+ "protocol_id": 817
+ },
+ "minecraft:block.metal.hit": {
+ "protocol_id": 818
+ },
+ "minecraft:block.metal.place": {
+ "protocol_id": 819
+ },
+ "minecraft:block.metal.step": {
+ "protocol_id": 822
+ },
+ "minecraft:block.metal_pressure_plate.click_off": {
+ "protocol_id": 820
+ },
+ "minecraft:block.metal_pressure_plate.click_on": {
+ "protocol_id": 821
+ },
+ "minecraft:block.moss.break": {
+ "protocol_id": 841
+ },
+ "minecraft:block.moss.fall": {
+ "protocol_id": 842
+ },
+ "minecraft:block.moss.hit": {
+ "protocol_id": 843
+ },
+ "minecraft:block.moss.place": {
+ "protocol_id": 844
+ },
+ "minecraft:block.moss.step": {
+ "protocol_id": 845
+ },
+ "minecraft:block.moss_carpet.break": {
+ "protocol_id": 831
+ },
+ "minecraft:block.moss_carpet.fall": {
+ "protocol_id": 832
+ },
+ "minecraft:block.moss_carpet.hit": {
+ "protocol_id": 833
+ },
+ "minecraft:block.moss_carpet.place": {
+ "protocol_id": 834
+ },
+ "minecraft:block.moss_carpet.step": {
+ "protocol_id": 835
+ },
+ "minecraft:block.mud.break": {
+ "protocol_id": 846
+ },
+ "minecraft:block.mud.fall": {
+ "protocol_id": 847
+ },
+ "minecraft:block.mud.hit": {
+ "protocol_id": 848
+ },
+ "minecraft:block.mud.place": {
+ "protocol_id": 849
+ },
+ "minecraft:block.mud.step": {
+ "protocol_id": 850
+ },
+ "minecraft:block.mud_bricks.break": {
+ "protocol_id": 851
+ },
+ "minecraft:block.mud_bricks.fall": {
+ "protocol_id": 852
+ },
+ "minecraft:block.mud_bricks.hit": {
+ "protocol_id": 853
+ },
+ "minecraft:block.mud_bricks.place": {
+ "protocol_id": 854
+ },
+ "minecraft:block.mud_bricks.step": {
+ "protocol_id": 855
+ },
+ "minecraft:block.muddy_mangrove_roots.break": {
+ "protocol_id": 856
+ },
+ "minecraft:block.muddy_mangrove_roots.fall": {
+ "protocol_id": 857
+ },
+ "minecraft:block.muddy_mangrove_roots.hit": {
+ "protocol_id": 858
+ },
+ "minecraft:block.muddy_mangrove_roots.place": {
+ "protocol_id": 859
+ },
+ "minecraft:block.muddy_mangrove_roots.step": {
+ "protocol_id": 860
+ },
+ "minecraft:block.nether_bricks.break": {
+ "protocol_id": 915
+ },
+ "minecraft:block.nether_bricks.fall": {
"protocol_id": 919
},
- "minecraft:block.weeping_vines.fall": {
- "protocol_id": 923
+ "minecraft:block.nether_bricks.hit": {
+ "protocol_id": 918
},
- "minecraft:block.weeping_vines.hit": {
- "protocol_id": 922
+ "minecraft:block.nether_bricks.place": {
+ "protocol_id": 917
},
- "minecraft:block.weeping_vines.place": {
- "protocol_id": 921
+ "minecraft:block.nether_bricks.step": {
+ "protocol_id": 916
},
- "minecraft:block.weeping_vines.step": {
+ "minecraft:block.nether_gold_ore.break": {
+ "protocol_id": 1158
+ },
+ "minecraft:block.nether_gold_ore.fall": {
+ "protocol_id": 1159
+ },
+ "minecraft:block.nether_gold_ore.hit": {
+ "protocol_id": 1160
+ },
+ "minecraft:block.nether_gold_ore.place": {
+ "protocol_id": 1161
+ },
+ "minecraft:block.nether_gold_ore.step": {
+ "protocol_id": 1162
+ },
+ "minecraft:block.nether_ore.break": {
+ "protocol_id": 1163
+ },
+ "minecraft:block.nether_ore.fall": {
+ "protocol_id": 1164
+ },
+ "minecraft:block.nether_ore.hit": {
+ "protocol_id": 1165
+ },
+ "minecraft:block.nether_ore.place": {
+ "protocol_id": 1166
+ },
+ "minecraft:block.nether_ore.step": {
+ "protocol_id": 1167
+ },
+ "minecraft:block.nether_sprouts.break": {
+ "protocol_id": 953
+ },
+ "minecraft:block.nether_sprouts.fall": {
+ "protocol_id": 957
+ },
+ "minecraft:block.nether_sprouts.hit": {
+ "protocol_id": 956
+ },
+ "minecraft:block.nether_sprouts.place": {
+ "protocol_id": 955
+ },
+ "minecraft:block.nether_sprouts.step": {
+ "protocol_id": 954
+ },
+ "minecraft:block.nether_wart.break": {
"protocol_id": 920
},
+ "minecraft:block.nether_wood.break": {
+ "protocol_id": 922
+ },
+ "minecraft:block.nether_wood.fall": {
+ "protocol_id": 923
+ },
+ "minecraft:block.nether_wood.hit": {
+ "protocol_id": 924
+ },
+ "minecraft:block.nether_wood.place": {
+ "protocol_id": 925
+ },
+ "minecraft:block.nether_wood.step": {
+ "protocol_id": 926
+ },
+ "minecraft:block.nether_wood_button.click_off": {
+ "protocol_id": 931
+ },
+ "minecraft:block.nether_wood_button.click_on": {
+ "protocol_id": 932
+ },
+ "minecraft:block.nether_wood_door.close": {
+ "protocol_id": 927
+ },
+ "minecraft:block.nether_wood_door.open": {
+ "protocol_id": 928
+ },
+ "minecraft:block.nether_wood_fence_gate.close": {
+ "protocol_id": 935
+ },
+ "minecraft:block.nether_wood_fence_gate.open": {
+ "protocol_id": 936
+ },
+ "minecraft:block.nether_wood_hanging_sign.break": {
+ "protocol_id": 664
+ },
+ "minecraft:block.nether_wood_hanging_sign.fall": {
+ "protocol_id": 665
+ },
+ "minecraft:block.nether_wood_hanging_sign.hit": {
+ "protocol_id": 666
+ },
+ "minecraft:block.nether_wood_hanging_sign.place": {
+ "protocol_id": 667
+ },
+ "minecraft:block.nether_wood_hanging_sign.step": {
+ "protocol_id": 663
+ },
+ "minecraft:block.nether_wood_pressure_plate.click_off": {
+ "protocol_id": 933
+ },
+ "minecraft:block.nether_wood_pressure_plate.click_on": {
+ "protocol_id": 934
+ },
+ "minecraft:block.nether_wood_trapdoor.close": {
+ "protocol_id": 929
+ },
+ "minecraft:block.nether_wood_trapdoor.open": {
+ "protocol_id": 930
+ },
+ "minecraft:block.netherite_block.break": {
+ "protocol_id": 973
+ },
+ "minecraft:block.netherite_block.fall": {
+ "protocol_id": 977
+ },
+ "minecraft:block.netherite_block.hit": {
+ "protocol_id": 976
+ },
+ "minecraft:block.netherite_block.place": {
+ "protocol_id": 975
+ },
+ "minecraft:block.netherite_block.step": {
+ "protocol_id": 974
+ },
+ "minecraft:block.netherrack.break": {
+ "protocol_id": 978
+ },
+ "minecraft:block.netherrack.fall": {
+ "protocol_id": 982
+ },
+ "minecraft:block.netherrack.hit": {
+ "protocol_id": 981
+ },
+ "minecraft:block.netherrack.place": {
+ "protocol_id": 980
+ },
+ "minecraft:block.netherrack.step": {
+ "protocol_id": 979
+ },
+ "minecraft:block.note_block.banjo": {
+ "protocol_id": 998
+ },
+ "minecraft:block.note_block.basedrum": {
+ "protocol_id": 983
+ },
+ "minecraft:block.note_block.bass": {
+ "protocol_id": 984
+ },
+ "minecraft:block.note_block.bell": {
+ "protocol_id": 985
+ },
+ "minecraft:block.note_block.bit": {
+ "protocol_id": 997
+ },
+ "minecraft:block.note_block.chime": {
+ "protocol_id": 986
+ },
+ "minecraft:block.note_block.cow_bell": {
+ "protocol_id": 995
+ },
+ "minecraft:block.note_block.didgeridoo": {
+ "protocol_id": 996
+ },
+ "minecraft:block.note_block.flute": {
+ "protocol_id": 987
+ },
+ "minecraft:block.note_block.guitar": {
+ "protocol_id": 988
+ },
+ "minecraft:block.note_block.harp": {
+ "protocol_id": 989
+ },
+ "minecraft:block.note_block.hat": {
+ "protocol_id": 990
+ },
+ "minecraft:block.note_block.imitate.creeper": {
+ "protocol_id": 1001
+ },
+ "minecraft:block.note_block.imitate.ender_dragon": {
+ "protocol_id": 1002
+ },
+ "minecraft:block.note_block.imitate.piglin": {
+ "protocol_id": 1004
+ },
+ "minecraft:block.note_block.imitate.skeleton": {
+ "protocol_id": 1000
+ },
+ "minecraft:block.note_block.imitate.wither_skeleton": {
+ "protocol_id": 1003
+ },
+ "minecraft:block.note_block.imitate.zombie": {
+ "protocol_id": 999
+ },
+ "minecraft:block.note_block.iron_xylophone": {
+ "protocol_id": 994
+ },
+ "minecraft:block.note_block.pling": {
+ "protocol_id": 991
+ },
+ "minecraft:block.note_block.snare": {
+ "protocol_id": 992
+ },
+ "minecraft:block.note_block.xylophone": {
+ "protocol_id": 993
+ },
+ "minecraft:block.nylium.break": {
+ "protocol_id": 948
+ },
+ "minecraft:block.nylium.fall": {
+ "protocol_id": 952
+ },
+ "minecraft:block.nylium.hit": {
+ "protocol_id": 951
+ },
+ "minecraft:block.nylium.place": {
+ "protocol_id": 950
+ },
+ "minecraft:block.nylium.step": {
+ "protocol_id": 949
+ },
+ "minecraft:block.packed_mud.break": {
+ "protocol_id": 938
+ },
+ "minecraft:block.packed_mud.fall": {
+ "protocol_id": 939
+ },
+ "minecraft:block.packed_mud.hit": {
+ "protocol_id": 940
+ },
+ "minecraft:block.packed_mud.place": {
+ "protocol_id": 941
+ },
+ "minecraft:block.packed_mud.step": {
+ "protocol_id": 942
+ },
+ "minecraft:block.pink_petals.break": {
+ "protocol_id": 836
+ },
+ "minecraft:block.pink_petals.fall": {
+ "protocol_id": 837
+ },
+ "minecraft:block.pink_petals.hit": {
+ "protocol_id": 838
+ },
+ "minecraft:block.pink_petals.place": {
+ "protocol_id": 839
+ },
+ "minecraft:block.pink_petals.step": {
+ "protocol_id": 840
+ },
+ "minecraft:block.piston.contract": {
+ "protocol_id": 1094
+ },
+ "minecraft:block.piston.extend": {
+ "protocol_id": 1095
+ },
+ "minecraft:block.pointed_dripstone.break": {
+ "protocol_id": 433
+ },
+ "minecraft:block.pointed_dripstone.drip_lava": {
+ "protocol_id": 439
+ },
+ "minecraft:block.pointed_dripstone.drip_lava_into_cauldron": {
+ "protocol_id": 441
+ },
+ "minecraft:block.pointed_dripstone.drip_water": {
+ "protocol_id": 440
+ },
+ "minecraft:block.pointed_dripstone.drip_water_into_cauldron": {
+ "protocol_id": 442
+ },
+ "minecraft:block.pointed_dripstone.fall": {
+ "protocol_id": 437
+ },
+ "minecraft:block.pointed_dripstone.hit": {
+ "protocol_id": 436
+ },
+ "minecraft:block.pointed_dripstone.land": {
+ "protocol_id": 438
+ },
+ "minecraft:block.pointed_dripstone.place": {
+ "protocol_id": 435
+ },
+ "minecraft:block.pointed_dripstone.step": {
+ "protocol_id": 434
+ },
+ "minecraft:block.polished_deepslate.break": {
+ "protocol_id": 1123
+ },
+ "minecraft:block.polished_deepslate.fall": {
+ "protocol_id": 1124
+ },
+ "minecraft:block.polished_deepslate.hit": {
+ "protocol_id": 1125
+ },
+ "minecraft:block.polished_deepslate.place": {
+ "protocol_id": 1126
+ },
+ "minecraft:block.polished_deepslate.step": {
+ "protocol_id": 1127
+ },
+ "minecraft:block.polished_tuff.break": {
+ "protocol_id": 1407
+ },
+ "minecraft:block.polished_tuff.fall": {
+ "protocol_id": 1408
+ },
+ "minecraft:block.polished_tuff.hit": {
+ "protocol_id": 1409
+ },
+ "minecraft:block.polished_tuff.place": {
+ "protocol_id": 1410
+ },
+ "minecraft:block.polished_tuff.step": {
+ "protocol_id": 1411
+ },
+ "minecraft:block.portal.ambient": {
+ "protocol_id": 1128
+ },
+ "minecraft:block.portal.travel": {
+ "protocol_id": 1129
+ },
+ "minecraft:block.portal.trigger": {
+ "protocol_id": 1130
+ },
+ "minecraft:block.powder_snow.break": {
+ "protocol_id": 1131
+ },
+ "minecraft:block.powder_snow.fall": {
+ "protocol_id": 1132
+ },
+ "minecraft:block.powder_snow.hit": {
+ "protocol_id": 1133
+ },
+ "minecraft:block.powder_snow.place": {
+ "protocol_id": 1134
+ },
+ "minecraft:block.powder_snow.step": {
+ "protocol_id": 1135
+ },
+ "minecraft:block.pumpkin.carve": {
+ "protocol_id": 1143
+ },
+ "minecraft:block.redstone_torch.burnout": {
+ "protocol_id": 1168
+ },
+ "minecraft:block.respawn_anchor.ambient": {
+ "protocol_id": 1169
+ },
+ "minecraft:block.respawn_anchor.charge": {
+ "protocol_id": 1170
+ },
+ "minecraft:block.respawn_anchor.deplete": {
+ "protocol_id": 1171
+ },
+ "minecraft:block.respawn_anchor.set_spawn": {
+ "protocol_id": 1172
+ },
+ "minecraft:block.rooted_dirt.break": {
+ "protocol_id": 1173
+ },
+ "minecraft:block.rooted_dirt.fall": {
+ "protocol_id": 1174
+ },
+ "minecraft:block.rooted_dirt.hit": {
+ "protocol_id": 1175
+ },
+ "minecraft:block.rooted_dirt.place": {
+ "protocol_id": 1176
+ },
+ "minecraft:block.rooted_dirt.step": {
+ "protocol_id": 1177
+ },
+ "minecraft:block.roots.break": {
+ "protocol_id": 565
+ },
+ "minecraft:block.roots.fall": {
+ "protocol_id": 569
+ },
+ "minecraft:block.roots.hit": {
+ "protocol_id": 568
+ },
+ "minecraft:block.roots.place": {
+ "protocol_id": 567
+ },
+ "minecraft:block.roots.step": {
+ "protocol_id": 566
+ },
+ "minecraft:block.sand.break": {
+ "protocol_id": 1182
+ },
+ "minecraft:block.sand.fall": {
+ "protocol_id": 1183
+ },
+ "minecraft:block.sand.hit": {
+ "protocol_id": 1184
+ },
+ "minecraft:block.sand.place": {
+ "protocol_id": 1185
+ },
+ "minecraft:block.sand.step": {
+ "protocol_id": 1186
+ },
+ "minecraft:block.scaffolding.break": {
+ "protocol_id": 1187
+ },
+ "minecraft:block.scaffolding.fall": {
+ "protocol_id": 1188
+ },
+ "minecraft:block.scaffolding.hit": {
+ "protocol_id": 1189
+ },
+ "minecraft:block.scaffolding.place": {
+ "protocol_id": 1190
+ },
+ "minecraft:block.scaffolding.step": {
+ "protocol_id": 1191
+ },
+ "minecraft:block.sculk.break": {
+ "protocol_id": 1194
+ },
+ "minecraft:block.sculk.charge": {
+ "protocol_id": 1193
+ },
+ "minecraft:block.sculk.fall": {
+ "protocol_id": 1195
+ },
+ "minecraft:block.sculk.hit": {
+ "protocol_id": 1196
+ },
+ "minecraft:block.sculk.place": {
+ "protocol_id": 1197
+ },
+ "minecraft:block.sculk.spread": {
+ "protocol_id": 1192
+ },
+ "minecraft:block.sculk.step": {
+ "protocol_id": 1198
+ },
+ "minecraft:block.sculk_catalyst.bloom": {
+ "protocol_id": 1199
+ },
+ "minecraft:block.sculk_catalyst.break": {
+ "protocol_id": 1200
+ },
+ "minecraft:block.sculk_catalyst.fall": {
+ "protocol_id": 1201
+ },
+ "minecraft:block.sculk_catalyst.hit": {
+ "protocol_id": 1202
+ },
+ "minecraft:block.sculk_catalyst.place": {
+ "protocol_id": 1203
+ },
+ "minecraft:block.sculk_catalyst.step": {
+ "protocol_id": 1204
+ },
+ "minecraft:block.sculk_sensor.break": {
+ "protocol_id": 1207
+ },
+ "minecraft:block.sculk_sensor.clicking": {
+ "protocol_id": 1205
+ },
+ "minecraft:block.sculk_sensor.clicking_stop": {
+ "protocol_id": 1206
+ },
+ "minecraft:block.sculk_sensor.fall": {
+ "protocol_id": 1208
+ },
+ "minecraft:block.sculk_sensor.hit": {
+ "protocol_id": 1209
+ },
+ "minecraft:block.sculk_sensor.place": {
+ "protocol_id": 1210
+ },
+ "minecraft:block.sculk_sensor.step": {
+ "protocol_id": 1211
+ },
+ "minecraft:block.sculk_shrieker.break": {
+ "protocol_id": 1212
+ },
+ "minecraft:block.sculk_shrieker.fall": {
+ "protocol_id": 1213
+ },
+ "minecraft:block.sculk_shrieker.hit": {
+ "protocol_id": 1214
+ },
+ "minecraft:block.sculk_shrieker.place": {
+ "protocol_id": 1215
+ },
+ "minecraft:block.sculk_shrieker.shriek": {
+ "protocol_id": 1216
+ },
+ "minecraft:block.sculk_shrieker.step": {
+ "protocol_id": 1217
+ },
+ "minecraft:block.sculk_vein.break": {
+ "protocol_id": 1218
+ },
+ "minecraft:block.sculk_vein.fall": {
+ "protocol_id": 1219
+ },
+ "minecraft:block.sculk_vein.hit": {
+ "protocol_id": 1220
+ },
+ "minecraft:block.sculk_vein.place": {
+ "protocol_id": 1221
+ },
+ "minecraft:block.sculk_vein.step": {
+ "protocol_id": 1222
+ },
+ "minecraft:block.shroomlight.break": {
+ "protocol_id": 1230
+ },
+ "minecraft:block.shroomlight.fall": {
+ "protocol_id": 1234
+ },
+ "minecraft:block.shroomlight.hit": {
+ "protocol_id": 1233
+ },
+ "minecraft:block.shroomlight.place": {
+ "protocol_id": 1232
+ },
+ "minecraft:block.shroomlight.step": {
+ "protocol_id": 1231
+ },
+ "minecraft:block.shulker_box.close": {
+ "protocol_id": 1237
+ },
+ "minecraft:block.shulker_box.open": {
+ "protocol_id": 1238
+ },
+ "minecraft:block.sign.waxed_interact_fail": {
+ "protocol_id": 1511
+ },
+ "minecraft:block.slime_block.break": {
+ "protocol_id": 1271
+ },
+ "minecraft:block.slime_block.fall": {
+ "protocol_id": 1272
+ },
+ "minecraft:block.slime_block.hit": {
+ "protocol_id": 1273
+ },
+ "minecraft:block.slime_block.place": {
+ "protocol_id": 1274
+ },
+ "minecraft:block.slime_block.step": {
+ "protocol_id": 1275
+ },
+ "minecraft:block.small_amethyst_bud.break": {
+ "protocol_id": 1276
+ },
+ "minecraft:block.small_amethyst_bud.place": {
+ "protocol_id": 1277
+ },
+ "minecraft:block.small_dripleaf.break": {
+ "protocol_id": 1278
+ },
+ "minecraft:block.small_dripleaf.fall": {
+ "protocol_id": 1279
+ },
+ "minecraft:block.small_dripleaf.hit": {
+ "protocol_id": 1280
+ },
+ "minecraft:block.small_dripleaf.place": {
+ "protocol_id": 1281
+ },
+ "minecraft:block.small_dripleaf.step": {
+ "protocol_id": 1282
+ },
+ "minecraft:block.smithing_table.use": {
+ "protocol_id": 1312
+ },
+ "minecraft:block.smoker.smoke": {
+ "protocol_id": 1313
+ },
+ "minecraft:block.sniffer_egg.crack": {
+ "protocol_id": 1327
+ },
+ "minecraft:block.sniffer_egg.hatch": {
+ "protocol_id": 1328
+ },
+ "minecraft:block.sniffer_egg.plop": {
+ "protocol_id": 1326
+ },
+ "minecraft:block.snow.break": {
+ "protocol_id": 1330
+ },
+ "minecraft:block.snow.fall": {
+ "protocol_id": 1331
+ },
+ "minecraft:block.snow.hit": {
+ "protocol_id": 1337
+ },
+ "minecraft:block.snow.place": {
+ "protocol_id": 1338
+ },
+ "minecraft:block.snow.step": {
+ "protocol_id": 1339
+ },
+ "minecraft:block.soul_sand.break": {
+ "protocol_id": 1283
+ },
+ "minecraft:block.soul_sand.fall": {
+ "protocol_id": 1287
+ },
+ "minecraft:block.soul_sand.hit": {
+ "protocol_id": 1286
+ },
+ "minecraft:block.soul_sand.place": {
+ "protocol_id": 1285
+ },
+ "minecraft:block.soul_sand.step": {
+ "protocol_id": 1284
+ },
+ "minecraft:block.soul_soil.break": {
+ "protocol_id": 1288
+ },
+ "minecraft:block.soul_soil.fall": {
+ "protocol_id": 1292
+ },
+ "minecraft:block.soul_soil.hit": {
+ "protocol_id": 1291
+ },
+ "minecraft:block.soul_soil.place": {
+ "protocol_id": 1290
+ },
+ "minecraft:block.soul_soil.step": {
+ "protocol_id": 1289
+ },
+ "minecraft:block.sponge.absorb": {
+ "protocol_id": 1351
+ },
+ "minecraft:block.sponge.break": {
+ "protocol_id": 1346
+ },
+ "minecraft:block.sponge.fall": {
+ "protocol_id": 1347
+ },
+ "minecraft:block.sponge.hit": {
+ "protocol_id": 1348
+ },
+ "minecraft:block.sponge.place": {
+ "protocol_id": 1349
+ },
+ "minecraft:block.sponge.step": {
+ "protocol_id": 1350
+ },
+ "minecraft:block.spore_blossom.break": {
+ "protocol_id": 1294
+ },
+ "minecraft:block.spore_blossom.fall": {
+ "protocol_id": 1295
+ },
+ "minecraft:block.spore_blossom.hit": {
+ "protocol_id": 1296
+ },
+ "minecraft:block.spore_blossom.place": {
+ "protocol_id": 1297
+ },
+ "minecraft:block.spore_blossom.step": {
+ "protocol_id": 1298
+ },
+ "minecraft:block.stem.break": {
+ "protocol_id": 943
+ },
+ "minecraft:block.stem.fall": {
+ "protocol_id": 947
+ },
+ "minecraft:block.stem.hit": {
+ "protocol_id": 946
+ },
+ "minecraft:block.stem.place": {
+ "protocol_id": 945
+ },
+ "minecraft:block.stem.step": {
+ "protocol_id": 944
+ },
+ "minecraft:block.stone.break": {
+ "protocol_id": 1358
+ },
+ "minecraft:block.stone.fall": {
+ "protocol_id": 1361
+ },
+ "minecraft:block.stone.hit": {
+ "protocol_id": 1362
+ },
+ "minecraft:block.stone.place": {
+ "protocol_id": 1363
+ },
+ "minecraft:block.stone.step": {
+ "protocol_id": 1366
+ },
+ "minecraft:block.stone_button.click_off": {
+ "protocol_id": 1359
+ },
+ "minecraft:block.stone_button.click_on": {
+ "protocol_id": 1360
+ },
+ "minecraft:block.stone_pressure_plate.click_off": {
+ "protocol_id": 1364
+ },
+ "minecraft:block.stone_pressure_plate.click_on": {
+ "protocol_id": 1365
+ },
+ "minecraft:block.suspicious_gravel.break": {
+ "protocol_id": 541
+ },
+ "minecraft:block.suspicious_gravel.fall": {
+ "protocol_id": 545
+ },
+ "minecraft:block.suspicious_gravel.hit": {
+ "protocol_id": 544
+ },
+ "minecraft:block.suspicious_gravel.place": {
+ "protocol_id": 543
+ },
+ "minecraft:block.suspicious_gravel.step": {
+ "protocol_id": 542
+ },
+ "minecraft:block.suspicious_sand.break": {
+ "protocol_id": 536
+ },
+ "minecraft:block.suspicious_sand.fall": {
+ "protocol_id": 540
+ },
+ "minecraft:block.suspicious_sand.hit": {
+ "protocol_id": 539
+ },
+ "minecraft:block.suspicious_sand.place": {
+ "protocol_id": 538
+ },
+ "minecraft:block.suspicious_sand.step": {
+ "protocol_id": 537
+ },
+ "minecraft:block.sweet_berry_bush.break": {
+ "protocol_id": 1371
+ },
+ "minecraft:block.sweet_berry_bush.pick_berries": {
+ "protocol_id": 1373
+ },
+ "minecraft:block.sweet_berry_bush.place": {
+ "protocol_id": 1372
+ },
+ "minecraft:block.trial_spawner.about_to_spawn_item": {
+ "protocol_id": 679
+ },
+ "minecraft:block.trial_spawner.ambient": {
+ "protocol_id": 684
+ },
+ "minecraft:block.trial_spawner.ambient_charged": {
+ "protocol_id": 685
+ },
+ "minecraft:block.trial_spawner.break": {
+ "protocol_id": 673
+ },
+ "minecraft:block.trial_spawner.charge_activate": {
+ "protocol_id": 683
+ },
+ "minecraft:block.trial_spawner.close_shutter": {
+ "protocol_id": 687
+ },
+ "minecraft:block.trial_spawner.detect_player": {
+ "protocol_id": 682
+ },
+ "minecraft:block.trial_spawner.eject_item": {
+ "protocol_id": 688
+ },
+ "minecraft:block.trial_spawner.fall": {
+ "protocol_id": 677
+ },
+ "minecraft:block.trial_spawner.hit": {
+ "protocol_id": 676
+ },
+ "minecraft:block.trial_spawner.open_shutter": {
+ "protocol_id": 686
+ },
+ "minecraft:block.trial_spawner.place": {
+ "protocol_id": 675
+ },
+ "minecraft:block.trial_spawner.spawn_item": {
+ "protocol_id": 680
+ },
+ "minecraft:block.trial_spawner.spawn_item_begin": {
+ "protocol_id": 681
+ },
+ "minecraft:block.trial_spawner.spawn_mob": {
+ "protocol_id": 678
+ },
+ "minecraft:block.trial_spawner.step": {
+ "protocol_id": 674
+ },
+ "minecraft:block.tripwire.attach": {
+ "protocol_id": 1389
+ },
+ "minecraft:block.tripwire.click_off": {
+ "protocol_id": 1390
+ },
+ "minecraft:block.tripwire.click_on": {
+ "protocol_id": 1391
+ },
+ "minecraft:block.tripwire.detach": {
+ "protocol_id": 1392
+ },
+ "minecraft:block.tuff.break": {
+ "protocol_id": 1397
+ },
+ "minecraft:block.tuff.fall": {
+ "protocol_id": 1401
+ },
+ "minecraft:block.tuff.hit": {
+ "protocol_id": 1400
+ },
+ "minecraft:block.tuff.place": {
+ "protocol_id": 1399
+ },
+ "minecraft:block.tuff.step": {
+ "protocol_id": 1398
+ },
+ "minecraft:block.tuff_bricks.break": {
+ "protocol_id": 1402
+ },
+ "minecraft:block.tuff_bricks.fall": {
+ "protocol_id": 1403
+ },
+ "minecraft:block.tuff_bricks.hit": {
+ "protocol_id": 1404
+ },
+ "minecraft:block.tuff_bricks.place": {
+ "protocol_id": 1405
+ },
+ "minecraft:block.tuff_bricks.step": {
+ "protocol_id": 1406
+ },
+ "minecraft:block.vault.activate": {
+ "protocol_id": 1433
+ },
+ "minecraft:block.vault.ambient": {
+ "protocol_id": 1434
+ },
+ "minecraft:block.vault.break": {
+ "protocol_id": 1435
+ },
+ "minecraft:block.vault.close_shutter": {
+ "protocol_id": 1436
+ },
+ "minecraft:block.vault.deactivate": {
+ "protocol_id": 1437
+ },
+ "minecraft:block.vault.eject_item": {
+ "protocol_id": 1438
+ },
+ "minecraft:block.vault.fall": {
+ "protocol_id": 1439
+ },
+ "minecraft:block.vault.hit": {
+ "protocol_id": 1440
+ },
+ "minecraft:block.vault.insert_item": {
+ "protocol_id": 1441
+ },
+ "minecraft:block.vault.insert_item_fail": {
+ "protocol_id": 1442
+ },
+ "minecraft:block.vault.open_shutter": {
+ "protocol_id": 1443
+ },
+ "minecraft:block.vault.place": {
+ "protocol_id": 1444
+ },
+ "minecraft:block.vault.step": {
+ "protocol_id": 1445
+ },
+ "minecraft:block.vine.break": {
+ "protocol_id": 1474
+ },
+ "minecraft:block.vine.fall": {
+ "protocol_id": 1475
+ },
+ "minecraft:block.vine.hit": {
+ "protocol_id": 1476
+ },
+ "minecraft:block.vine.place": {
+ "protocol_id": 1477
+ },
+ "minecraft:block.vine.step": {
+ "protocol_id": 1478
+ },
+ "minecraft:block.wart_block.break": {
+ "protocol_id": 968
+ },
+ "minecraft:block.wart_block.fall": {
+ "protocol_id": 972
+ },
+ "minecraft:block.wart_block.hit": {
+ "protocol_id": 971
+ },
+ "minecraft:block.wart_block.place": {
+ "protocol_id": 970
+ },
+ "minecraft:block.wart_block.step": {
+ "protocol_id": 969
+ },
+ "minecraft:block.water.ambient": {
+ "protocol_id": 1512
+ },
+ "minecraft:block.weeping_vines.break": {
+ "protocol_id": 963
+ },
+ "minecraft:block.weeping_vines.fall": {
+ "protocol_id": 967
+ },
+ "minecraft:block.weeping_vines.hit": {
+ "protocol_id": 966
+ },
+ "minecraft:block.weeping_vines.place": {
+ "protocol_id": 965
+ },
+ "minecraft:block.weeping_vines.step": {
+ "protocol_id": 964
+ },
"minecraft:block.wet_grass.break": {
- "protocol_id": 1456
+ "protocol_id": 1515
},
"minecraft:block.wet_grass.fall": {
- "protocol_id": 1457
+ "protocol_id": 1516
},
"minecraft:block.wet_grass.hit": {
- "protocol_id": 1458
+ "protocol_id": 1517
},
"minecraft:block.wet_grass.place": {
- "protocol_id": 1459
+ "protocol_id": 1518
},
"minecraft:block.wet_grass.step": {
- "protocol_id": 1460
+ "protocol_id": 1519
},
"minecraft:block.wet_sponge.break": {
- "protocol_id": 1461
+ "protocol_id": 1520
+ },
+ "minecraft:block.wet_sponge.dries": {
+ "protocol_id": 1521
},
"minecraft:block.wet_sponge.fall": {
- "protocol_id": 1462
+ "protocol_id": 1522
},
"minecraft:block.wet_sponge.hit": {
- "protocol_id": 1463
+ "protocol_id": 1523
},
"minecraft:block.wet_sponge.place": {
- "protocol_id": 1464
+ "protocol_id": 1524
},
"minecraft:block.wet_sponge.step": {
- "protocol_id": 1465
+ "protocol_id": 1525
},
"minecraft:block.wood.break": {
- "protocol_id": 1500
+ "protocol_id": 1565
},
"minecraft:block.wood.fall": {
- "protocol_id": 1501
+ "protocol_id": 1566
},
"minecraft:block.wood.hit": {
- "protocol_id": 1502
+ "protocol_id": 1567
},
"minecraft:block.wood.place": {
- "protocol_id": 1503
+ "protocol_id": 1568
},
"minecraft:block.wood.step": {
- "protocol_id": 1504
+ "protocol_id": 1569
},
"minecraft:block.wooden_button.click_off": {
- "protocol_id": 1496
+ "protocol_id": 1561
},
"minecraft:block.wooden_button.click_on": {
- "protocol_id": 1497
+ "protocol_id": 1562
},
"minecraft:block.wooden_door.close": {
- "protocol_id": 1492
+ "protocol_id": 1557
},
"minecraft:block.wooden_door.open": {
- "protocol_id": 1493
+ "protocol_id": 1558
},
"minecraft:block.wooden_pressure_plate.click_off": {
- "protocol_id": 1498
+ "protocol_id": 1563
},
"minecraft:block.wooden_pressure_plate.click_on": {
- "protocol_id": 1499
+ "protocol_id": 1564
},
"minecraft:block.wooden_trapdoor.close": {
- "protocol_id": 1494
+ "protocol_id": 1559
},
"minecraft:block.wooden_trapdoor.open": {
- "protocol_id": 1495
+ "protocol_id": 1560
},
"minecraft:block.wool.break": {
- "protocol_id": 1505
+ "protocol_id": 1570
},
"minecraft:block.wool.fall": {
- "protocol_id": 1506
+ "protocol_id": 1571
},
"minecraft:block.wool.hit": {
- "protocol_id": 1507
+ "protocol_id": 1572
},
"minecraft:block.wool.place": {
- "protocol_id": 1508
+ "protocol_id": 1573
},
"minecraft:block.wool.step": {
- "protocol_id": 1509
+ "protocol_id": 1574
},
"minecraft:enchant.thorns.hit": {
- "protocol_id": 1332
+ "protocol_id": 1378
},
"minecraft:entity.allay.ambient_with_item": {
"protocol_id": 0
@@ -13454,2441 +14070,2558 @@
"minecraft:entity.allay.item_thrown": {
"protocol_id": 6
},
- "minecraft:entity.armor_stand.break": {
- "protocol_id": 63
- },
- "minecraft:entity.armor_stand.fall": {
- "protocol_id": 64
- },
- "minecraft:entity.armor_stand.hit": {
- "protocol_id": 65
- },
- "minecraft:entity.armor_stand.place": {
- "protocol_id": 66
- },
- "minecraft:entity.arrow.hit": {
- "protocol_id": 67
- },
- "minecraft:entity.arrow.hit_player": {
- "protocol_id": 68
- },
- "minecraft:entity.arrow.shoot": {
- "protocol_id": 69
- },
- "minecraft:entity.axolotl.attack": {
- "protocol_id": 73
- },
- "minecraft:entity.axolotl.death": {
- "protocol_id": 74
- },
- "minecraft:entity.axolotl.hurt": {
- "protocol_id": 75
- },
- "minecraft:entity.axolotl.idle_air": {
- "protocol_id": 76
- },
- "minecraft:entity.axolotl.idle_water": {
- "protocol_id": 77
- },
- "minecraft:entity.axolotl.splash": {
- "protocol_id": 78
- },
- "minecraft:entity.axolotl.swim": {
- "protocol_id": 79
- },
- "minecraft:entity.bat.ambient": {
- "protocol_id": 120
- },
- "minecraft:entity.bat.death": {
- "protocol_id": 121
- },
- "minecraft:entity.bat.hurt": {
- "protocol_id": 122
- },
- "minecraft:entity.bat.loop": {
- "protocol_id": 123
- },
- "minecraft:entity.bat.takeoff": {
- "protocol_id": 124
- },
- "minecraft:entity.bee.death": {
- "protocol_id": 129
- },
- "minecraft:entity.bee.hurt": {
- "protocol_id": 130
- },
- "minecraft:entity.bee.loop": {
- "protocol_id": 132
- },
- "minecraft:entity.bee.loop_aggressive": {
- "protocol_id": 131
- },
- "minecraft:entity.bee.pollinate": {
- "protocol_id": 134
- },
- "minecraft:entity.bee.sting": {
- "protocol_id": 133
- },
- "minecraft:entity.blaze.ambient": {
- "protocol_id": 147
- },
- "minecraft:entity.blaze.burn": {
- "protocol_id": 148
- },
- "minecraft:entity.blaze.death": {
- "protocol_id": 149
- },
- "minecraft:entity.blaze.hurt": {
- "protocol_id": 150
- },
- "minecraft:entity.blaze.shoot": {
- "protocol_id": 151
- },
- "minecraft:entity.boat.paddle_land": {
- "protocol_id": 152
- },
- "minecraft:entity.boat.paddle_water": {
- "protocol_id": 153
- },
- "minecraft:entity.breeze.death": {
- "protocol_id": 173
- },
- "minecraft:entity.breeze.hurt": {
- "protocol_id": 174
- },
- "minecraft:entity.breeze.idle_air": {
- "protocol_id": 168
- },
- "minecraft:entity.breeze.idle_ground": {
- "protocol_id": 167
- },
- "minecraft:entity.breeze.inhale": {
- "protocol_id": 166
- },
- "minecraft:entity.breeze.jump": {
- "protocol_id": 170
- },
- "minecraft:entity.breeze.land": {
- "protocol_id": 171
- },
- "minecraft:entity.breeze.shoot": {
- "protocol_id": 169
- },
- "minecraft:entity.breeze.slide": {
- "protocol_id": 172
- },
- "minecraft:entity.camel.ambient": {
- "protocol_id": 207
- },
- "minecraft:entity.camel.dash": {
- "protocol_id": 208
- },
- "minecraft:entity.camel.dash_ready": {
- "protocol_id": 209
- },
- "minecraft:entity.camel.death": {
- "protocol_id": 210
- },
- "minecraft:entity.camel.eat": {
- "protocol_id": 211
- },
- "minecraft:entity.camel.hurt": {
- "protocol_id": 212
- },
- "minecraft:entity.camel.saddle": {
- "protocol_id": 213
- },
- "minecraft:entity.camel.sit": {
- "protocol_id": 214
- },
- "minecraft:entity.camel.stand": {
- "protocol_id": 215
- },
- "minecraft:entity.camel.step": {
- "protocol_id": 216
- },
- "minecraft:entity.camel.step_sand": {
- "protocol_id": 217
- },
- "minecraft:entity.cat.ambient": {
- "protocol_id": 226
- },
- "minecraft:entity.cat.beg_for_food": {
- "protocol_id": 231
- },
- "minecraft:entity.cat.death": {
- "protocol_id": 228
- },
- "minecraft:entity.cat.eat": {
- "protocol_id": 229
- },
- "minecraft:entity.cat.hiss": {
- "protocol_id": 230
- },
- "minecraft:entity.cat.hurt": {
- "protocol_id": 232
- },
- "minecraft:entity.cat.purr": {
- "protocol_id": 233
- },
- "minecraft:entity.cat.purreow": {
- "protocol_id": 234
- },
- "minecraft:entity.cat.stray_ambient": {
- "protocol_id": 227
- },
- "minecraft:entity.chicken.ambient": {
- "protocol_id": 279
- },
- "minecraft:entity.chicken.death": {
- "protocol_id": 280
- },
- "minecraft:entity.chicken.egg": {
- "protocol_id": 281
- },
- "minecraft:entity.chicken.hurt": {
- "protocol_id": 282
- },
- "minecraft:entity.chicken.step": {
- "protocol_id": 283
- },
- "minecraft:entity.cod.ambient": {
- "protocol_id": 296
- },
- "minecraft:entity.cod.death": {
- "protocol_id": 297
- },
- "minecraft:entity.cod.flop": {
- "protocol_id": 298
- },
- "minecraft:entity.cod.hurt": {
- "protocol_id": 299
- },
- "minecraft:entity.cow.ambient": {
- "protocol_id": 336
- },
- "minecraft:entity.cow.death": {
- "protocol_id": 337
- },
- "minecraft:entity.cow.hurt": {
- "protocol_id": 338
- },
- "minecraft:entity.cow.milk": {
- "protocol_id": 339
- },
- "minecraft:entity.cow.step": {
- "protocol_id": 340
- },
- "minecraft:entity.creeper.death": {
- "protocol_id": 343
- },
- "minecraft:entity.creeper.hurt": {
- "protocol_id": 344
- },
- "minecraft:entity.creeper.primed": {
- "protocol_id": 345
- },
- "minecraft:entity.dolphin.ambient": {
- "protocol_id": 382
- },
- "minecraft:entity.dolphin.ambient_water": {
- "protocol_id": 383
- },
- "minecraft:entity.dolphin.attack": {
- "protocol_id": 384
- },
- "minecraft:entity.dolphin.death": {
- "protocol_id": 385
- },
- "minecraft:entity.dolphin.eat": {
- "protocol_id": 386
- },
- "minecraft:entity.dolphin.hurt": {
- "protocol_id": 387
- },
- "minecraft:entity.dolphin.jump": {
- "protocol_id": 388
- },
- "minecraft:entity.dolphin.play": {
- "protocol_id": 389
- },
- "minecraft:entity.dolphin.splash": {
- "protocol_id": 390
- },
- "minecraft:entity.dolphin.swim": {
- "protocol_id": 391
- },
- "minecraft:entity.donkey.ambient": {
- "protocol_id": 392
- },
- "minecraft:entity.donkey.angry": {
- "protocol_id": 393
- },
- "minecraft:entity.donkey.chest": {
- "protocol_id": 394
- },
- "minecraft:entity.donkey.death": {
- "protocol_id": 395
- },
- "minecraft:entity.donkey.eat": {
- "protocol_id": 396
- },
- "minecraft:entity.donkey.hurt": {
- "protocol_id": 397
- },
- "minecraft:entity.dragon_fireball.explode": {
- "protocol_id": 440
- },
- "minecraft:entity.drowned.ambient": {
- "protocol_id": 415
- },
- "minecraft:entity.drowned.ambient_water": {
- "protocol_id": 416
- },
- "minecraft:entity.drowned.death": {
- "protocol_id": 417
- },
- "minecraft:entity.drowned.death_water": {
- "protocol_id": 418
- },
- "minecraft:entity.drowned.hurt": {
- "protocol_id": 419
- },
- "minecraft:entity.drowned.hurt_water": {
- "protocol_id": 420
- },
- "minecraft:entity.drowned.shoot": {
- "protocol_id": 421
- },
- "minecraft:entity.drowned.step": {
- "protocol_id": 422
- },
- "minecraft:entity.drowned.swim": {
- "protocol_id": 423
- },
- "minecraft:entity.egg.throw": {
- "protocol_id": 425
- },
- "minecraft:entity.elder_guardian.ambient": {
- "protocol_id": 426
- },
- "minecraft:entity.elder_guardian.ambient_land": {
- "protocol_id": 427
- },
- "minecraft:entity.elder_guardian.curse": {
- "protocol_id": 428
- },
- "minecraft:entity.elder_guardian.death": {
- "protocol_id": 429
- },
- "minecraft:entity.elder_guardian.death_land": {
- "protocol_id": 430
- },
- "minecraft:entity.elder_guardian.flop": {
- "protocol_id": 431
- },
- "minecraft:entity.elder_guardian.hurt": {
- "protocol_id": 432
- },
- "minecraft:entity.elder_guardian.hurt_land": {
- "protocol_id": 433
- },
- "minecraft:entity.ender_dragon.ambient": {
- "protocol_id": 438
- },
- "minecraft:entity.ender_dragon.death": {
- "protocol_id": 439
- },
- "minecraft:entity.ender_dragon.flap": {
- "protocol_id": 441
- },
- "minecraft:entity.ender_dragon.growl": {
- "protocol_id": 442
- },
- "minecraft:entity.ender_dragon.hurt": {
- "protocol_id": 443
- },
- "minecraft:entity.ender_dragon.shoot": {
- "protocol_id": 444
- },
- "minecraft:entity.ender_eye.death": {
- "protocol_id": 445
- },
- "minecraft:entity.ender_eye.launch": {
- "protocol_id": 446
- },
- "minecraft:entity.ender_pearl.throw": {
- "protocol_id": 457
- },
- "minecraft:entity.enderman.ambient": {
- "protocol_id": 447
- },
- "minecraft:entity.enderman.death": {
- "protocol_id": 448
- },
- "minecraft:entity.enderman.hurt": {
- "protocol_id": 449
- },
- "minecraft:entity.enderman.scream": {
- "protocol_id": 450
- },
- "minecraft:entity.enderman.stare": {
- "protocol_id": 451
- },
- "minecraft:entity.enderman.teleport": {
- "protocol_id": 452
- },
- "minecraft:entity.endermite.ambient": {
- "protocol_id": 453
- },
- "minecraft:entity.endermite.death": {
- "protocol_id": 454
- },
- "minecraft:entity.endermite.hurt": {
- "protocol_id": 455
- },
- "minecraft:entity.endermite.step": {
- "protocol_id": 456
- },
- "minecraft:entity.evoker.ambient": {
- "protocol_id": 461
- },
- "minecraft:entity.evoker.cast_spell": {
- "protocol_id": 462
- },
- "minecraft:entity.evoker.celebrate": {
- "protocol_id": 463
- },
- "minecraft:entity.evoker.death": {
- "protocol_id": 464
- },
- "minecraft:entity.evoker.hurt": {
- "protocol_id": 466
- },
- "minecraft:entity.evoker.prepare_attack": {
- "protocol_id": 467
- },
- "minecraft:entity.evoker.prepare_summon": {
- "protocol_id": 468
- },
- "minecraft:entity.evoker.prepare_wololo": {
- "protocol_id": 469
- },
- "minecraft:entity.evoker_fangs.attack": {
- "protocol_id": 465
- },
- "minecraft:entity.experience_bottle.throw": {
- "protocol_id": 470
- },
- "minecraft:entity.experience_orb.pickup": {
- "protocol_id": 471
- },
- "minecraft:entity.firework_rocket.blast": {
- "protocol_id": 475
- },
- "minecraft:entity.firework_rocket.blast_far": {
- "protocol_id": 476
- },
- "minecraft:entity.firework_rocket.large_blast": {
- "protocol_id": 477
- },
- "minecraft:entity.firework_rocket.large_blast_far": {
- "protocol_id": 478
- },
- "minecraft:entity.firework_rocket.launch": {
- "protocol_id": 479
- },
- "minecraft:entity.firework_rocket.shoot": {
- "protocol_id": 480
- },
- "minecraft:entity.firework_rocket.twinkle": {
- "protocol_id": 481
- },
- "minecraft:entity.firework_rocket.twinkle_far": {
- "protocol_id": 482
- },
- "minecraft:entity.fish.swim": {
- "protocol_id": 485
- },
- "minecraft:entity.fishing_bobber.retrieve": {
- "protocol_id": 486
- },
- "minecraft:entity.fishing_bobber.splash": {
- "protocol_id": 487
- },
- "minecraft:entity.fishing_bobber.throw": {
- "protocol_id": 488
- },
- "minecraft:entity.fox.aggro": {
- "protocol_id": 495
- },
- "minecraft:entity.fox.ambient": {
- "protocol_id": 496
- },
- "minecraft:entity.fox.bite": {
- "protocol_id": 497
- },
- "minecraft:entity.fox.death": {
- "protocol_id": 498
- },
- "minecraft:entity.fox.eat": {
- "protocol_id": 499
- },
- "minecraft:entity.fox.hurt": {
- "protocol_id": 500
- },
- "minecraft:entity.fox.screech": {
- "protocol_id": 501
- },
- "minecraft:entity.fox.sleep": {
- "protocol_id": 502
- },
- "minecraft:entity.fox.sniff": {
- "protocol_id": 503
- },
- "minecraft:entity.fox.spit": {
- "protocol_id": 504
- },
- "minecraft:entity.fox.teleport": {
- "protocol_id": 505
- },
- "minecraft:entity.frog.ambient": {
- "protocol_id": 527
- },
- "minecraft:entity.frog.death": {
- "protocol_id": 528
- },
- "minecraft:entity.frog.eat": {
- "protocol_id": 529
- },
- "minecraft:entity.frog.hurt": {
- "protocol_id": 530
- },
- "minecraft:entity.frog.lay_spawn": {
- "protocol_id": 531
- },
- "minecraft:entity.frog.long_jump": {
- "protocol_id": 532
- },
- "minecraft:entity.frog.step": {
- "protocol_id": 533
- },
- "minecraft:entity.frog.tongue": {
- "protocol_id": 534
- },
- "minecraft:entity.generic.big_fall": {
- "protocol_id": 541
- },
- "minecraft:entity.generic.burn": {
- "protocol_id": 542
- },
- "minecraft:entity.generic.death": {
- "protocol_id": 543
- },
- "minecraft:entity.generic.drink": {
- "protocol_id": 544
- },
- "minecraft:entity.generic.eat": {
- "protocol_id": 545
- },
- "minecraft:entity.generic.explode": {
- "protocol_id": 546
- },
- "minecraft:entity.generic.extinguish_fire": {
- "protocol_id": 547
- },
- "minecraft:entity.generic.hurt": {
- "protocol_id": 548
- },
- "minecraft:entity.generic.small_fall": {
- "protocol_id": 549
- },
- "minecraft:entity.generic.splash": {
- "protocol_id": 550
- },
- "minecraft:entity.generic.swim": {
- "protocol_id": 551
- },
- "minecraft:entity.generic.wind_burst": {
- "protocol_id": 1466
- },
- "minecraft:entity.ghast.ambient": {
- "protocol_id": 552
- },
- "minecraft:entity.ghast.death": {
- "protocol_id": 553
- },
- "minecraft:entity.ghast.hurt": {
- "protocol_id": 554
- },
- "minecraft:entity.ghast.scream": {
- "protocol_id": 555
- },
- "minecraft:entity.ghast.shoot": {
- "protocol_id": 556
- },
- "minecraft:entity.ghast.warn": {
- "protocol_id": 557
- },
- "minecraft:entity.glow_item_frame.add_item": {
- "protocol_id": 569
- },
- "minecraft:entity.glow_item_frame.break": {
- "protocol_id": 570
- },
- "minecraft:entity.glow_item_frame.place": {
- "protocol_id": 571
- },
- "minecraft:entity.glow_item_frame.remove_item": {
- "protocol_id": 572
- },
- "minecraft:entity.glow_item_frame.rotate_item": {
- "protocol_id": 573
- },
- "minecraft:entity.glow_squid.ambient": {
- "protocol_id": 574
- },
- "minecraft:entity.glow_squid.death": {
- "protocol_id": 575
- },
- "minecraft:entity.glow_squid.hurt": {
- "protocol_id": 576
- },
- "minecraft:entity.glow_squid.squirt": {
- "protocol_id": 577
- },
- "minecraft:entity.goat.ambient": {
- "protocol_id": 578
- },
- "minecraft:entity.goat.death": {
- "protocol_id": 579
- },
- "minecraft:entity.goat.eat": {
- "protocol_id": 580
- },
- "minecraft:entity.goat.horn_break": {
- "protocol_id": 586
- },
- "minecraft:entity.goat.hurt": {
- "protocol_id": 581
- },
- "minecraft:entity.goat.long_jump": {
- "protocol_id": 582
- },
- "minecraft:entity.goat.milk": {
- "protocol_id": 583
- },
- "minecraft:entity.goat.prepare_ram": {
- "protocol_id": 584
- },
- "minecraft:entity.goat.ram_impact": {
- "protocol_id": 585
- },
- "minecraft:entity.goat.screaming.ambient": {
- "protocol_id": 588
- },
- "minecraft:entity.goat.screaming.death": {
- "protocol_id": 589
- },
- "minecraft:entity.goat.screaming.eat": {
- "protocol_id": 590
- },
- "minecraft:entity.goat.screaming.horn_break": {
- "protocol_id": 596
- },
- "minecraft:entity.goat.screaming.hurt": {
- "protocol_id": 591
- },
- "minecraft:entity.goat.screaming.long_jump": {
- "protocol_id": 592
- },
- "minecraft:entity.goat.screaming.milk": {
- "protocol_id": 593
- },
- "minecraft:entity.goat.screaming.prepare_ram": {
- "protocol_id": 594
- },
- "minecraft:entity.goat.screaming.ram_impact": {
- "protocol_id": 595
- },
- "minecraft:entity.goat.step": {
- "protocol_id": 597
- },
- "minecraft:entity.guardian.ambient": {
- "protocol_id": 610
- },
- "minecraft:entity.guardian.ambient_land": {
- "protocol_id": 611
- },
- "minecraft:entity.guardian.attack": {
- "protocol_id": 612
- },
- "minecraft:entity.guardian.death": {
- "protocol_id": 613
- },
- "minecraft:entity.guardian.death_land": {
- "protocol_id": 614
- },
- "minecraft:entity.guardian.flop": {
- "protocol_id": 615
- },
- "minecraft:entity.guardian.hurt": {
- "protocol_id": 616
- },
- "minecraft:entity.guardian.hurt_land": {
- "protocol_id": 617
- },
- "minecraft:entity.hoglin.ambient": {
- "protocol_id": 650
- },
- "minecraft:entity.hoglin.angry": {
- "protocol_id": 651
- },
- "minecraft:entity.hoglin.attack": {
- "protocol_id": 652
- },
- "minecraft:entity.hoglin.converted_to_zombified": {
- "protocol_id": 653
- },
- "minecraft:entity.hoglin.death": {
- "protocol_id": 654
- },
- "minecraft:entity.hoglin.hurt": {
- "protocol_id": 655
- },
- "minecraft:entity.hoglin.retreat": {
- "protocol_id": 656
- },
- "minecraft:entity.hoglin.step": {
- "protocol_id": 657
- },
- "minecraft:entity.horse.ambient": {
- "protocol_id": 674
- },
- "minecraft:entity.horse.angry": {
- "protocol_id": 675
- },
- "minecraft:entity.horse.armor": {
- "protocol_id": 676
- },
- "minecraft:entity.horse.breathe": {
- "protocol_id": 677
- },
- "minecraft:entity.horse.death": {
- "protocol_id": 678
- },
- "minecraft:entity.horse.eat": {
- "protocol_id": 679
- },
- "minecraft:entity.horse.gallop": {
- "protocol_id": 680
- },
- "minecraft:entity.horse.hurt": {
- "protocol_id": 681
- },
- "minecraft:entity.horse.jump": {
- "protocol_id": 682
- },
- "minecraft:entity.horse.land": {
- "protocol_id": 683
- },
- "minecraft:entity.horse.saddle": {
- "protocol_id": 684
- },
- "minecraft:entity.horse.step": {
- "protocol_id": 685
- },
- "minecraft:entity.horse.step_wood": {
- "protocol_id": 686
- },
- "minecraft:entity.hostile.big_fall": {
- "protocol_id": 687
- },
- "minecraft:entity.hostile.death": {
- "protocol_id": 688
- },
- "minecraft:entity.hostile.hurt": {
- "protocol_id": 689
- },
- "minecraft:entity.hostile.small_fall": {
- "protocol_id": 690
- },
- "minecraft:entity.hostile.splash": {
- "protocol_id": 691
- },
- "minecraft:entity.hostile.swim": {
- "protocol_id": 692
- },
- "minecraft:entity.husk.ambient": {
- "protocol_id": 693
- },
- "minecraft:entity.husk.converted_to_zombie": {
- "protocol_id": 694
- },
- "minecraft:entity.husk.death": {
- "protocol_id": 695
- },
- "minecraft:entity.husk.hurt": {
- "protocol_id": 696
- },
- "minecraft:entity.husk.step": {
- "protocol_id": 697
- },
- "minecraft:entity.illusioner.ambient": {
- "protocol_id": 698
- },
- "minecraft:entity.illusioner.cast_spell": {
- "protocol_id": 699
- },
- "minecraft:entity.illusioner.death": {
- "protocol_id": 700
- },
- "minecraft:entity.illusioner.hurt": {
- "protocol_id": 701
- },
- "minecraft:entity.illusioner.mirror_move": {
- "protocol_id": 702
- },
- "minecraft:entity.illusioner.prepare_blindness": {
- "protocol_id": 703
- },
- "minecraft:entity.illusioner.prepare_mirror": {
- "protocol_id": 704
- },
- "minecraft:entity.iron_golem.attack": {
- "protocol_id": 708
- },
- "minecraft:entity.iron_golem.damage": {
- "protocol_id": 709
- },
- "minecraft:entity.iron_golem.death": {
- "protocol_id": 710
- },
- "minecraft:entity.iron_golem.hurt": {
- "protocol_id": 711
- },
- "minecraft:entity.iron_golem.repair": {
- "protocol_id": 712
- },
- "minecraft:entity.iron_golem.step": {
- "protocol_id": 713
- },
- "minecraft:entity.item.break": {
- "protocol_id": 721
- },
- "minecraft:entity.item.pickup": {
- "protocol_id": 722
- },
- "minecraft:entity.item_frame.add_item": {
- "protocol_id": 716
- },
- "minecraft:entity.item_frame.break": {
- "protocol_id": 717
- },
- "minecraft:entity.item_frame.place": {
- "protocol_id": 718
- },
- "minecraft:entity.item_frame.remove_item": {
- "protocol_id": 719
- },
- "minecraft:entity.item_frame.rotate_item": {
- "protocol_id": 720
- },
- "minecraft:entity.leash_knot.break": {
- "protocol_id": 738
- },
- "minecraft:entity.leash_knot.place": {
- "protocol_id": 739
- },
- "minecraft:entity.lightning_bolt.impact": {
- "protocol_id": 741
- },
- "minecraft:entity.lightning_bolt.thunder": {
- "protocol_id": 742
- },
- "minecraft:entity.lingering_potion.throw": {
- "protocol_id": 743
- },
- "minecraft:entity.llama.ambient": {
- "protocol_id": 744
- },
- "minecraft:entity.llama.angry": {
- "protocol_id": 745
- },
- "minecraft:entity.llama.chest": {
- "protocol_id": 746
- },
- "minecraft:entity.llama.death": {
- "protocol_id": 747
- },
- "minecraft:entity.llama.eat": {
- "protocol_id": 748
- },
- "minecraft:entity.llama.hurt": {
- "protocol_id": 749
- },
- "minecraft:entity.llama.spit": {
- "protocol_id": 750
- },
- "minecraft:entity.llama.step": {
- "protocol_id": 751
- },
- "minecraft:entity.llama.swag": {
- "protocol_id": 752
- },
- "minecraft:entity.magma_cube.death": {
- "protocol_id": 760
- },
- "minecraft:entity.magma_cube.death_small": {
- "protocol_id": 753
- },
- "minecraft:entity.magma_cube.hurt": {
- "protocol_id": 761
- },
- "minecraft:entity.magma_cube.hurt_small": {
- "protocol_id": 762
- },
- "minecraft:entity.magma_cube.jump": {
- "protocol_id": 763
- },
- "minecraft:entity.magma_cube.squish": {
- "protocol_id": 764
- },
- "minecraft:entity.magma_cube.squish_small": {
- "protocol_id": 765
- },
- "minecraft:entity.minecart.inside": {
- "protocol_id": 781
- },
- "minecraft:entity.minecart.inside.underwater": {
- "protocol_id": 780
- },
- "minecraft:entity.minecart.riding": {
- "protocol_id": 782
- },
- "minecraft:entity.mooshroom.convert": {
- "protocol_id": 783
- },
- "minecraft:entity.mooshroom.eat": {
- "protocol_id": 784
- },
- "minecraft:entity.mooshroom.milk": {
- "protocol_id": 785
- },
- "minecraft:entity.mooshroom.shear": {
- "protocol_id": 787
- },
- "minecraft:entity.mooshroom.suspicious_milk": {
- "protocol_id": 786
- },
- "minecraft:entity.mule.ambient": {
- "protocol_id": 818
- },
- "minecraft:entity.mule.angry": {
- "protocol_id": 819
- },
- "minecraft:entity.mule.chest": {
- "protocol_id": 820
- },
- "minecraft:entity.mule.death": {
- "protocol_id": 821
- },
- "minecraft:entity.mule.eat": {
- "protocol_id": 822
- },
- "minecraft:entity.mule.hurt": {
- "protocol_id": 823
- },
- "minecraft:entity.ocelot.ambient": {
- "protocol_id": 962
- },
- "minecraft:entity.ocelot.death": {
- "protocol_id": 963
- },
- "minecraft:entity.ocelot.hurt": {
- "protocol_id": 961
- },
- "minecraft:entity.painting.break": {
- "protocol_id": 964
- },
- "minecraft:entity.painting.place": {
- "protocol_id": 965
- },
- "minecraft:entity.panda.aggressive_ambient": {
- "protocol_id": 973
- },
- "minecraft:entity.panda.ambient": {
- "protocol_id": 968
- },
- "minecraft:entity.panda.bite": {
- "protocol_id": 976
- },
- "minecraft:entity.panda.cant_breed": {
- "protocol_id": 972
- },
- "minecraft:entity.panda.death": {
- "protocol_id": 969
- },
- "minecraft:entity.panda.eat": {
- "protocol_id": 970
- },
- "minecraft:entity.panda.hurt": {
- "protocol_id": 975
- },
- "minecraft:entity.panda.pre_sneeze": {
- "protocol_id": 966
- },
- "minecraft:entity.panda.sneeze": {
- "protocol_id": 967
- },
- "minecraft:entity.panda.step": {
- "protocol_id": 971
- },
- "minecraft:entity.panda.worried_ambient": {
- "protocol_id": 974
- },
- "minecraft:entity.parrot.ambient": {
- "protocol_id": 977
- },
- "minecraft:entity.parrot.death": {
- "protocol_id": 978
- },
- "minecraft:entity.parrot.eat": {
- "protocol_id": 979
- },
- "minecraft:entity.parrot.fly": {
- "protocol_id": 980
- },
- "minecraft:entity.parrot.hurt": {
- "protocol_id": 981
- },
- "minecraft:entity.parrot.imitate.blaze": {
- "protocol_id": 982
- },
- "minecraft:entity.parrot.imitate.breeze": {
- "protocol_id": 983
- },
- "minecraft:entity.parrot.imitate.creeper": {
- "protocol_id": 984
- },
- "minecraft:entity.parrot.imitate.drowned": {
- "protocol_id": 985
- },
- "minecraft:entity.parrot.imitate.elder_guardian": {
- "protocol_id": 986
- },
- "minecraft:entity.parrot.imitate.ender_dragon": {
- "protocol_id": 987
- },
- "minecraft:entity.parrot.imitate.endermite": {
- "protocol_id": 988
- },
- "minecraft:entity.parrot.imitate.evoker": {
- "protocol_id": 989
- },
- "minecraft:entity.parrot.imitate.ghast": {
- "protocol_id": 990
- },
- "minecraft:entity.parrot.imitate.guardian": {
- "protocol_id": 991
- },
- "minecraft:entity.parrot.imitate.hoglin": {
- "protocol_id": 992
- },
- "minecraft:entity.parrot.imitate.husk": {
- "protocol_id": 993
- },
- "minecraft:entity.parrot.imitate.illusioner": {
- "protocol_id": 994
- },
- "minecraft:entity.parrot.imitate.magma_cube": {
- "protocol_id": 995
- },
- "minecraft:entity.parrot.imitate.phantom": {
- "protocol_id": 996
- },
- "minecraft:entity.parrot.imitate.piglin": {
- "protocol_id": 997
- },
- "minecraft:entity.parrot.imitate.piglin_brute": {
- "protocol_id": 998
- },
- "minecraft:entity.parrot.imitate.pillager": {
- "protocol_id": 999
- },
- "minecraft:entity.parrot.imitate.ravager": {
- "protocol_id": 1000
- },
- "minecraft:entity.parrot.imitate.shulker": {
- "protocol_id": 1001
- },
- "minecraft:entity.parrot.imitate.silverfish": {
- "protocol_id": 1002
- },
- "minecraft:entity.parrot.imitate.skeleton": {
- "protocol_id": 1003
- },
- "minecraft:entity.parrot.imitate.slime": {
- "protocol_id": 1004
- },
- "minecraft:entity.parrot.imitate.spider": {
- "protocol_id": 1005
- },
- "minecraft:entity.parrot.imitate.stray": {
- "protocol_id": 1006
- },
- "minecraft:entity.parrot.imitate.vex": {
- "protocol_id": 1007
- },
- "minecraft:entity.parrot.imitate.vindicator": {
- "protocol_id": 1008
- },
- "minecraft:entity.parrot.imitate.warden": {
- "protocol_id": 1009
- },
- "minecraft:entity.parrot.imitate.witch": {
- "protocol_id": 1010
- },
- "minecraft:entity.parrot.imitate.wither": {
- "protocol_id": 1011
- },
- "minecraft:entity.parrot.imitate.wither_skeleton": {
- "protocol_id": 1012
- },
- "minecraft:entity.parrot.imitate.zoglin": {
- "protocol_id": 1013
- },
- "minecraft:entity.parrot.imitate.zombie": {
- "protocol_id": 1014
- },
- "minecraft:entity.parrot.imitate.zombie_villager": {
- "protocol_id": 1015
- },
- "minecraft:entity.parrot.step": {
- "protocol_id": 1016
- },
- "minecraft:entity.phantom.ambient": {
- "protocol_id": 1017
- },
- "minecraft:entity.phantom.bite": {
- "protocol_id": 1018
- },
- "minecraft:entity.phantom.death": {
- "protocol_id": 1019
- },
- "minecraft:entity.phantom.flap": {
- "protocol_id": 1020
- },
- "minecraft:entity.phantom.hurt": {
- "protocol_id": 1021
- },
- "minecraft:entity.phantom.swoop": {
- "protocol_id": 1022
- },
- "minecraft:entity.pig.ambient": {
- "protocol_id": 1023
- },
- "minecraft:entity.pig.death": {
- "protocol_id": 1024
- },
- "minecraft:entity.pig.hurt": {
- "protocol_id": 1025
- },
- "minecraft:entity.pig.saddle": {
- "protocol_id": 1026
- },
- "minecraft:entity.pig.step": {
- "protocol_id": 1027
- },
- "minecraft:entity.piglin.admiring_item": {
- "protocol_id": 1028
- },
- "minecraft:entity.piglin.ambient": {
- "protocol_id": 1029
- },
- "minecraft:entity.piglin.angry": {
- "protocol_id": 1030
- },
- "minecraft:entity.piglin.celebrate": {
- "protocol_id": 1031
- },
- "minecraft:entity.piglin.converted_to_zombified": {
- "protocol_id": 1037
- },
- "minecraft:entity.piglin.death": {
- "protocol_id": 1032
- },
- "minecraft:entity.piglin.hurt": {
- "protocol_id": 1034
- },
- "minecraft:entity.piglin.jealous": {
- "protocol_id": 1033
- },
- "minecraft:entity.piglin.retreat": {
- "protocol_id": 1035
- },
- "minecraft:entity.piglin.step": {
- "protocol_id": 1036
- },
- "minecraft:entity.piglin_brute.ambient": {
- "protocol_id": 1038
- },
- "minecraft:entity.piglin_brute.angry": {
- "protocol_id": 1039
- },
- "minecraft:entity.piglin_brute.converted_to_zombified": {
- "protocol_id": 1043
- },
- "minecraft:entity.piglin_brute.death": {
- "protocol_id": 1040
- },
- "minecraft:entity.piglin_brute.hurt": {
- "protocol_id": 1041
- },
- "minecraft:entity.piglin_brute.step": {
- "protocol_id": 1042
- },
- "minecraft:entity.pillager.ambient": {
- "protocol_id": 1044
- },
- "minecraft:entity.pillager.celebrate": {
- "protocol_id": 1045
- },
- "minecraft:entity.pillager.death": {
- "protocol_id": 1046
- },
- "minecraft:entity.pillager.hurt": {
- "protocol_id": 1047
- },
- "minecraft:entity.player.attack.crit": {
- "protocol_id": 1050
- },
- "minecraft:entity.player.attack.knockback": {
- "protocol_id": 1051
- },
- "minecraft:entity.player.attack.nodamage": {
- "protocol_id": 1052
- },
- "minecraft:entity.player.attack.strong": {
- "protocol_id": 1053
- },
- "minecraft:entity.player.attack.sweep": {
- "protocol_id": 1054
- },
- "minecraft:entity.player.attack.weak": {
- "protocol_id": 1055
- },
- "minecraft:entity.player.big_fall": {
- "protocol_id": 1056
- },
- "minecraft:entity.player.breath": {
- "protocol_id": 1057
- },
- "minecraft:entity.player.burp": {
- "protocol_id": 1058
- },
- "minecraft:entity.player.death": {
- "protocol_id": 1059
- },
- "minecraft:entity.player.hurt": {
- "protocol_id": 1060
- },
- "minecraft:entity.player.hurt_drown": {
- "protocol_id": 1061
- },
- "minecraft:entity.player.hurt_freeze": {
- "protocol_id": 1062
- },
- "minecraft:entity.player.hurt_on_fire": {
- "protocol_id": 1063
- },
- "minecraft:entity.player.hurt_sweet_berry_bush": {
- "protocol_id": 1064
- },
- "minecraft:entity.player.levelup": {
- "protocol_id": 1065
- },
- "minecraft:entity.player.small_fall": {
- "protocol_id": 1066
- },
- "minecraft:entity.player.splash": {
- "protocol_id": 1067
- },
- "minecraft:entity.player.splash.high_speed": {
- "protocol_id": 1068
- },
- "minecraft:entity.player.swim": {
- "protocol_id": 1069
- },
- "minecraft:entity.player.teleport": {
- "protocol_id": 1070
- },
- "minecraft:entity.polar_bear.ambient": {
- "protocol_id": 1071
- },
- "minecraft:entity.polar_bear.ambient_baby": {
- "protocol_id": 1072
- },
- "minecraft:entity.polar_bear.death": {
- "protocol_id": 1073
- },
- "minecraft:entity.polar_bear.hurt": {
- "protocol_id": 1074
- },
- "minecraft:entity.polar_bear.step": {
- "protocol_id": 1075
- },
- "minecraft:entity.polar_bear.warning": {
- "protocol_id": 1076
- },
- "minecraft:entity.puffer_fish.ambient": {
- "protocol_id": 1090
- },
- "minecraft:entity.puffer_fish.blow_out": {
- "protocol_id": 1091
- },
- "minecraft:entity.puffer_fish.blow_up": {
- "protocol_id": 1092
- },
- "minecraft:entity.puffer_fish.death": {
- "protocol_id": 1093
- },
- "minecraft:entity.puffer_fish.flop": {
- "protocol_id": 1094
- },
- "minecraft:entity.puffer_fish.hurt": {
- "protocol_id": 1095
- },
- "minecraft:entity.puffer_fish.sting": {
- "protocol_id": 1096
- },
- "minecraft:entity.rabbit.ambient": {
- "protocol_id": 1098
- },
- "minecraft:entity.rabbit.attack": {
- "protocol_id": 1099
- },
- "minecraft:entity.rabbit.death": {
- "protocol_id": 1100
- },
- "minecraft:entity.rabbit.hurt": {
- "protocol_id": 1101
- },
- "minecraft:entity.rabbit.jump": {
- "protocol_id": 1102
- },
- "minecraft:entity.ravager.ambient": {
- "protocol_id": 1104
- },
- "minecraft:entity.ravager.attack": {
- "protocol_id": 1105
- },
- "minecraft:entity.ravager.celebrate": {
- "protocol_id": 1106
- },
- "minecraft:entity.ravager.death": {
- "protocol_id": 1107
- },
- "minecraft:entity.ravager.hurt": {
- "protocol_id": 1108
- },
- "minecraft:entity.ravager.roar": {
- "protocol_id": 1111
- },
- "minecraft:entity.ravager.step": {
- "protocol_id": 1109
- },
- "minecraft:entity.ravager.stunned": {
- "protocol_id": 1110
- },
- "minecraft:entity.salmon.ambient": {
- "protocol_id": 1132
- },
- "minecraft:entity.salmon.death": {
- "protocol_id": 1133
- },
- "minecraft:entity.salmon.flop": {
- "protocol_id": 1134
- },
- "minecraft:entity.salmon.hurt": {
- "protocol_id": 1135
- },
- "minecraft:entity.sheep.ambient": {
- "protocol_id": 1177
- },
- "minecraft:entity.sheep.death": {
- "protocol_id": 1178
- },
- "minecraft:entity.sheep.hurt": {
- "protocol_id": 1179
- },
- "minecraft:entity.sheep.shear": {
- "protocol_id": 1180
- },
- "minecraft:entity.sheep.step": {
- "protocol_id": 1181
- },
- "minecraft:entity.shulker.ambient": {
- "protocol_id": 1190
- },
- "minecraft:entity.shulker.close": {
- "protocol_id": 1195
- },
- "minecraft:entity.shulker.death": {
- "protocol_id": 1196
- },
- "minecraft:entity.shulker.hurt": {
- "protocol_id": 1197
- },
- "minecraft:entity.shulker.hurt_closed": {
- "protocol_id": 1198
- },
- "minecraft:entity.shulker.open": {
- "protocol_id": 1199
- },
- "minecraft:entity.shulker.shoot": {
- "protocol_id": 1200
- },
- "minecraft:entity.shulker.teleport": {
- "protocol_id": 1201
- },
- "minecraft:entity.shulker_bullet.hit": {
- "protocol_id": 1193
- },
- "minecraft:entity.shulker_bullet.hurt": {
- "protocol_id": 1194
- },
- "minecraft:entity.silverfish.ambient": {
- "protocol_id": 1202
- },
- "minecraft:entity.silverfish.death": {
- "protocol_id": 1203
- },
- "minecraft:entity.silverfish.hurt": {
- "protocol_id": 1204
- },
- "minecraft:entity.silverfish.step": {
- "protocol_id": 1205
- },
- "minecraft:entity.skeleton.ambient": {
- "protocol_id": 1206
- },
- "minecraft:entity.skeleton.converted_to_stray": {
- "protocol_id": 1207
- },
- "minecraft:entity.skeleton.death": {
- "protocol_id": 1208
- },
- "minecraft:entity.skeleton.hurt": {
- "protocol_id": 1217
- },
- "minecraft:entity.skeleton.shoot": {
- "protocol_id": 1218
- },
- "minecraft:entity.skeleton.step": {
- "protocol_id": 1219
- },
- "minecraft:entity.skeleton_horse.ambient": {
- "protocol_id": 1209
- },
- "minecraft:entity.skeleton_horse.ambient_water": {
- "protocol_id": 1213
- },
- "minecraft:entity.skeleton_horse.death": {
- "protocol_id": 1210
- },
- "minecraft:entity.skeleton_horse.gallop_water": {
- "protocol_id": 1214
- },
- "minecraft:entity.skeleton_horse.hurt": {
- "protocol_id": 1211
- },
- "minecraft:entity.skeleton_horse.jump_water": {
- "protocol_id": 1215
- },
- "minecraft:entity.skeleton_horse.step_water": {
- "protocol_id": 1216
- },
- "minecraft:entity.skeleton_horse.swim": {
- "protocol_id": 1212
- },
- "minecraft:entity.slime.attack": {
- "protocol_id": 1220
- },
- "minecraft:entity.slime.death": {
- "protocol_id": 1221
- },
- "minecraft:entity.slime.death_small": {
- "protocol_id": 1262
- },
- "minecraft:entity.slime.hurt": {
- "protocol_id": 1222
- },
- "minecraft:entity.slime.hurt_small": {
- "protocol_id": 1263
- },
- "minecraft:entity.slime.jump": {
- "protocol_id": 1223
- },
- "minecraft:entity.slime.jump_small": {
- "protocol_id": 1264
- },
- "minecraft:entity.slime.squish": {
- "protocol_id": 1224
- },
- "minecraft:entity.slime.squish_small": {
- "protocol_id": 1265
- },
- "minecraft:entity.sniffer.death": {
- "protocol_id": 1272
- },
- "minecraft:entity.sniffer.digging": {
- "protocol_id": 1277
- },
- "minecraft:entity.sniffer.digging_stop": {
- "protocol_id": 1278
- },
- "minecraft:entity.sniffer.drop_seed": {
- "protocol_id": 1273
- },
- "minecraft:entity.sniffer.eat": {
- "protocol_id": 1269
- },
- "minecraft:entity.sniffer.happy": {
- "protocol_id": 1279
- },
- "minecraft:entity.sniffer.hurt": {
- "protocol_id": 1271
- },
- "minecraft:entity.sniffer.idle": {
- "protocol_id": 1270
- },
- "minecraft:entity.sniffer.scenting": {
- "protocol_id": 1274
- },
- "minecraft:entity.sniffer.searching": {
- "protocol_id": 1276
- },
- "minecraft:entity.sniffer.sniffing": {
- "protocol_id": 1275
- },
- "minecraft:entity.sniffer.step": {
- "protocol_id": 1268
- },
- "minecraft:entity.snow_golem.ambient": {
- "protocol_id": 1286
- },
- "minecraft:entity.snow_golem.death": {
- "protocol_id": 1287
- },
- "minecraft:entity.snow_golem.hurt": {
- "protocol_id": 1288
- },
- "minecraft:entity.snow_golem.shear": {
- "protocol_id": 1290
- },
- "minecraft:entity.snow_golem.shoot": {
- "protocol_id": 1289
- },
- "minecraft:entity.snowball.throw": {
- "protocol_id": 1283
- },
- "minecraft:entity.spider.ambient": {
- "protocol_id": 1294
- },
- "minecraft:entity.spider.death": {
- "protocol_id": 1295
- },
- "minecraft:entity.spider.hurt": {
- "protocol_id": 1296
- },
- "minecraft:entity.spider.step": {
- "protocol_id": 1297
- },
- "minecraft:entity.splash_potion.break": {
- "protocol_id": 1298
- },
- "minecraft:entity.splash_potion.throw": {
- "protocol_id": 1299
- },
- "minecraft:entity.squid.ambient": {
- "protocol_id": 1308
- },
- "minecraft:entity.squid.death": {
- "protocol_id": 1309
- },
- "minecraft:entity.squid.hurt": {
- "protocol_id": 1310
- },
- "minecraft:entity.squid.squirt": {
- "protocol_id": 1311
- },
- "minecraft:entity.stray.ambient": {
- "protocol_id": 1321
- },
- "minecraft:entity.stray.death": {
- "protocol_id": 1322
- },
- "minecraft:entity.stray.hurt": {
- "protocol_id": 1323
- },
- "minecraft:entity.stray.step": {
- "protocol_id": 1324
- },
- "minecraft:entity.strider.ambient": {
- "protocol_id": 1253
- },
- "minecraft:entity.strider.death": {
- "protocol_id": 1256
- },
- "minecraft:entity.strider.eat": {
- "protocol_id": 1260
- },
- "minecraft:entity.strider.happy": {
- "protocol_id": 1254
- },
- "minecraft:entity.strider.hurt": {
- "protocol_id": 1257
- },
- "minecraft:entity.strider.retreat": {
- "protocol_id": 1255
- },
- "minecraft:entity.strider.saddle": {
- "protocol_id": 1261
- },
- "minecraft:entity.strider.step": {
- "protocol_id": 1258
- },
- "minecraft:entity.strider.step_lava": {
- "protocol_id": 1259
- },
- "minecraft:entity.tadpole.death": {
- "protocol_id": 1328
- },
- "minecraft:entity.tadpole.flop": {
- "protocol_id": 1329
- },
- "minecraft:entity.tadpole.grow_up": {
- "protocol_id": 1330
- },
- "minecraft:entity.tadpole.hurt": {
- "protocol_id": 1331
- },
- "minecraft:entity.tnt.primed": {
- "protocol_id": 1333
- },
- "minecraft:entity.tropical_fish.ambient": {
- "protocol_id": 1347
- },
- "minecraft:entity.tropical_fish.death": {
- "protocol_id": 1348
- },
- "minecraft:entity.tropical_fish.flop": {
- "protocol_id": 1349
- },
- "minecraft:entity.tropical_fish.hurt": {
- "protocol_id": 1350
- },
- "minecraft:entity.turtle.ambient_land": {
- "protocol_id": 1366
- },
- "minecraft:entity.turtle.death": {
- "protocol_id": 1367
- },
- "minecraft:entity.turtle.death_baby": {
- "protocol_id": 1368
- },
- "minecraft:entity.turtle.egg_break": {
- "protocol_id": 1369
- },
- "minecraft:entity.turtle.egg_crack": {
- "protocol_id": 1370
- },
- "minecraft:entity.turtle.egg_hatch": {
- "protocol_id": 1371
- },
- "minecraft:entity.turtle.hurt": {
- "protocol_id": 1372
- },
- "minecraft:entity.turtle.hurt_baby": {
- "protocol_id": 1373
- },
- "minecraft:entity.turtle.lay_egg": {
- "protocol_id": 1374
- },
- "minecraft:entity.turtle.shamble": {
- "protocol_id": 1375
- },
- "minecraft:entity.turtle.shamble_baby": {
- "protocol_id": 1376
- },
- "minecraft:entity.turtle.swim": {
- "protocol_id": 1377
- },
- "minecraft:entity.vex.ambient": {
- "protocol_id": 1387
- },
- "minecraft:entity.vex.charge": {
- "protocol_id": 1388
- },
- "minecraft:entity.vex.death": {
- "protocol_id": 1389
- },
- "minecraft:entity.vex.hurt": {
- "protocol_id": 1390
- },
- "minecraft:entity.villager.ambient": {
- "protocol_id": 1391
- },
- "minecraft:entity.villager.celebrate": {
- "protocol_id": 1392
- },
- "minecraft:entity.villager.death": {
- "protocol_id": 1393
- },
- "minecraft:entity.villager.hurt": {
- "protocol_id": 1394
- },
- "minecraft:entity.villager.no": {
- "protocol_id": 1395
- },
- "minecraft:entity.villager.trade": {
- "protocol_id": 1396
- },
- "minecraft:entity.villager.work_armorer": {
- "protocol_id": 1398
- },
- "minecraft:entity.villager.work_butcher": {
- "protocol_id": 1399
- },
- "minecraft:entity.villager.work_cartographer": {
- "protocol_id": 1400
- },
- "minecraft:entity.villager.work_cleric": {
- "protocol_id": 1401
- },
- "minecraft:entity.villager.work_farmer": {
- "protocol_id": 1402
- },
- "minecraft:entity.villager.work_fisherman": {
- "protocol_id": 1403
- },
- "minecraft:entity.villager.work_fletcher": {
- "protocol_id": 1404
- },
- "minecraft:entity.villager.work_leatherworker": {
- "protocol_id": 1405
- },
- "minecraft:entity.villager.work_librarian": {
- "protocol_id": 1406
- },
- "minecraft:entity.villager.work_mason": {
- "protocol_id": 1407
- },
- "minecraft:entity.villager.work_shepherd": {
- "protocol_id": 1408
- },
- "minecraft:entity.villager.work_toolsmith": {
- "protocol_id": 1409
- },
- "minecraft:entity.villager.work_weaponsmith": {
- "protocol_id": 1410
- },
- "minecraft:entity.villager.yes": {
- "protocol_id": 1397
- },
- "minecraft:entity.vindicator.ambient": {
- "protocol_id": 1411
- },
- "minecraft:entity.vindicator.celebrate": {
- "protocol_id": 1412
- },
- "minecraft:entity.vindicator.death": {
- "protocol_id": 1413
- },
- "minecraft:entity.vindicator.hurt": {
- "protocol_id": 1414
- },
- "minecraft:entity.wandering_trader.ambient": {
- "protocol_id": 1421
- },
- "minecraft:entity.wandering_trader.death": {
- "protocol_id": 1422
- },
- "minecraft:entity.wandering_trader.disappeared": {
- "protocol_id": 1423
- },
- "minecraft:entity.wandering_trader.drink_milk": {
- "protocol_id": 1424
- },
- "minecraft:entity.wandering_trader.drink_potion": {
- "protocol_id": 1425
- },
- "minecraft:entity.wandering_trader.hurt": {
- "protocol_id": 1426
- },
- "minecraft:entity.wandering_trader.no": {
- "protocol_id": 1427
- },
- "minecraft:entity.wandering_trader.reappeared": {
- "protocol_id": 1428
- },
- "minecraft:entity.wandering_trader.trade": {
- "protocol_id": 1429
- },
- "minecraft:entity.wandering_trader.yes": {
- "protocol_id": 1430
- },
- "minecraft:entity.warden.agitated": {
- "protocol_id": 1431
- },
- "minecraft:entity.warden.ambient": {
- "protocol_id": 1432
- },
- "minecraft:entity.warden.angry": {
- "protocol_id": 1433
- },
- "minecraft:entity.warden.attack_impact": {
- "protocol_id": 1434
- },
- "minecraft:entity.warden.death": {
- "protocol_id": 1435
- },
- "minecraft:entity.warden.dig": {
- "protocol_id": 1436
- },
- "minecraft:entity.warden.emerge": {
- "protocol_id": 1437
- },
- "minecraft:entity.warden.heartbeat": {
- "protocol_id": 1438
- },
- "minecraft:entity.warden.hurt": {
- "protocol_id": 1439
- },
- "minecraft:entity.warden.listening": {
- "protocol_id": 1440
- },
- "minecraft:entity.warden.listening_angry": {
- "protocol_id": 1441
- },
- "minecraft:entity.warden.nearby_close": {
- "protocol_id": 1442
- },
- "minecraft:entity.warden.nearby_closer": {
- "protocol_id": 1443
- },
- "minecraft:entity.warden.nearby_closest": {
- "protocol_id": 1444
- },
- "minecraft:entity.warden.roar": {
- "protocol_id": 1445
- },
- "minecraft:entity.warden.sniff": {
- "protocol_id": 1446
- },
- "minecraft:entity.warden.sonic_boom": {
- "protocol_id": 1447
- },
- "minecraft:entity.warden.sonic_charge": {
- "protocol_id": 1448
- },
- "minecraft:entity.warden.step": {
- "protocol_id": 1449
- },
- "minecraft:entity.warden.tendril_clicks": {
- "protocol_id": 1450
- },
- "minecraft:entity.witch.ambient": {
- "protocol_id": 1467
- },
- "minecraft:entity.witch.celebrate": {
- "protocol_id": 1468
- },
- "minecraft:entity.witch.death": {
- "protocol_id": 1469
- },
- "minecraft:entity.witch.drink": {
- "protocol_id": 1470
- },
- "minecraft:entity.witch.hurt": {
- "protocol_id": 1471
- },
- "minecraft:entity.witch.throw": {
- "protocol_id": 1472
- },
- "minecraft:entity.wither.ambient": {
- "protocol_id": 1473
- },
- "minecraft:entity.wither.break_block": {
- "protocol_id": 1474
- },
- "minecraft:entity.wither.death": {
- "protocol_id": 1475
- },
- "minecraft:entity.wither.hurt": {
- "protocol_id": 1476
- },
- "minecraft:entity.wither.shoot": {
- "protocol_id": 1477
- },
- "minecraft:entity.wither.spawn": {
- "protocol_id": 1482
- },
- "minecraft:entity.wither_skeleton.ambient": {
- "protocol_id": 1478
- },
- "minecraft:entity.wither_skeleton.death": {
- "protocol_id": 1479
- },
- "minecraft:entity.wither_skeleton.hurt": {
- "protocol_id": 1480
- },
- "minecraft:entity.wither_skeleton.step": {
- "protocol_id": 1481
- },
- "minecraft:entity.wolf.ambient": {
- "protocol_id": 1483
- },
- "minecraft:entity.wolf.death": {
- "protocol_id": 1484
- },
- "minecraft:entity.wolf.growl": {
- "protocol_id": 1485
- },
- "minecraft:entity.wolf.howl": {
- "protocol_id": 1486
- },
- "minecraft:entity.wolf.hurt": {
- "protocol_id": 1487
- },
- "minecraft:entity.wolf.pant": {
- "protocol_id": 1488
- },
- "minecraft:entity.wolf.shake": {
- "protocol_id": 1489
- },
- "minecraft:entity.wolf.step": {
- "protocol_id": 1490
- },
- "minecraft:entity.wolf.whine": {
- "protocol_id": 1491
- },
- "minecraft:entity.zoglin.ambient": {
- "protocol_id": 1510
- },
- "minecraft:entity.zoglin.angry": {
- "protocol_id": 1511
- },
- "minecraft:entity.zoglin.attack": {
- "protocol_id": 1512
- },
- "minecraft:entity.zoglin.death": {
- "protocol_id": 1513
- },
- "minecraft:entity.zoglin.hurt": {
- "protocol_id": 1514
- },
- "minecraft:entity.zoglin.step": {
- "protocol_id": 1515
- },
- "minecraft:entity.zombie.ambient": {
- "protocol_id": 1516
- },
- "minecraft:entity.zombie.attack_iron_door": {
- "protocol_id": 1518
- },
- "minecraft:entity.zombie.attack_wooden_door": {
- "protocol_id": 1517
- },
- "minecraft:entity.zombie.break_wooden_door": {
- "protocol_id": 1519
- },
- "minecraft:entity.zombie.converted_to_drowned": {
- "protocol_id": 1520
- },
- "minecraft:entity.zombie.death": {
- "protocol_id": 1521
- },
- "minecraft:entity.zombie.destroy_egg": {
- "protocol_id": 1522
- },
- "minecraft:entity.zombie.hurt": {
- "protocol_id": 1526
- },
- "minecraft:entity.zombie.infect": {
- "protocol_id": 1527
- },
- "minecraft:entity.zombie.step": {
- "protocol_id": 1532
- },
- "minecraft:entity.zombie_horse.ambient": {
- "protocol_id": 1523
- },
- "minecraft:entity.zombie_horse.death": {
- "protocol_id": 1524
- },
- "minecraft:entity.zombie_horse.hurt": {
- "protocol_id": 1525
- },
- "minecraft:entity.zombie_villager.ambient": {
- "protocol_id": 1533
- },
- "minecraft:entity.zombie_villager.converted": {
- "protocol_id": 1534
- },
- "minecraft:entity.zombie_villager.cure": {
- "protocol_id": 1535
- },
- "minecraft:entity.zombie_villager.death": {
- "protocol_id": 1536
- },
- "minecraft:entity.zombie_villager.hurt": {
- "protocol_id": 1537
- },
- "minecraft:entity.zombie_villager.step": {
- "protocol_id": 1538
- },
- "minecraft:entity.zombified_piglin.ambient": {
- "protocol_id": 1528
- },
- "minecraft:entity.zombified_piglin.angry": {
- "protocol_id": 1529
- },
- "minecraft:entity.zombified_piglin.death": {
- "protocol_id": 1530
- },
- "minecraft:entity.zombified_piglin.hurt": {
- "protocol_id": 1531
- },
- "minecraft:event.raid.horn": {
- "protocol_id": 1103
- },
- "minecraft:intentionally_empty": {
- "protocol_id": 893
- },
- "minecraft:item.armor.equip_chain": {
- "protocol_id": 54
- },
- "minecraft:item.armor.equip_diamond": {
- "protocol_id": 55
- },
- "minecraft:item.armor.equip_elytra": {
- "protocol_id": 56
- },
- "minecraft:item.armor.equip_generic": {
+ "minecraft:entity.armadillo.ambient": {
"protocol_id": 57
},
- "minecraft:item.armor.equip_gold": {
- "protocol_id": 58
+ "minecraft:entity.armadillo.brush": {
+ "protocol_id": 66
},
- "minecraft:item.armor.equip_iron": {
+ "minecraft:entity.armadillo.death": {
"protocol_id": 59
},
- "minecraft:item.armor.equip_leather": {
- "protocol_id": 60
+ "minecraft:entity.armadillo.eat": {
+ "protocol_id": 54
},
- "minecraft:item.armor.equip_netherite": {
+ "minecraft:entity.armadillo.hurt": {
+ "protocol_id": 55
+ },
+ "minecraft:entity.armadillo.hurt_reduced": {
+ "protocol_id": 56
+ },
+ "minecraft:entity.armadillo.land": {
"protocol_id": 61
},
- "minecraft:item.armor.equip_turtle": {
+ "minecraft:entity.armadillo.peek": {
+ "protocol_id": 64
+ },
+ "minecraft:entity.armadillo.roll": {
+ "protocol_id": 60
+ },
+ "minecraft:entity.armadillo.scute_drop": {
"protocol_id": 62
},
- "minecraft:item.axe.scrape": {
- "protocol_id": 71
+ "minecraft:entity.armadillo.step": {
+ "protocol_id": 58
},
- "minecraft:item.axe.strip": {
- "protocol_id": 70
+ "minecraft:entity.armadillo.unroll_finish": {
+ "protocol_id": 63
},
- "minecraft:item.axe.wax_off": {
- "protocol_id": 72
+ "minecraft:entity.armadillo.unroll_start": {
+ "protocol_id": 65
},
- "minecraft:item.bone_meal.use": {
- "protocol_id": 159
+ "minecraft:entity.armor_stand.break": {
+ "protocol_id": 78
},
- "minecraft:item.book.page_turn": {
- "protocol_id": 160
+ "minecraft:entity.armor_stand.fall": {
+ "protocol_id": 79
},
- "minecraft:item.book.put": {
- "protocol_id": 161
+ "minecraft:entity.armor_stand.hit": {
+ "protocol_id": 80
},
- "minecraft:item.bottle.empty": {
+ "minecraft:entity.armor_stand.place": {
+ "protocol_id": 81
+ },
+ "minecraft:entity.arrow.hit": {
+ "protocol_id": 82
+ },
+ "minecraft:entity.arrow.hit_player": {
+ "protocol_id": 83
+ },
+ "minecraft:entity.arrow.shoot": {
+ "protocol_id": 84
+ },
+ "minecraft:entity.axolotl.attack": {
+ "protocol_id": 88
+ },
+ "minecraft:entity.axolotl.death": {
+ "protocol_id": 89
+ },
+ "minecraft:entity.axolotl.hurt": {
+ "protocol_id": 90
+ },
+ "minecraft:entity.axolotl.idle_air": {
+ "protocol_id": 91
+ },
+ "minecraft:entity.axolotl.idle_water": {
+ "protocol_id": 92
+ },
+ "minecraft:entity.axolotl.splash": {
+ "protocol_id": 93
+ },
+ "minecraft:entity.axolotl.swim": {
+ "protocol_id": 94
+ },
+ "minecraft:entity.bat.ambient": {
+ "protocol_id": 135
+ },
+ "minecraft:entity.bat.death": {
+ "protocol_id": 136
+ },
+ "minecraft:entity.bat.hurt": {
+ "protocol_id": 137
+ },
+ "minecraft:entity.bat.loop": {
+ "protocol_id": 138
+ },
+ "minecraft:entity.bat.takeoff": {
+ "protocol_id": 139
+ },
+ "minecraft:entity.bee.death": {
+ "protocol_id": 144
+ },
+ "minecraft:entity.bee.hurt": {
+ "protocol_id": 145
+ },
+ "minecraft:entity.bee.loop": {
+ "protocol_id": 147
+ },
+ "minecraft:entity.bee.loop_aggressive": {
+ "protocol_id": 146
+ },
+ "minecraft:entity.bee.pollinate": {
+ "protocol_id": 149
+ },
+ "minecraft:entity.bee.sting": {
+ "protocol_id": 148
+ },
+ "minecraft:entity.blaze.ambient": {
+ "protocol_id": 162
+ },
+ "minecraft:entity.blaze.burn": {
"protocol_id": 163
},
- "minecraft:item.bottle.fill": {
+ "minecraft:entity.blaze.death": {
"protocol_id": 164
},
- "minecraft:item.bottle.fill_dragonbreath": {
+ "minecraft:entity.blaze.hurt": {
"protocol_id": 165
},
- "minecraft:item.brush.brushing.generic": {
- "protocol_id": 176
+ "minecraft:entity.blaze.shoot": {
+ "protocol_id": 166
},
- "minecraft:item.brush.brushing.gravel": {
- "protocol_id": 178
+ "minecraft:entity.boat.paddle_land": {
+ "protocol_id": 167
},
- "minecraft:item.brush.brushing.gravel.complete": {
- "protocol_id": 180
+ "minecraft:entity.boat.paddle_water": {
+ "protocol_id": 168
},
- "minecraft:item.brush.brushing.sand": {
- "protocol_id": 177
+ "minecraft:entity.bogged.ambient": {
+ "protocol_id": 169
},
- "minecraft:item.brush.brushing.sand.complete": {
- "protocol_id": 179
+ "minecraft:entity.bogged.death": {
+ "protocol_id": 170
},
- "minecraft:item.bucket.empty": {
+ "minecraft:entity.bogged.hurt": {
+ "protocol_id": 171
+ },
+ "minecraft:entity.bogged.shear": {
+ "protocol_id": 172
+ },
+ "minecraft:entity.bogged.step": {
+ "protocol_id": 173
+ },
+ "minecraft:entity.breeze.charge": {
"protocol_id": 186
},
- "minecraft:item.bucket.empty_axolotl": {
- "protocol_id": 187
- },
- "minecraft:item.bucket.empty_fish": {
- "protocol_id": 188
- },
- "minecraft:item.bucket.empty_lava": {
- "protocol_id": 189
- },
- "minecraft:item.bucket.empty_powder_snow": {
- "protocol_id": 190
- },
- "minecraft:item.bucket.empty_tadpole": {
- "protocol_id": 191
- },
- "minecraft:item.bucket.fill": {
- "protocol_id": 192
- },
- "minecraft:item.bucket.fill_axolotl": {
- "protocol_id": 193
- },
- "minecraft:item.bucket.fill_fish": {
- "protocol_id": 194
- },
- "minecraft:item.bucket.fill_lava": {
+ "minecraft:entity.breeze.death": {
"protocol_id": 195
},
- "minecraft:item.bucket.fill_powder_snow": {
+ "minecraft:entity.breeze.deflect": {
+ "protocol_id": 187
+ },
+ "minecraft:entity.breeze.hurt": {
"protocol_id": 196
},
- "minecraft:item.bucket.fill_tadpole": {
+ "minecraft:entity.breeze.idle_air": {
+ "protocol_id": 190
+ },
+ "minecraft:entity.breeze.idle_ground": {
+ "protocol_id": 189
+ },
+ "minecraft:entity.breeze.inhale": {
+ "protocol_id": 188
+ },
+ "minecraft:entity.breeze.jump": {
+ "protocol_id": 192
+ },
+ "minecraft:entity.breeze.land": {
+ "protocol_id": 193
+ },
+ "minecraft:entity.breeze.shoot": {
+ "protocol_id": 191
+ },
+ "minecraft:entity.breeze.slide": {
+ "protocol_id": 194
+ },
+ "minecraft:entity.breeze.whirl": {
"protocol_id": 197
},
- "minecraft:item.bundle.drop_contents": {
+ "minecraft:entity.breeze.wind_burst": {
"protocol_id": 198
},
- "minecraft:item.bundle.insert": {
- "protocol_id": 199
+ "minecraft:entity.camel.ambient": {
+ "protocol_id": 231
},
- "minecraft:item.bundle.remove_one": {
- "protocol_id": 200
+ "minecraft:entity.camel.dash": {
+ "protocol_id": 232
},
- "minecraft:item.chorus_fruit.teleport": {
- "protocol_id": 295
+ "minecraft:entity.camel.dash_ready": {
+ "protocol_id": 233
},
- "minecraft:item.crop.plant": {
- "protocol_id": 347
+ "minecraft:entity.camel.death": {
+ "protocol_id": 234
},
- "minecraft:item.crossbow.hit": {
- "protocol_id": 348
+ "minecraft:entity.camel.eat": {
+ "protocol_id": 235
},
- "minecraft:item.crossbow.loading_end": {
- "protocol_id": 349
+ "minecraft:entity.camel.hurt": {
+ "protocol_id": 236
},
- "minecraft:item.crossbow.loading_middle": {
- "protocol_id": 350
+ "minecraft:entity.camel.saddle": {
+ "protocol_id": 237
},
- "minecraft:item.crossbow.loading_start": {
- "protocol_id": 351
+ "minecraft:entity.camel.sit": {
+ "protocol_id": 238
},
- "minecraft:item.crossbow.quick_charge_1": {
- "protocol_id": 352
+ "minecraft:entity.camel.stand": {
+ "protocol_id": 239
},
- "minecraft:item.crossbow.quick_charge_2": {
- "protocol_id": 353
+ "minecraft:entity.camel.step": {
+ "protocol_id": 240
},
- "minecraft:item.crossbow.quick_charge_3": {
- "protocol_id": 354
+ "minecraft:entity.camel.step_sand": {
+ "protocol_id": 241
},
- "minecraft:item.crossbow.shoot": {
- "protocol_id": 355
+ "minecraft:entity.cat.ambient": {
+ "protocol_id": 250
},
- "minecraft:item.dye.use": {
+ "minecraft:entity.cat.beg_for_food": {
+ "protocol_id": 255
+ },
+ "minecraft:entity.cat.death": {
+ "protocol_id": 252
+ },
+ "minecraft:entity.cat.eat": {
+ "protocol_id": 253
+ },
+ "minecraft:entity.cat.hiss": {
+ "protocol_id": 254
+ },
+ "minecraft:entity.cat.hurt": {
+ "protocol_id": 256
+ },
+ "minecraft:entity.cat.purr": {
+ "protocol_id": 257
+ },
+ "minecraft:entity.cat.purreow": {
+ "protocol_id": 258
+ },
+ "minecraft:entity.cat.stray_ambient": {
+ "protocol_id": 251
+ },
+ "minecraft:entity.chicken.ambient": {
+ "protocol_id": 303
+ },
+ "minecraft:entity.chicken.death": {
+ "protocol_id": 304
+ },
+ "minecraft:entity.chicken.egg": {
+ "protocol_id": 305
+ },
+ "minecraft:entity.chicken.hurt": {
+ "protocol_id": 306
+ },
+ "minecraft:entity.chicken.step": {
+ "protocol_id": 307
+ },
+ "minecraft:entity.cod.ambient": {
+ "protocol_id": 325
+ },
+ "minecraft:entity.cod.death": {
+ "protocol_id": 326
+ },
+ "minecraft:entity.cod.flop": {
+ "protocol_id": 327
+ },
+ "minecraft:entity.cod.hurt": {
+ "protocol_id": 328
+ },
+ "minecraft:entity.cow.ambient": {
+ "protocol_id": 365
+ },
+ "minecraft:entity.cow.death": {
+ "protocol_id": 366
+ },
+ "minecraft:entity.cow.hurt": {
+ "protocol_id": 367
+ },
+ "minecraft:entity.cow.milk": {
+ "protocol_id": 368
+ },
+ "minecraft:entity.cow.step": {
+ "protocol_id": 369
+ },
+ "minecraft:entity.creeper.death": {
+ "protocol_id": 372
+ },
+ "minecraft:entity.creeper.hurt": {
+ "protocol_id": 373
+ },
+ "minecraft:entity.creeper.primed": {
+ "protocol_id": 374
+ },
+ "minecraft:entity.dolphin.ambient": {
+ "protocol_id": 411
+ },
+ "minecraft:entity.dolphin.ambient_water": {
+ "protocol_id": 412
+ },
+ "minecraft:entity.dolphin.attack": {
+ "protocol_id": 413
+ },
+ "minecraft:entity.dolphin.death": {
+ "protocol_id": 414
+ },
+ "minecraft:entity.dolphin.eat": {
+ "protocol_id": 415
+ },
+ "minecraft:entity.dolphin.hurt": {
+ "protocol_id": 416
+ },
+ "minecraft:entity.dolphin.jump": {
+ "protocol_id": 417
+ },
+ "minecraft:entity.dolphin.play": {
+ "protocol_id": 418
+ },
+ "minecraft:entity.dolphin.splash": {
+ "protocol_id": 419
+ },
+ "minecraft:entity.dolphin.swim": {
+ "protocol_id": 420
+ },
+ "minecraft:entity.donkey.ambient": {
+ "protocol_id": 421
+ },
+ "minecraft:entity.donkey.angry": {
+ "protocol_id": 422
+ },
+ "minecraft:entity.donkey.chest": {
+ "protocol_id": 423
+ },
+ "minecraft:entity.donkey.death": {
"protocol_id": 424
},
- "minecraft:item.elytra.flying": {
- "protocol_id": 434
+ "minecraft:entity.donkey.eat": {
+ "protocol_id": 425
},
- "minecraft:item.firecharge.use": {
+ "minecraft:entity.donkey.hurt": {
+ "protocol_id": 426
+ },
+ "minecraft:entity.donkey.jump": {
+ "protocol_id": 427
+ },
+ "minecraft:entity.dragon_fireball.explode": {
+ "protocol_id": 470
+ },
+ "minecraft:entity.drowned.ambient": {
+ "protocol_id": 445
+ },
+ "minecraft:entity.drowned.ambient_water": {
+ "protocol_id": 446
+ },
+ "minecraft:entity.drowned.death": {
+ "protocol_id": 447
+ },
+ "minecraft:entity.drowned.death_water": {
+ "protocol_id": 448
+ },
+ "minecraft:entity.drowned.hurt": {
+ "protocol_id": 449
+ },
+ "minecraft:entity.drowned.hurt_water": {
+ "protocol_id": 450
+ },
+ "minecraft:entity.drowned.shoot": {
+ "protocol_id": 451
+ },
+ "minecraft:entity.drowned.step": {
+ "protocol_id": 452
+ },
+ "minecraft:entity.drowned.swim": {
+ "protocol_id": 453
+ },
+ "minecraft:entity.egg.throw": {
+ "protocol_id": 455
+ },
+ "minecraft:entity.elder_guardian.ambient": {
+ "protocol_id": 456
+ },
+ "minecraft:entity.elder_guardian.ambient_land": {
+ "protocol_id": 457
+ },
+ "minecraft:entity.elder_guardian.curse": {
+ "protocol_id": 458
+ },
+ "minecraft:entity.elder_guardian.death": {
+ "protocol_id": 459
+ },
+ "minecraft:entity.elder_guardian.death_land": {
+ "protocol_id": 460
+ },
+ "minecraft:entity.elder_guardian.flop": {
+ "protocol_id": 461
+ },
+ "minecraft:entity.elder_guardian.hurt": {
+ "protocol_id": 462
+ },
+ "minecraft:entity.elder_guardian.hurt_land": {
+ "protocol_id": 463
+ },
+ "minecraft:entity.ender_dragon.ambient": {
+ "protocol_id": 468
+ },
+ "minecraft:entity.ender_dragon.death": {
+ "protocol_id": 469
+ },
+ "minecraft:entity.ender_dragon.flap": {
+ "protocol_id": 471
+ },
+ "minecraft:entity.ender_dragon.growl": {
+ "protocol_id": 472
+ },
+ "minecraft:entity.ender_dragon.hurt": {
+ "protocol_id": 473
+ },
+ "minecraft:entity.ender_dragon.shoot": {
"protocol_id": 474
},
- "minecraft:item.flintandsteel.use": {
- "protocol_id": 489
+ "minecraft:entity.ender_eye.death": {
+ "protocol_id": 475
},
- "minecraft:item.glow_ink_sac.use": {
- "protocol_id": 568
+ "minecraft:entity.ender_eye.launch": {
+ "protocol_id": 476
},
- "minecraft:item.goat_horn.play": {
+ "minecraft:entity.ender_pearl.throw": {
+ "protocol_id": 487
+ },
+ "minecraft:entity.enderman.ambient": {
+ "protocol_id": 477
+ },
+ "minecraft:entity.enderman.death": {
+ "protocol_id": 478
+ },
+ "minecraft:entity.enderman.hurt": {
+ "protocol_id": 479
+ },
+ "minecraft:entity.enderman.scream": {
+ "protocol_id": 480
+ },
+ "minecraft:entity.enderman.stare": {
+ "protocol_id": 481
+ },
+ "minecraft:entity.enderman.teleport": {
+ "protocol_id": 482
+ },
+ "minecraft:entity.endermite.ambient": {
+ "protocol_id": 483
+ },
+ "minecraft:entity.endermite.death": {
+ "protocol_id": 484
+ },
+ "minecraft:entity.endermite.hurt": {
+ "protocol_id": 485
+ },
+ "minecraft:entity.endermite.step": {
+ "protocol_id": 486
+ },
+ "minecraft:entity.evoker.ambient": {
+ "protocol_id": 491
+ },
+ "minecraft:entity.evoker.cast_spell": {
+ "protocol_id": 492
+ },
+ "minecraft:entity.evoker.celebrate": {
+ "protocol_id": 493
+ },
+ "minecraft:entity.evoker.death": {
+ "protocol_id": 494
+ },
+ "minecraft:entity.evoker.hurt": {
+ "protocol_id": 496
+ },
+ "minecraft:entity.evoker.prepare_attack": {
+ "protocol_id": 497
+ },
+ "minecraft:entity.evoker.prepare_summon": {
+ "protocol_id": 498
+ },
+ "minecraft:entity.evoker.prepare_wololo": {
+ "protocol_id": 499
+ },
+ "minecraft:entity.evoker_fangs.attack": {
+ "protocol_id": 495
+ },
+ "minecraft:entity.experience_bottle.throw": {
+ "protocol_id": 500
+ },
+ "minecraft:entity.experience_orb.pickup": {
+ "protocol_id": 501
+ },
+ "minecraft:entity.firework_rocket.blast": {
+ "protocol_id": 505
+ },
+ "minecraft:entity.firework_rocket.blast_far": {
+ "protocol_id": 506
+ },
+ "minecraft:entity.firework_rocket.large_blast": {
+ "protocol_id": 507
+ },
+ "minecraft:entity.firework_rocket.large_blast_far": {
+ "protocol_id": 508
+ },
+ "minecraft:entity.firework_rocket.launch": {
+ "protocol_id": 509
+ },
+ "minecraft:entity.firework_rocket.shoot": {
+ "protocol_id": 510
+ },
+ "minecraft:entity.firework_rocket.twinkle": {
+ "protocol_id": 511
+ },
+ "minecraft:entity.firework_rocket.twinkle_far": {
+ "protocol_id": 512
+ },
+ "minecraft:entity.fish.swim": {
+ "protocol_id": 515
+ },
+ "minecraft:entity.fishing_bobber.retrieve": {
+ "protocol_id": 516
+ },
+ "minecraft:entity.fishing_bobber.splash": {
+ "protocol_id": 517
+ },
+ "minecraft:entity.fishing_bobber.throw": {
+ "protocol_id": 518
+ },
+ "minecraft:entity.fox.aggro": {
+ "protocol_id": 525
+ },
+ "minecraft:entity.fox.ambient": {
+ "protocol_id": 526
+ },
+ "minecraft:entity.fox.bite": {
+ "protocol_id": 527
+ },
+ "minecraft:entity.fox.death": {
+ "protocol_id": 528
+ },
+ "minecraft:entity.fox.eat": {
+ "protocol_id": 529
+ },
+ "minecraft:entity.fox.hurt": {
+ "protocol_id": 530
+ },
+ "minecraft:entity.fox.screech": {
+ "protocol_id": 531
+ },
+ "minecraft:entity.fox.sleep": {
+ "protocol_id": 532
+ },
+ "minecraft:entity.fox.sniff": {
+ "protocol_id": 533
+ },
+ "minecraft:entity.fox.spit": {
+ "protocol_id": 534
+ },
+ "minecraft:entity.fox.teleport": {
+ "protocol_id": 535
+ },
+ "minecraft:entity.frog.ambient": {
+ "protocol_id": 557
+ },
+ "minecraft:entity.frog.death": {
+ "protocol_id": 558
+ },
+ "minecraft:entity.frog.eat": {
+ "protocol_id": 559
+ },
+ "minecraft:entity.frog.hurt": {
+ "protocol_id": 560
+ },
+ "minecraft:entity.frog.lay_spawn": {
+ "protocol_id": 561
+ },
+ "minecraft:entity.frog.long_jump": {
+ "protocol_id": 562
+ },
+ "minecraft:entity.frog.step": {
+ "protocol_id": 563
+ },
+ "minecraft:entity.frog.tongue": {
+ "protocol_id": 564
+ },
+ "minecraft:entity.generic.big_fall": {
+ "protocol_id": 571
+ },
+ "minecraft:entity.generic.burn": {
+ "protocol_id": 572
+ },
+ "minecraft:entity.generic.death": {
+ "protocol_id": 573
+ },
+ "minecraft:entity.generic.drink": {
+ "protocol_id": 574
+ },
+ "minecraft:entity.generic.eat": {
+ "protocol_id": 575
+ },
+ "minecraft:entity.generic.explode": {
+ "protocol_id": 576
+ },
+ "minecraft:entity.generic.extinguish_fire": {
+ "protocol_id": 577
+ },
+ "minecraft:entity.generic.hurt": {
+ "protocol_id": 578
+ },
+ "minecraft:entity.generic.small_fall": {
+ "protocol_id": 579
+ },
+ "minecraft:entity.generic.splash": {
+ "protocol_id": 580
+ },
+ "minecraft:entity.generic.swim": {
+ "protocol_id": 581
+ },
+ "minecraft:entity.ghast.ambient": {
+ "protocol_id": 582
+ },
+ "minecraft:entity.ghast.death": {
+ "protocol_id": 583
+ },
+ "minecraft:entity.ghast.hurt": {
+ "protocol_id": 584
+ },
+ "minecraft:entity.ghast.scream": {
+ "protocol_id": 585
+ },
+ "minecraft:entity.ghast.shoot": {
+ "protocol_id": 586
+ },
+ "minecraft:entity.ghast.warn": {
"protocol_id": 587
},
- "minecraft:item.goat_horn.sound.0": {
- "protocol_id": 666
+ "minecraft:entity.glow_item_frame.add_item": {
+ "protocol_id": 599
},
- "minecraft:item.goat_horn.sound.1": {
- "protocol_id": 667
+ "minecraft:entity.glow_item_frame.break": {
+ "protocol_id": 600
},
- "minecraft:item.goat_horn.sound.2": {
- "protocol_id": 668
+ "minecraft:entity.glow_item_frame.place": {
+ "protocol_id": 601
},
- "minecraft:item.goat_horn.sound.3": {
- "protocol_id": 669
+ "minecraft:entity.glow_item_frame.remove_item": {
+ "protocol_id": 602
},
- "minecraft:item.goat_horn.sound.4": {
- "protocol_id": 670
+ "minecraft:entity.glow_item_frame.rotate_item": {
+ "protocol_id": 603
},
- "minecraft:item.goat_horn.sound.5": {
- "protocol_id": 671
+ "minecraft:entity.glow_squid.ambient": {
+ "protocol_id": 604
},
- "minecraft:item.goat_horn.sound.6": {
- "protocol_id": 672
+ "minecraft:entity.glow_squid.death": {
+ "protocol_id": 605
},
- "minecraft:item.goat_horn.sound.7": {
- "protocol_id": 673
+ "minecraft:entity.glow_squid.hurt": {
+ "protocol_id": 606
},
- "minecraft:item.hoe.till": {
- "protocol_id": 649
+ "minecraft:entity.glow_squid.squirt": {
+ "protocol_id": 607
},
- "minecraft:item.honey_bottle.drink": {
- "protocol_id": 665
+ "minecraft:entity.goat.ambient": {
+ "protocol_id": 608
},
- "minecraft:item.honeycomb.wax_on": {
- "protocol_id": 664
+ "minecraft:entity.goat.death": {
+ "protocol_id": 609
},
- "minecraft:item.ink_sac.use": {
- "protocol_id": 705
+ "minecraft:entity.goat.eat": {
+ "protocol_id": 610
},
- "minecraft:item.lodestone_compass.lock": {
+ "minecraft:entity.goat.horn_break": {
+ "protocol_id": 616
+ },
+ "minecraft:entity.goat.hurt": {
+ "protocol_id": 611
+ },
+ "minecraft:entity.goat.long_jump": {
+ "protocol_id": 612
+ },
+ "minecraft:entity.goat.milk": {
+ "protocol_id": 613
+ },
+ "minecraft:entity.goat.prepare_ram": {
+ "protocol_id": 614
+ },
+ "minecraft:entity.goat.ram_impact": {
+ "protocol_id": 615
+ },
+ "minecraft:entity.goat.screaming.ambient": {
+ "protocol_id": 618
+ },
+ "minecraft:entity.goat.screaming.death": {
+ "protocol_id": 619
+ },
+ "minecraft:entity.goat.screaming.eat": {
+ "protocol_id": 620
+ },
+ "minecraft:entity.goat.screaming.horn_break": {
+ "protocol_id": 626
+ },
+ "minecraft:entity.goat.screaming.hurt": {
+ "protocol_id": 621
+ },
+ "minecraft:entity.goat.screaming.long_jump": {
+ "protocol_id": 622
+ },
+ "minecraft:entity.goat.screaming.milk": {
+ "protocol_id": 623
+ },
+ "minecraft:entity.goat.screaming.prepare_ram": {
+ "protocol_id": 624
+ },
+ "minecraft:entity.goat.screaming.ram_impact": {
+ "protocol_id": 625
+ },
+ "minecraft:entity.goat.step": {
+ "protocol_id": 627
+ },
+ "minecraft:entity.guardian.ambient": {
+ "protocol_id": 640
+ },
+ "minecraft:entity.guardian.ambient_land": {
+ "protocol_id": 641
+ },
+ "minecraft:entity.guardian.attack": {
+ "protocol_id": 642
+ },
+ "minecraft:entity.guardian.death": {
+ "protocol_id": 643
+ },
+ "minecraft:entity.guardian.death_land": {
+ "protocol_id": 644
+ },
+ "minecraft:entity.guardian.flop": {
+ "protocol_id": 645
+ },
+ "minecraft:entity.guardian.hurt": {
+ "protocol_id": 646
+ },
+ "minecraft:entity.guardian.hurt_land": {
+ "protocol_id": 647
+ },
+ "minecraft:entity.hoglin.ambient": {
+ "protocol_id": 690
+ },
+ "minecraft:entity.hoglin.angry": {
+ "protocol_id": 691
+ },
+ "minecraft:entity.hoglin.attack": {
+ "protocol_id": 692
+ },
+ "minecraft:entity.hoglin.converted_to_zombified": {
+ "protocol_id": 693
+ },
+ "minecraft:entity.hoglin.death": {
+ "protocol_id": 694
+ },
+ "minecraft:entity.hoglin.hurt": {
+ "protocol_id": 695
+ },
+ "minecraft:entity.hoglin.retreat": {
+ "protocol_id": 696
+ },
+ "minecraft:entity.hoglin.step": {
+ "protocol_id": 697
+ },
+ "minecraft:entity.horse.ambient": {
+ "protocol_id": 714
+ },
+ "minecraft:entity.horse.angry": {
+ "protocol_id": 715
+ },
+ "minecraft:entity.horse.armor": {
+ "protocol_id": 716
+ },
+ "minecraft:entity.horse.breathe": {
+ "protocol_id": 717
+ },
+ "minecraft:entity.horse.death": {
+ "protocol_id": 718
+ },
+ "minecraft:entity.horse.eat": {
+ "protocol_id": 719
+ },
+ "minecraft:entity.horse.gallop": {
+ "protocol_id": 720
+ },
+ "minecraft:entity.horse.hurt": {
+ "protocol_id": 721
+ },
+ "minecraft:entity.horse.jump": {
+ "protocol_id": 722
+ },
+ "minecraft:entity.horse.land": {
+ "protocol_id": 723
+ },
+ "minecraft:entity.horse.saddle": {
+ "protocol_id": 724
+ },
+ "minecraft:entity.horse.step": {
+ "protocol_id": 725
+ },
+ "minecraft:entity.horse.step_wood": {
+ "protocol_id": 726
+ },
+ "minecraft:entity.hostile.big_fall": {
+ "protocol_id": 727
+ },
+ "minecraft:entity.hostile.death": {
+ "protocol_id": 728
+ },
+ "minecraft:entity.hostile.hurt": {
+ "protocol_id": 729
+ },
+ "minecraft:entity.hostile.small_fall": {
+ "protocol_id": 730
+ },
+ "minecraft:entity.hostile.splash": {
+ "protocol_id": 731
+ },
+ "minecraft:entity.hostile.swim": {
+ "protocol_id": 732
+ },
+ "minecraft:entity.husk.ambient": {
+ "protocol_id": 733
+ },
+ "minecraft:entity.husk.converted_to_zombie": {
+ "protocol_id": 734
+ },
+ "minecraft:entity.husk.death": {
+ "protocol_id": 735
+ },
+ "minecraft:entity.husk.hurt": {
+ "protocol_id": 736
+ },
+ "minecraft:entity.husk.step": {
+ "protocol_id": 737
+ },
+ "minecraft:entity.illusioner.ambient": {
+ "protocol_id": 738
+ },
+ "minecraft:entity.illusioner.cast_spell": {
+ "protocol_id": 739
+ },
+ "minecraft:entity.illusioner.death": {
+ "protocol_id": 740
+ },
+ "minecraft:entity.illusioner.hurt": {
+ "protocol_id": 741
+ },
+ "minecraft:entity.illusioner.mirror_move": {
+ "protocol_id": 742
+ },
+ "minecraft:entity.illusioner.prepare_blindness": {
+ "protocol_id": 743
+ },
+ "minecraft:entity.illusioner.prepare_mirror": {
+ "protocol_id": 744
+ },
+ "minecraft:entity.iron_golem.attack": {
+ "protocol_id": 748
+ },
+ "minecraft:entity.iron_golem.damage": {
+ "protocol_id": 749
+ },
+ "minecraft:entity.iron_golem.death": {
+ "protocol_id": 750
+ },
+ "minecraft:entity.iron_golem.hurt": {
+ "protocol_id": 751
+ },
+ "minecraft:entity.iron_golem.repair": {
+ "protocol_id": 752
+ },
+ "minecraft:entity.iron_golem.step": {
+ "protocol_id": 753
+ },
+ "minecraft:entity.item.break": {
+ "protocol_id": 761
+ },
+ "minecraft:entity.item.pickup": {
+ "protocol_id": 762
+ },
+ "minecraft:entity.item_frame.add_item": {
+ "protocol_id": 756
+ },
+ "minecraft:entity.item_frame.break": {
+ "protocol_id": 757
+ },
+ "minecraft:entity.item_frame.place": {
+ "protocol_id": 758
+ },
+ "minecraft:entity.item_frame.remove_item": {
"protocol_id": 759
},
- "minecraft:item.nether_wart.plant": {
- "protocol_id": 877
+ "minecraft:entity.item_frame.rotate_item": {
+ "protocol_id": 760
},
- "minecraft:item.shield.block": {
- "protocol_id": 1182
+ "minecraft:entity.leash_knot.break": {
+ "protocol_id": 778
},
- "minecraft:item.shield.break": {
- "protocol_id": 1183
+ "minecraft:entity.leash_knot.place": {
+ "protocol_id": 779
},
- "minecraft:item.shovel.flatten": {
- "protocol_id": 1189
+ "minecraft:entity.lightning_bolt.impact": {
+ "protocol_id": 781
},
- "minecraft:item.spyglass.stop_using": {
- "protocol_id": 1307
+ "minecraft:entity.lightning_bolt.thunder": {
+ "protocol_id": 782
},
- "minecraft:item.spyglass.use": {
- "protocol_id": 1306
+ "minecraft:entity.lingering_potion.throw": {
+ "protocol_id": 783
},
- "minecraft:item.totem.use": {
- "protocol_id": 1334
+ "minecraft:entity.llama.ambient": {
+ "protocol_id": 784
},
- "minecraft:item.trident.hit": {
- "protocol_id": 1335
+ "minecraft:entity.llama.angry": {
+ "protocol_id": 785
},
- "minecraft:item.trident.hit_ground": {
- "protocol_id": 1336
+ "minecraft:entity.llama.chest": {
+ "protocol_id": 786
},
- "minecraft:item.trident.return": {
- "protocol_id": 1337
+ "minecraft:entity.llama.death": {
+ "protocol_id": 787
},
- "minecraft:item.trident.riptide_1": {
- "protocol_id": 1338
+ "minecraft:entity.llama.eat": {
+ "protocol_id": 788
},
- "minecraft:item.trident.riptide_2": {
- "protocol_id": 1339
+ "minecraft:entity.llama.hurt": {
+ "protocol_id": 789
},
- "minecraft:item.trident.riptide_3": {
- "protocol_id": 1340
+ "minecraft:entity.llama.spit": {
+ "protocol_id": 790
},
- "minecraft:item.trident.throw": {
- "protocol_id": 1341
+ "minecraft:entity.llama.step": {
+ "protocol_id": 791
},
- "minecraft:item.trident.thunder": {
- "protocol_id": 1342
+ "minecraft:entity.llama.swag": {
+ "protocol_id": 792
},
- "minecraft:music.creative": {
+ "minecraft:entity.magma_cube.death": {
+ "protocol_id": 803
+ },
+ "minecraft:entity.magma_cube.death_small": {
+ "protocol_id": 793
+ },
+ "minecraft:entity.magma_cube.hurt": {
+ "protocol_id": 804
+ },
+ "minecraft:entity.magma_cube.hurt_small": {
+ "protocol_id": 805
+ },
+ "minecraft:entity.magma_cube.jump": {
+ "protocol_id": 806
+ },
+ "minecraft:entity.magma_cube.squish": {
+ "protocol_id": 807
+ },
+ "minecraft:entity.magma_cube.squish_small": {
+ "protocol_id": 808
+ },
+ "minecraft:entity.minecart.inside": {
"protocol_id": 824
},
- "minecraft:music.credits": {
+ "minecraft:entity.minecart.inside.underwater": {
+ "protocol_id": 823
+ },
+ "minecraft:entity.minecart.riding": {
"protocol_id": 825
},
- "minecraft:music.dragon": {
- "protocol_id": 842
- },
- "minecraft:music.end": {
- "protocol_id": 843
- },
- "minecraft:music.game": {
- "protocol_id": 844
- },
- "minecraft:music.menu": {
- "protocol_id": 845
- },
- "minecraft:music.nether.basalt_deltas": {
- "protocol_id": 846
- },
- "minecraft:music.nether.crimson_forest": {
- "protocol_id": 847
- },
- "minecraft:music.nether.nether_wastes": {
- "protocol_id": 858
- },
- "minecraft:music.nether.soul_sand_valley": {
- "protocol_id": 861
- },
- "minecraft:music.nether.warped_forest": {
- "protocol_id": 863
- },
- "minecraft:music.overworld.badlands": {
- "protocol_id": 866
- },
- "minecraft:music.overworld.bamboo_jungle": {
- "protocol_id": 869
- },
- "minecraft:music.overworld.cherry_grove": {
- "protocol_id": 857
- },
- "minecraft:music.overworld.deep_dark": {
- "protocol_id": 848
- },
- "minecraft:music.overworld.desert": {
- "protocol_id": 865
- },
- "minecraft:music.overworld.dripstone_caves": {
- "protocol_id": 849
- },
- "minecraft:music.overworld.flower_forest": {
- "protocol_id": 864
- },
- "minecraft:music.overworld.forest": {
- "protocol_id": 854
- },
- "minecraft:music.overworld.frozen_peaks": {
- "protocol_id": 859
- },
- "minecraft:music.overworld.grove": {
- "protocol_id": 850
- },
- "minecraft:music.overworld.jagged_peaks": {
- "protocol_id": 851
- },
- "minecraft:music.overworld.jungle": {
- "protocol_id": 867
- },
- "minecraft:music.overworld.lush_caves": {
- "protocol_id": 852
- },
- "minecraft:music.overworld.meadow": {
- "protocol_id": 856
- },
- "minecraft:music.overworld.old_growth_taiga": {
- "protocol_id": 855
- },
- "minecraft:music.overworld.snowy_slopes": {
- "protocol_id": 860
- },
- "minecraft:music.overworld.sparse_jungle": {
- "protocol_id": 868
- },
- "minecraft:music.overworld.stony_peaks": {
- "protocol_id": 862
- },
- "minecraft:music.overworld.swamp": {
- "protocol_id": 853
- },
- "minecraft:music.under_water": {
- "protocol_id": 870
- },
- "minecraft:music_disc.11": {
- "protocol_id": 827
- },
- "minecraft:music_disc.13": {
- "protocol_id": 828
- },
- "minecraft:music_disc.5": {
+ "minecraft:entity.mooshroom.convert": {
"protocol_id": 826
},
- "minecraft:music_disc.blocks": {
- "protocol_id": 829
+ "minecraft:entity.mooshroom.eat": {
+ "protocol_id": 827
},
- "minecraft:music_disc.cat": {
+ "minecraft:entity.mooshroom.milk": {
+ "protocol_id": 828
+ },
+ "minecraft:entity.mooshroom.shear": {
"protocol_id": 830
},
- "minecraft:music_disc.chirp": {
- "protocol_id": 831
+ "minecraft:entity.mooshroom.suspicious_milk": {
+ "protocol_id": 829
},
- "minecraft:music_disc.far": {
- "protocol_id": 832
+ "minecraft:entity.mule.ambient": {
+ "protocol_id": 861
},
- "minecraft:music_disc.mall": {
- "protocol_id": 833
+ "minecraft:entity.mule.angry": {
+ "protocol_id": 862
},
- "minecraft:music_disc.mellohi": {
- "protocol_id": 834
+ "minecraft:entity.mule.chest": {
+ "protocol_id": 863
},
- "minecraft:music_disc.otherside": {
- "protocol_id": 840
+ "minecraft:entity.mule.death": {
+ "protocol_id": 864
},
- "minecraft:music_disc.pigstep": {
- "protocol_id": 835
+ "minecraft:entity.mule.eat": {
+ "protocol_id": 865
},
- "minecraft:music_disc.relic": {
- "protocol_id": 841
+ "minecraft:entity.mule.hurt": {
+ "protocol_id": 866
},
- "minecraft:music_disc.stal": {
- "protocol_id": 836
+ "minecraft:entity.mule.jump": {
+ "protocol_id": 867
},
- "minecraft:music_disc.strad": {
- "protocol_id": 837
+ "minecraft:entity.ocelot.ambient": {
+ "protocol_id": 1006
},
- "minecraft:music_disc.wait": {
- "protocol_id": 838
+ "minecraft:entity.ocelot.death": {
+ "protocol_id": 1007
},
- "minecraft:music_disc.ward": {
- "protocol_id": 839
+ "minecraft:entity.ocelot.hurt": {
+ "protocol_id": 1005
},
- "minecraft:particle.soul_escape": {
+ "minecraft:entity.painting.break": {
+ "protocol_id": 1009
+ },
+ "minecraft:entity.painting.place": {
+ "protocol_id": 1010
+ },
+ "minecraft:entity.panda.aggressive_ambient": {
+ "protocol_id": 1018
+ },
+ "minecraft:entity.panda.ambient": {
+ "protocol_id": 1013
+ },
+ "minecraft:entity.panda.bite": {
+ "protocol_id": 1021
+ },
+ "minecraft:entity.panda.cant_breed": {
+ "protocol_id": 1017
+ },
+ "minecraft:entity.panda.death": {
+ "protocol_id": 1014
+ },
+ "minecraft:entity.panda.eat": {
+ "protocol_id": 1015
+ },
+ "minecraft:entity.panda.hurt": {
+ "protocol_id": 1020
+ },
+ "minecraft:entity.panda.pre_sneeze": {
+ "protocol_id": 1011
+ },
+ "minecraft:entity.panda.sneeze": {
+ "protocol_id": 1012
+ },
+ "minecraft:entity.panda.step": {
+ "protocol_id": 1016
+ },
+ "minecraft:entity.panda.worried_ambient": {
+ "protocol_id": 1019
+ },
+ "minecraft:entity.parrot.ambient": {
+ "protocol_id": 1022
+ },
+ "minecraft:entity.parrot.death": {
+ "protocol_id": 1023
+ },
+ "minecraft:entity.parrot.eat": {
+ "protocol_id": 1024
+ },
+ "minecraft:entity.parrot.fly": {
+ "protocol_id": 1025
+ },
+ "minecraft:entity.parrot.hurt": {
+ "protocol_id": 1026
+ },
+ "minecraft:entity.parrot.imitate.blaze": {
+ "protocol_id": 1027
+ },
+ "minecraft:entity.parrot.imitate.bogged": {
+ "protocol_id": 1028
+ },
+ "minecraft:entity.parrot.imitate.breeze": {
+ "protocol_id": 1029
+ },
+ "minecraft:entity.parrot.imitate.creeper": {
+ "protocol_id": 1030
+ },
+ "minecraft:entity.parrot.imitate.drowned": {
+ "protocol_id": 1031
+ },
+ "minecraft:entity.parrot.imitate.elder_guardian": {
+ "protocol_id": 1032
+ },
+ "minecraft:entity.parrot.imitate.ender_dragon": {
+ "protocol_id": 1033
+ },
+ "minecraft:entity.parrot.imitate.endermite": {
+ "protocol_id": 1034
+ },
+ "minecraft:entity.parrot.imitate.evoker": {
+ "protocol_id": 1035
+ },
+ "minecraft:entity.parrot.imitate.ghast": {
+ "protocol_id": 1036
+ },
+ "minecraft:entity.parrot.imitate.guardian": {
+ "protocol_id": 1037
+ },
+ "minecraft:entity.parrot.imitate.hoglin": {
+ "protocol_id": 1038
+ },
+ "minecraft:entity.parrot.imitate.husk": {
+ "protocol_id": 1039
+ },
+ "minecraft:entity.parrot.imitate.illusioner": {
+ "protocol_id": 1040
+ },
+ "minecraft:entity.parrot.imitate.magma_cube": {
+ "protocol_id": 1041
+ },
+ "minecraft:entity.parrot.imitate.phantom": {
+ "protocol_id": 1042
+ },
+ "minecraft:entity.parrot.imitate.piglin": {
+ "protocol_id": 1043
+ },
+ "minecraft:entity.parrot.imitate.piglin_brute": {
+ "protocol_id": 1044
+ },
+ "minecraft:entity.parrot.imitate.pillager": {
+ "protocol_id": 1045
+ },
+ "minecraft:entity.parrot.imitate.ravager": {
+ "protocol_id": 1046
+ },
+ "minecraft:entity.parrot.imitate.shulker": {
+ "protocol_id": 1047
+ },
+ "minecraft:entity.parrot.imitate.silverfish": {
+ "protocol_id": 1048
+ },
+ "minecraft:entity.parrot.imitate.skeleton": {
+ "protocol_id": 1049
+ },
+ "minecraft:entity.parrot.imitate.slime": {
+ "protocol_id": 1050
+ },
+ "minecraft:entity.parrot.imitate.spider": {
+ "protocol_id": 1051
+ },
+ "minecraft:entity.parrot.imitate.stray": {
+ "protocol_id": 1052
+ },
+ "minecraft:entity.parrot.imitate.vex": {
+ "protocol_id": 1053
+ },
+ "minecraft:entity.parrot.imitate.vindicator": {
+ "protocol_id": 1054
+ },
+ "minecraft:entity.parrot.imitate.warden": {
+ "protocol_id": 1055
+ },
+ "minecraft:entity.parrot.imitate.witch": {
+ "protocol_id": 1056
+ },
+ "minecraft:entity.parrot.imitate.wither": {
+ "protocol_id": 1057
+ },
+ "minecraft:entity.parrot.imitate.wither_skeleton": {
+ "protocol_id": 1058
+ },
+ "minecraft:entity.parrot.imitate.zoglin": {
+ "protocol_id": 1059
+ },
+ "minecraft:entity.parrot.imitate.zombie": {
+ "protocol_id": 1060
+ },
+ "minecraft:entity.parrot.imitate.zombie_villager": {
+ "protocol_id": 1061
+ },
+ "minecraft:entity.parrot.step": {
+ "protocol_id": 1062
+ },
+ "minecraft:entity.phantom.ambient": {
+ "protocol_id": 1063
+ },
+ "minecraft:entity.phantom.bite": {
+ "protocol_id": 1064
+ },
+ "minecraft:entity.phantom.death": {
+ "protocol_id": 1065
+ },
+ "minecraft:entity.phantom.flap": {
+ "protocol_id": 1066
+ },
+ "minecraft:entity.phantom.hurt": {
+ "protocol_id": 1067
+ },
+ "minecraft:entity.phantom.swoop": {
+ "protocol_id": 1068
+ },
+ "minecraft:entity.pig.ambient": {
+ "protocol_id": 1069
+ },
+ "minecraft:entity.pig.death": {
+ "protocol_id": 1070
+ },
+ "minecraft:entity.pig.hurt": {
+ "protocol_id": 1071
+ },
+ "minecraft:entity.pig.saddle": {
+ "protocol_id": 1072
+ },
+ "minecraft:entity.pig.step": {
+ "protocol_id": 1073
+ },
+ "minecraft:entity.piglin.admiring_item": {
+ "protocol_id": 1074
+ },
+ "minecraft:entity.piglin.ambient": {
+ "protocol_id": 1075
+ },
+ "minecraft:entity.piglin.angry": {
+ "protocol_id": 1076
+ },
+ "minecraft:entity.piglin.celebrate": {
+ "protocol_id": 1077
+ },
+ "minecraft:entity.piglin.converted_to_zombified": {
+ "protocol_id": 1083
+ },
+ "minecraft:entity.piglin.death": {
+ "protocol_id": 1078
+ },
+ "minecraft:entity.piglin.hurt": {
+ "protocol_id": 1080
+ },
+ "minecraft:entity.piglin.jealous": {
+ "protocol_id": 1079
+ },
+ "minecraft:entity.piglin.retreat": {
+ "protocol_id": 1081
+ },
+ "minecraft:entity.piglin.step": {
+ "protocol_id": 1082
+ },
+ "minecraft:entity.piglin_brute.ambient": {
+ "protocol_id": 1084
+ },
+ "minecraft:entity.piglin_brute.angry": {
+ "protocol_id": 1085
+ },
+ "minecraft:entity.piglin_brute.converted_to_zombified": {
+ "protocol_id": 1089
+ },
+ "minecraft:entity.piglin_brute.death": {
+ "protocol_id": 1086
+ },
+ "minecraft:entity.piglin_brute.hurt": {
+ "protocol_id": 1087
+ },
+ "minecraft:entity.piglin_brute.step": {
+ "protocol_id": 1088
+ },
+ "minecraft:entity.pillager.ambient": {
+ "protocol_id": 1090
+ },
+ "minecraft:entity.pillager.celebrate": {
+ "protocol_id": 1091
+ },
+ "minecraft:entity.pillager.death": {
+ "protocol_id": 1092
+ },
+ "minecraft:entity.pillager.hurt": {
+ "protocol_id": 1093
+ },
+ "minecraft:entity.player.attack.crit": {
+ "protocol_id": 1096
+ },
+ "minecraft:entity.player.attack.knockback": {
+ "protocol_id": 1097
+ },
+ "minecraft:entity.player.attack.nodamage": {
+ "protocol_id": 1098
+ },
+ "minecraft:entity.player.attack.strong": {
+ "protocol_id": 1099
+ },
+ "minecraft:entity.player.attack.sweep": {
+ "protocol_id": 1100
+ },
+ "minecraft:entity.player.attack.weak": {
+ "protocol_id": 1101
+ },
+ "minecraft:entity.player.big_fall": {
+ "protocol_id": 1102
+ },
+ "minecraft:entity.player.breath": {
+ "protocol_id": 1103
+ },
+ "minecraft:entity.player.burp": {
+ "protocol_id": 1104
+ },
+ "minecraft:entity.player.death": {
+ "protocol_id": 1105
+ },
+ "minecraft:entity.player.hurt": {
+ "protocol_id": 1106
+ },
+ "minecraft:entity.player.hurt_drown": {
+ "protocol_id": 1107
+ },
+ "minecraft:entity.player.hurt_freeze": {
+ "protocol_id": 1108
+ },
+ "minecraft:entity.player.hurt_on_fire": {
+ "protocol_id": 1109
+ },
+ "minecraft:entity.player.hurt_sweet_berry_bush": {
+ "protocol_id": 1110
+ },
+ "minecraft:entity.player.levelup": {
+ "protocol_id": 1111
+ },
+ "minecraft:entity.player.small_fall": {
+ "protocol_id": 1112
+ },
+ "minecraft:entity.player.splash": {
+ "protocol_id": 1113
+ },
+ "minecraft:entity.player.splash.high_speed": {
+ "protocol_id": 1114
+ },
+ "minecraft:entity.player.swim": {
+ "protocol_id": 1115
+ },
+ "minecraft:entity.player.teleport": {
+ "protocol_id": 1116
+ },
+ "minecraft:entity.polar_bear.ambient": {
+ "protocol_id": 1117
+ },
+ "minecraft:entity.polar_bear.ambient_baby": {
+ "protocol_id": 1118
+ },
+ "minecraft:entity.polar_bear.death": {
+ "protocol_id": 1119
+ },
+ "minecraft:entity.polar_bear.hurt": {
+ "protocol_id": 1120
+ },
+ "minecraft:entity.polar_bear.step": {
+ "protocol_id": 1121
+ },
+ "minecraft:entity.polar_bear.warning": {
+ "protocol_id": 1122
+ },
+ "minecraft:entity.puffer_fish.ambient": {
+ "protocol_id": 1136
+ },
+ "minecraft:entity.puffer_fish.blow_out": {
+ "protocol_id": 1137
+ },
+ "minecraft:entity.puffer_fish.blow_up": {
+ "protocol_id": 1138
+ },
+ "minecraft:entity.puffer_fish.death": {
+ "protocol_id": 1139
+ },
+ "minecraft:entity.puffer_fish.flop": {
+ "protocol_id": 1140
+ },
+ "minecraft:entity.puffer_fish.hurt": {
+ "protocol_id": 1141
+ },
+ "minecraft:entity.puffer_fish.sting": {
+ "protocol_id": 1142
+ },
+ "minecraft:entity.rabbit.ambient": {
+ "protocol_id": 1144
+ },
+ "minecraft:entity.rabbit.attack": {
+ "protocol_id": 1145
+ },
+ "minecraft:entity.rabbit.death": {
+ "protocol_id": 1146
+ },
+ "minecraft:entity.rabbit.hurt": {
+ "protocol_id": 1147
+ },
+ "minecraft:entity.rabbit.jump": {
+ "protocol_id": 1148
+ },
+ "minecraft:entity.ravager.ambient": {
+ "protocol_id": 1150
+ },
+ "minecraft:entity.ravager.attack": {
+ "protocol_id": 1151
+ },
+ "minecraft:entity.ravager.celebrate": {
+ "protocol_id": 1152
+ },
+ "minecraft:entity.ravager.death": {
+ "protocol_id": 1153
+ },
+ "minecraft:entity.ravager.hurt": {
+ "protocol_id": 1154
+ },
+ "minecraft:entity.ravager.roar": {
+ "protocol_id": 1157
+ },
+ "minecraft:entity.ravager.step": {
+ "protocol_id": 1155
+ },
+ "minecraft:entity.ravager.stunned": {
+ "protocol_id": 1156
+ },
+ "minecraft:entity.salmon.ambient": {
+ "protocol_id": 1178
+ },
+ "minecraft:entity.salmon.death": {
+ "protocol_id": 1179
+ },
+ "minecraft:entity.salmon.flop": {
+ "protocol_id": 1180
+ },
+ "minecraft:entity.salmon.hurt": {
+ "protocol_id": 1181
+ },
+ "minecraft:entity.sheep.ambient": {
+ "protocol_id": 1223
+ },
+ "minecraft:entity.sheep.death": {
+ "protocol_id": 1224
+ },
+ "minecraft:entity.sheep.hurt": {
+ "protocol_id": 1225
+ },
+ "minecraft:entity.sheep.shear": {
+ "protocol_id": 1226
+ },
+ "minecraft:entity.sheep.step": {
+ "protocol_id": 1227
+ },
+ "minecraft:entity.shulker.ambient": {
+ "protocol_id": 1236
+ },
+ "minecraft:entity.shulker.close": {
+ "protocol_id": 1241
+ },
+ "minecraft:entity.shulker.death": {
+ "protocol_id": 1242
+ },
+ "minecraft:entity.shulker.hurt": {
+ "protocol_id": 1243
+ },
+ "minecraft:entity.shulker.hurt_closed": {
+ "protocol_id": 1244
+ },
+ "minecraft:entity.shulker.open": {
+ "protocol_id": 1245
+ },
+ "minecraft:entity.shulker.shoot": {
+ "protocol_id": 1246
+ },
+ "minecraft:entity.shulker.teleport": {
"protocol_id": 1247
},
- "minecraft:ui.button.click": {
- "protocol_id": 1378
+ "minecraft:entity.shulker_bullet.hit": {
+ "protocol_id": 1239
},
- "minecraft:ui.cartography_table.take_result": {
- "protocol_id": 1381
+ "minecraft:entity.shulker_bullet.hurt": {
+ "protocol_id": 1240
},
- "minecraft:ui.loom.select_pattern": {
+ "minecraft:entity.silverfish.ambient": {
+ "protocol_id": 1248
+ },
+ "minecraft:entity.silverfish.death": {
+ "protocol_id": 1249
+ },
+ "minecraft:entity.silverfish.hurt": {
+ "protocol_id": 1250
+ },
+ "minecraft:entity.silverfish.step": {
+ "protocol_id": 1251
+ },
+ "minecraft:entity.skeleton.ambient": {
+ "protocol_id": 1252
+ },
+ "minecraft:entity.skeleton.converted_to_stray": {
+ "protocol_id": 1253
+ },
+ "minecraft:entity.skeleton.death": {
+ "protocol_id": 1254
+ },
+ "minecraft:entity.skeleton.hurt": {
+ "protocol_id": 1263
+ },
+ "minecraft:entity.skeleton.shoot": {
+ "protocol_id": 1264
+ },
+ "minecraft:entity.skeleton.step": {
+ "protocol_id": 1265
+ },
+ "minecraft:entity.skeleton_horse.ambient": {
+ "protocol_id": 1255
+ },
+ "minecraft:entity.skeleton_horse.ambient_water": {
+ "protocol_id": 1259
+ },
+ "minecraft:entity.skeleton_horse.death": {
+ "protocol_id": 1256
+ },
+ "minecraft:entity.skeleton_horse.gallop_water": {
+ "protocol_id": 1260
+ },
+ "minecraft:entity.skeleton_horse.hurt": {
+ "protocol_id": 1257
+ },
+ "minecraft:entity.skeleton_horse.jump_water": {
+ "protocol_id": 1261
+ },
+ "minecraft:entity.skeleton_horse.step_water": {
+ "protocol_id": 1262
+ },
+ "minecraft:entity.skeleton_horse.swim": {
+ "protocol_id": 1258
+ },
+ "minecraft:entity.slime.attack": {
+ "protocol_id": 1266
+ },
+ "minecraft:entity.slime.death": {
+ "protocol_id": 1267
+ },
+ "minecraft:entity.slime.death_small": {
+ "protocol_id": 1308
+ },
+ "minecraft:entity.slime.hurt": {
+ "protocol_id": 1268
+ },
+ "minecraft:entity.slime.hurt_small": {
+ "protocol_id": 1309
+ },
+ "minecraft:entity.slime.jump": {
+ "protocol_id": 1269
+ },
+ "minecraft:entity.slime.jump_small": {
+ "protocol_id": 1310
+ },
+ "minecraft:entity.slime.squish": {
+ "protocol_id": 1270
+ },
+ "minecraft:entity.slime.squish_small": {
+ "protocol_id": 1311
+ },
+ "minecraft:entity.sniffer.death": {
+ "protocol_id": 1318
+ },
+ "minecraft:entity.sniffer.digging": {
+ "protocol_id": 1323
+ },
+ "minecraft:entity.sniffer.digging_stop": {
+ "protocol_id": 1324
+ },
+ "minecraft:entity.sniffer.drop_seed": {
+ "protocol_id": 1319
+ },
+ "minecraft:entity.sniffer.eat": {
+ "protocol_id": 1315
+ },
+ "minecraft:entity.sniffer.happy": {
+ "protocol_id": 1325
+ },
+ "minecraft:entity.sniffer.hurt": {
+ "protocol_id": 1317
+ },
+ "minecraft:entity.sniffer.idle": {
+ "protocol_id": 1316
+ },
+ "minecraft:entity.sniffer.scenting": {
+ "protocol_id": 1320
+ },
+ "minecraft:entity.sniffer.searching": {
+ "protocol_id": 1322
+ },
+ "minecraft:entity.sniffer.sniffing": {
+ "protocol_id": 1321
+ },
+ "minecraft:entity.sniffer.step": {
+ "protocol_id": 1314
+ },
+ "minecraft:entity.snow_golem.ambient": {
+ "protocol_id": 1332
+ },
+ "minecraft:entity.snow_golem.death": {
+ "protocol_id": 1333
+ },
+ "minecraft:entity.snow_golem.hurt": {
+ "protocol_id": 1334
+ },
+ "minecraft:entity.snow_golem.shear": {
+ "protocol_id": 1336
+ },
+ "minecraft:entity.snow_golem.shoot": {
+ "protocol_id": 1335
+ },
+ "minecraft:entity.snowball.throw": {
+ "protocol_id": 1329
+ },
+ "minecraft:entity.spider.ambient": {
+ "protocol_id": 1340
+ },
+ "minecraft:entity.spider.death": {
+ "protocol_id": 1341
+ },
+ "minecraft:entity.spider.hurt": {
+ "protocol_id": 1342
+ },
+ "minecraft:entity.spider.step": {
+ "protocol_id": 1343
+ },
+ "minecraft:entity.splash_potion.break": {
+ "protocol_id": 1344
+ },
+ "minecraft:entity.splash_potion.throw": {
+ "protocol_id": 1345
+ },
+ "minecraft:entity.squid.ambient": {
+ "protocol_id": 1354
+ },
+ "minecraft:entity.squid.death": {
+ "protocol_id": 1355
+ },
+ "minecraft:entity.squid.hurt": {
+ "protocol_id": 1356
+ },
+ "minecraft:entity.squid.squirt": {
+ "protocol_id": 1357
+ },
+ "minecraft:entity.stray.ambient": {
+ "protocol_id": 1367
+ },
+ "minecraft:entity.stray.death": {
+ "protocol_id": 1368
+ },
+ "minecraft:entity.stray.hurt": {
+ "protocol_id": 1369
+ },
+ "minecraft:entity.stray.step": {
+ "protocol_id": 1370
+ },
+ "minecraft:entity.strider.ambient": {
+ "protocol_id": 1299
+ },
+ "minecraft:entity.strider.death": {
+ "protocol_id": 1302
+ },
+ "minecraft:entity.strider.eat": {
+ "protocol_id": 1306
+ },
+ "minecraft:entity.strider.happy": {
+ "protocol_id": 1300
+ },
+ "minecraft:entity.strider.hurt": {
+ "protocol_id": 1303
+ },
+ "minecraft:entity.strider.retreat": {
+ "protocol_id": 1301
+ },
+ "minecraft:entity.strider.saddle": {
+ "protocol_id": 1307
+ },
+ "minecraft:entity.strider.step": {
+ "protocol_id": 1304
+ },
+ "minecraft:entity.strider.step_lava": {
+ "protocol_id": 1305
+ },
+ "minecraft:entity.tadpole.death": {
+ "protocol_id": 1374
+ },
+ "minecraft:entity.tadpole.flop": {
+ "protocol_id": 1375
+ },
+ "minecraft:entity.tadpole.grow_up": {
+ "protocol_id": 1376
+ },
+ "minecraft:entity.tadpole.hurt": {
+ "protocol_id": 1377
+ },
+ "minecraft:entity.tnt.primed": {
"protocol_id": 1379
},
- "minecraft:ui.loom.take_result": {
- "protocol_id": 1380
+ "minecraft:entity.tropical_fish.ambient": {
+ "protocol_id": 1393
},
- "minecraft:ui.stonecutter.select_recipe": {
- "protocol_id": 1383
+ "minecraft:entity.tropical_fish.death": {
+ "protocol_id": 1394
},
- "minecraft:ui.stonecutter.take_result": {
- "protocol_id": 1382
+ "minecraft:entity.tropical_fish.flop": {
+ "protocol_id": 1395
},
- "minecraft:ui.toast.challenge_complete": {
- "protocol_id": 1384
+ "minecraft:entity.tropical_fish.hurt": {
+ "protocol_id": 1396
},
- "minecraft:ui.toast.in": {
- "protocol_id": 1385
+ "minecraft:entity.turtle.ambient_land": {
+ "protocol_id": 1412
},
- "minecraft:ui.toast.out": {
- "protocol_id": 1386
+ "minecraft:entity.turtle.death": {
+ "protocol_id": 1413
},
- "minecraft:weather.rain": {
+ "minecraft:entity.turtle.death_baby": {
+ "protocol_id": 1414
+ },
+ "minecraft:entity.turtle.egg_break": {
+ "protocol_id": 1415
+ },
+ "minecraft:entity.turtle.egg_crack": {
+ "protocol_id": 1416
+ },
+ "minecraft:entity.turtle.egg_hatch": {
+ "protocol_id": 1417
+ },
+ "minecraft:entity.turtle.hurt": {
+ "protocol_id": 1418
+ },
+ "minecraft:entity.turtle.hurt_baby": {
+ "protocol_id": 1419
+ },
+ "minecraft:entity.turtle.lay_egg": {
+ "protocol_id": 1420
+ },
+ "minecraft:entity.turtle.shamble": {
+ "protocol_id": 1421
+ },
+ "minecraft:entity.turtle.shamble_baby": {
+ "protocol_id": 1422
+ },
+ "minecraft:entity.turtle.swim": {
+ "protocol_id": 1423
+ },
+ "minecraft:entity.vex.ambient": {
+ "protocol_id": 1446
+ },
+ "minecraft:entity.vex.charge": {
+ "protocol_id": 1447
+ },
+ "minecraft:entity.vex.death": {
+ "protocol_id": 1448
+ },
+ "minecraft:entity.vex.hurt": {
+ "protocol_id": 1449
+ },
+ "minecraft:entity.villager.ambient": {
+ "protocol_id": 1450
+ },
+ "minecraft:entity.villager.celebrate": {
+ "protocol_id": 1451
+ },
+ "minecraft:entity.villager.death": {
+ "protocol_id": 1452
+ },
+ "minecraft:entity.villager.hurt": {
+ "protocol_id": 1453
+ },
+ "minecraft:entity.villager.no": {
"protocol_id": 1454
},
- "minecraft:weather.rain.above": {
+ "minecraft:entity.villager.trade": {
"protocol_id": 1455
+ },
+ "minecraft:entity.villager.work_armorer": {
+ "protocol_id": 1457
+ },
+ "minecraft:entity.villager.work_butcher": {
+ "protocol_id": 1458
+ },
+ "minecraft:entity.villager.work_cartographer": {
+ "protocol_id": 1459
+ },
+ "minecraft:entity.villager.work_cleric": {
+ "protocol_id": 1460
+ },
+ "minecraft:entity.villager.work_farmer": {
+ "protocol_id": 1461
+ },
+ "minecraft:entity.villager.work_fisherman": {
+ "protocol_id": 1462
+ },
+ "minecraft:entity.villager.work_fletcher": {
+ "protocol_id": 1463
+ },
+ "minecraft:entity.villager.work_leatherworker": {
+ "protocol_id": 1464
+ },
+ "minecraft:entity.villager.work_librarian": {
+ "protocol_id": 1465
+ },
+ "minecraft:entity.villager.work_mason": {
+ "protocol_id": 1466
+ },
+ "minecraft:entity.villager.work_shepherd": {
+ "protocol_id": 1467
+ },
+ "minecraft:entity.villager.work_toolsmith": {
+ "protocol_id": 1468
+ },
+ "minecraft:entity.villager.work_weaponsmith": {
+ "protocol_id": 1469
+ },
+ "minecraft:entity.villager.yes": {
+ "protocol_id": 1456
+ },
+ "minecraft:entity.vindicator.ambient": {
+ "protocol_id": 1470
+ },
+ "minecraft:entity.vindicator.celebrate": {
+ "protocol_id": 1471
+ },
+ "minecraft:entity.vindicator.death": {
+ "protocol_id": 1472
+ },
+ "minecraft:entity.vindicator.hurt": {
+ "protocol_id": 1473
+ },
+ "minecraft:entity.wandering_trader.ambient": {
+ "protocol_id": 1480
+ },
+ "minecraft:entity.wandering_trader.death": {
+ "protocol_id": 1481
+ },
+ "minecraft:entity.wandering_trader.disappeared": {
+ "protocol_id": 1482
+ },
+ "minecraft:entity.wandering_trader.drink_milk": {
+ "protocol_id": 1483
+ },
+ "minecraft:entity.wandering_trader.drink_potion": {
+ "protocol_id": 1484
+ },
+ "minecraft:entity.wandering_trader.hurt": {
+ "protocol_id": 1485
+ },
+ "minecraft:entity.wandering_trader.no": {
+ "protocol_id": 1486
+ },
+ "minecraft:entity.wandering_trader.reappeared": {
+ "protocol_id": 1487
+ },
+ "minecraft:entity.wandering_trader.trade": {
+ "protocol_id": 1488
+ },
+ "minecraft:entity.wandering_trader.yes": {
+ "protocol_id": 1489
+ },
+ "minecraft:entity.warden.agitated": {
+ "protocol_id": 1490
+ },
+ "minecraft:entity.warden.ambient": {
+ "protocol_id": 1491
+ },
+ "minecraft:entity.warden.angry": {
+ "protocol_id": 1492
+ },
+ "minecraft:entity.warden.attack_impact": {
+ "protocol_id": 1493
+ },
+ "minecraft:entity.warden.death": {
+ "protocol_id": 1494
+ },
+ "minecraft:entity.warden.dig": {
+ "protocol_id": 1495
+ },
+ "minecraft:entity.warden.emerge": {
+ "protocol_id": 1496
+ },
+ "minecraft:entity.warden.heartbeat": {
+ "protocol_id": 1497
+ },
+ "minecraft:entity.warden.hurt": {
+ "protocol_id": 1498
+ },
+ "minecraft:entity.warden.listening": {
+ "protocol_id": 1499
+ },
+ "minecraft:entity.warden.listening_angry": {
+ "protocol_id": 1500
+ },
+ "minecraft:entity.warden.nearby_close": {
+ "protocol_id": 1501
+ },
+ "minecraft:entity.warden.nearby_closer": {
+ "protocol_id": 1502
+ },
+ "minecraft:entity.warden.nearby_closest": {
+ "protocol_id": 1503
+ },
+ "minecraft:entity.warden.roar": {
+ "protocol_id": 1504
+ },
+ "minecraft:entity.warden.sniff": {
+ "protocol_id": 1505
+ },
+ "minecraft:entity.warden.sonic_boom": {
+ "protocol_id": 1506
+ },
+ "minecraft:entity.warden.sonic_charge": {
+ "protocol_id": 1507
+ },
+ "minecraft:entity.warden.step": {
+ "protocol_id": 1508
+ },
+ "minecraft:entity.warden.tendril_clicks": {
+ "protocol_id": 1509
+ },
+ "minecraft:entity.wind_charge.throw": {
+ "protocol_id": 1527
+ },
+ "minecraft:entity.wind_charge.wind_burst": {
+ "protocol_id": 1526
+ },
+ "minecraft:entity.witch.ambient": {
+ "protocol_id": 1528
+ },
+ "minecraft:entity.witch.celebrate": {
+ "protocol_id": 1529
+ },
+ "minecraft:entity.witch.death": {
+ "protocol_id": 1530
+ },
+ "minecraft:entity.witch.drink": {
+ "protocol_id": 1531
+ },
+ "minecraft:entity.witch.hurt": {
+ "protocol_id": 1532
+ },
+ "minecraft:entity.witch.throw": {
+ "protocol_id": 1533
+ },
+ "minecraft:entity.wither.ambient": {
+ "protocol_id": 1534
+ },
+ "minecraft:entity.wither.break_block": {
+ "protocol_id": 1535
+ },
+ "minecraft:entity.wither.death": {
+ "protocol_id": 1536
+ },
+ "minecraft:entity.wither.hurt": {
+ "protocol_id": 1537
+ },
+ "minecraft:entity.wither.shoot": {
+ "protocol_id": 1538
+ },
+ "minecraft:entity.wither.spawn": {
+ "protocol_id": 1543
+ },
+ "minecraft:entity.wither_skeleton.ambient": {
+ "protocol_id": 1539
+ },
+ "minecraft:entity.wither_skeleton.death": {
+ "protocol_id": 1540
+ },
+ "minecraft:entity.wither_skeleton.hurt": {
+ "protocol_id": 1541
+ },
+ "minecraft:entity.wither_skeleton.step": {
+ "protocol_id": 1542
+ },
+ "minecraft:entity.wolf.ambient": {
+ "protocol_id": 1548
+ },
+ "minecraft:entity.wolf.death": {
+ "protocol_id": 1549
+ },
+ "minecraft:entity.wolf.growl": {
+ "protocol_id": 1550
+ },
+ "minecraft:entity.wolf.howl": {
+ "protocol_id": 1551
+ },
+ "minecraft:entity.wolf.hurt": {
+ "protocol_id": 1552
+ },
+ "minecraft:entity.wolf.pant": {
+ "protocol_id": 1553
+ },
+ "minecraft:entity.wolf.shake": {
+ "protocol_id": 1554
+ },
+ "minecraft:entity.wolf.step": {
+ "protocol_id": 1555
+ },
+ "minecraft:entity.wolf.whine": {
+ "protocol_id": 1556
+ },
+ "minecraft:entity.zoglin.ambient": {
+ "protocol_id": 1575
+ },
+ "minecraft:entity.zoglin.angry": {
+ "protocol_id": 1576
+ },
+ "minecraft:entity.zoglin.attack": {
+ "protocol_id": 1577
+ },
+ "minecraft:entity.zoglin.death": {
+ "protocol_id": 1578
+ },
+ "minecraft:entity.zoglin.hurt": {
+ "protocol_id": 1579
+ },
+ "minecraft:entity.zoglin.step": {
+ "protocol_id": 1580
+ },
+ "minecraft:entity.zombie.ambient": {
+ "protocol_id": 1581
+ },
+ "minecraft:entity.zombie.attack_iron_door": {
+ "protocol_id": 1583
+ },
+ "minecraft:entity.zombie.attack_wooden_door": {
+ "protocol_id": 1582
+ },
+ "minecraft:entity.zombie.break_wooden_door": {
+ "protocol_id": 1584
+ },
+ "minecraft:entity.zombie.converted_to_drowned": {
+ "protocol_id": 1585
+ },
+ "minecraft:entity.zombie.death": {
+ "protocol_id": 1586
+ },
+ "minecraft:entity.zombie.destroy_egg": {
+ "protocol_id": 1587
+ },
+ "minecraft:entity.zombie.hurt": {
+ "protocol_id": 1591
+ },
+ "minecraft:entity.zombie.infect": {
+ "protocol_id": 1592
+ },
+ "minecraft:entity.zombie.step": {
+ "protocol_id": 1597
+ },
+ "minecraft:entity.zombie_horse.ambient": {
+ "protocol_id": 1588
+ },
+ "minecraft:entity.zombie_horse.death": {
+ "protocol_id": 1589
+ },
+ "minecraft:entity.zombie_horse.hurt": {
+ "protocol_id": 1590
+ },
+ "minecraft:entity.zombie_villager.ambient": {
+ "protocol_id": 1598
+ },
+ "minecraft:entity.zombie_villager.converted": {
+ "protocol_id": 1599
+ },
+ "minecraft:entity.zombie_villager.cure": {
+ "protocol_id": 1600
+ },
+ "minecraft:entity.zombie_villager.death": {
+ "protocol_id": 1601
+ },
+ "minecraft:entity.zombie_villager.hurt": {
+ "protocol_id": 1602
+ },
+ "minecraft:entity.zombie_villager.step": {
+ "protocol_id": 1603
+ },
+ "minecraft:entity.zombified_piglin.ambient": {
+ "protocol_id": 1593
+ },
+ "minecraft:entity.zombified_piglin.angry": {
+ "protocol_id": 1594
+ },
+ "minecraft:entity.zombified_piglin.death": {
+ "protocol_id": 1595
+ },
+ "minecraft:entity.zombified_piglin.hurt": {
+ "protocol_id": 1596
+ },
+ "minecraft:event.mob_effect.bad_omen": {
+ "protocol_id": 1604
+ },
+ "minecraft:event.mob_effect.raid_omen": {
+ "protocol_id": 1606
+ },
+ "minecraft:event.mob_effect.trial_omen": {
+ "protocol_id": 1605
+ },
+ "minecraft:event.raid.horn": {
+ "protocol_id": 1149
+ },
+ "minecraft:intentionally_empty": {
+ "protocol_id": 937
+ },
+ "minecraft:item.armor.equip_chain": {
+ "protocol_id": 67
+ },
+ "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_netherite": {
+ "protocol_id": 74
+ },
+ "minecraft:item.armor.equip_turtle": {
+ "protocol_id": 75
+ },
+ "minecraft:item.armor.equip_wolf": {
+ "protocol_id": 76
+ },
+ "minecraft:item.armor.unequip_wolf": {
+ "protocol_id": 77
+ },
+ "minecraft:item.axe.scrape": {
+ "protocol_id": 86
+ },
+ "minecraft:item.axe.strip": {
+ "protocol_id": 85
+ },
+ "minecraft:item.axe.wax_off": {
+ "protocol_id": 87
+ },
+ "minecraft:item.bone_meal.use": {
+ "protocol_id": 179
+ },
+ "minecraft:item.book.page_turn": {
+ "protocol_id": 180
+ },
+ "minecraft:item.book.put": {
+ "protocol_id": 181
+ },
+ "minecraft:item.bottle.empty": {
+ "protocol_id": 183
+ },
+ "minecraft:item.bottle.fill": {
+ "protocol_id": 184
+ },
+ "minecraft:item.bottle.fill_dragonbreath": {
+ "protocol_id": 185
+ },
+ "minecraft:item.brush.brushing.generic": {
+ "protocol_id": 200
+ },
+ "minecraft:item.brush.brushing.gravel": {
+ "protocol_id": 202
+ },
+ "minecraft:item.brush.brushing.gravel.complete": {
+ "protocol_id": 204
+ },
+ "minecraft:item.brush.brushing.sand": {
+ "protocol_id": 201
+ },
+ "minecraft:item.brush.brushing.sand.complete": {
+ "protocol_id": 203
+ },
+ "minecraft:item.bucket.empty": {
+ "protocol_id": 210
+ },
+ "minecraft:item.bucket.empty_axolotl": {
+ "protocol_id": 211
+ },
+ "minecraft:item.bucket.empty_fish": {
+ "protocol_id": 212
+ },
+ "minecraft:item.bucket.empty_lava": {
+ "protocol_id": 213
+ },
+ "minecraft:item.bucket.empty_powder_snow": {
+ "protocol_id": 214
+ },
+ "minecraft:item.bucket.empty_tadpole": {
+ "protocol_id": 215
+ },
+ "minecraft:item.bucket.fill": {
+ "protocol_id": 216
+ },
+ "minecraft:item.bucket.fill_axolotl": {
+ "protocol_id": 217
+ },
+ "minecraft:item.bucket.fill_fish": {
+ "protocol_id": 218
+ },
+ "minecraft:item.bucket.fill_lava": {
+ "protocol_id": 219
+ },
+ "minecraft:item.bucket.fill_powder_snow": {
+ "protocol_id": 220
+ },
+ "minecraft:item.bucket.fill_tadpole": {
+ "protocol_id": 221
+ },
+ "minecraft:item.bundle.drop_contents": {
+ "protocol_id": 222
+ },
+ "minecraft:item.bundle.insert": {
+ "protocol_id": 223
+ },
+ "minecraft:item.bundle.remove_one": {
+ "protocol_id": 224
+ },
+ "minecraft:item.chorus_fruit.teleport": {
+ "protocol_id": 319
+ },
+ "minecraft:item.crop.plant": {
+ "protocol_id": 376
+ },
+ "minecraft:item.crossbow.hit": {
+ "protocol_id": 377
+ },
+ "minecraft:item.crossbow.loading_end": {
+ "protocol_id": 378
+ },
+ "minecraft:item.crossbow.loading_middle": {
+ "protocol_id": 379
+ },
+ "minecraft:item.crossbow.loading_start": {
+ "protocol_id": 380
+ },
+ "minecraft:item.crossbow.quick_charge_1": {
+ "protocol_id": 381
+ },
+ "minecraft:item.crossbow.quick_charge_2": {
+ "protocol_id": 382
+ },
+ "minecraft:item.crossbow.quick_charge_3": {
+ "protocol_id": 383
+ },
+ "minecraft:item.crossbow.shoot": {
+ "protocol_id": 384
+ },
+ "minecraft:item.dye.use": {
+ "protocol_id": 454
+ },
+ "minecraft:item.elytra.flying": {
+ "protocol_id": 464
+ },
+ "minecraft:item.firecharge.use": {
+ "protocol_id": 504
+ },
+ "minecraft:item.flintandsteel.use": {
+ "protocol_id": 519
+ },
+ "minecraft:item.glow_ink_sac.use": {
+ "protocol_id": 598
+ },
+ "minecraft:item.goat_horn.play": {
+ "protocol_id": 617
+ },
+ "minecraft:item.goat_horn.sound.0": {
+ "protocol_id": 706
+ },
+ "minecraft:item.goat_horn.sound.1": {
+ "protocol_id": 707
+ },
+ "minecraft:item.goat_horn.sound.2": {
+ "protocol_id": 708
+ },
+ "minecraft:item.goat_horn.sound.3": {
+ "protocol_id": 709
+ },
+ "minecraft:item.goat_horn.sound.4": {
+ "protocol_id": 710
+ },
+ "minecraft:item.goat_horn.sound.5": {
+ "protocol_id": 711
+ },
+ "minecraft:item.goat_horn.sound.6": {
+ "protocol_id": 712
+ },
+ "minecraft:item.goat_horn.sound.7": {
+ "protocol_id": 713
+ },
+ "minecraft:item.hoe.till": {
+ "protocol_id": 689
+ },
+ "minecraft:item.honey_bottle.drink": {
+ "protocol_id": 705
+ },
+ "minecraft:item.honeycomb.wax_on": {
+ "protocol_id": 704
+ },
+ "minecraft:item.ink_sac.use": {
+ "protocol_id": 745
+ },
+ "minecraft:item.lodestone_compass.lock": {
+ "protocol_id": 799
+ },
+ "minecraft:item.mace.smash_air": {
+ "protocol_id": 800
+ },
+ "minecraft:item.mace.smash_ground": {
+ "protocol_id": 801
+ },
+ "minecraft:item.mace.smash_ground_heavy": {
+ "protocol_id": 802
+ },
+ "minecraft:item.nether_wart.plant": {
+ "protocol_id": 921
+ },
+ "minecraft:item.ominous_bottle.dispose": {
+ "protocol_id": 1008
+ },
+ "minecraft:item.shield.block": {
+ "protocol_id": 1228
+ },
+ "minecraft:item.shield.break": {
+ "protocol_id": 1229
+ },
+ "minecraft:item.shovel.flatten": {
+ "protocol_id": 1235
+ },
+ "minecraft:item.spyglass.stop_using": {
+ "protocol_id": 1353
+ },
+ "minecraft:item.spyglass.use": {
+ "protocol_id": 1352
+ },
+ "minecraft:item.totem.use": {
+ "protocol_id": 1380
+ },
+ "minecraft:item.trident.hit": {
+ "protocol_id": 1381
+ },
+ "minecraft:item.trident.hit_ground": {
+ "protocol_id": 1382
+ },
+ "minecraft:item.trident.return": {
+ "protocol_id": 1383
+ },
+ "minecraft:item.trident.riptide_1": {
+ "protocol_id": 1384
+ },
+ "minecraft:item.trident.riptide_2": {
+ "protocol_id": 1385
+ },
+ "minecraft:item.trident.riptide_3": {
+ "protocol_id": 1386
+ },
+ "minecraft:item.trident.throw": {
+ "protocol_id": 1387
+ },
+ "minecraft:item.trident.thunder": {
+ "protocol_id": 1388
+ },
+ "minecraft:item.wolf_armor.break": {
+ "protocol_id": 1544
+ },
+ "minecraft:item.wolf_armor.crack": {
+ "protocol_id": 1545
+ },
+ "minecraft:item.wolf_armor.damage": {
+ "protocol_id": 1546
+ },
+ "minecraft:item.wolf_armor.repair": {
+ "protocol_id": 1547
+ },
+ "minecraft:music.creative": {
+ "protocol_id": 868
+ },
+ "minecraft:music.credits": {
+ "protocol_id": 869
+ },
+ "minecraft:music.dragon": {
+ "protocol_id": 886
+ },
+ "minecraft:music.end": {
+ "protocol_id": 887
+ },
+ "minecraft:music.game": {
+ "protocol_id": 888
+ },
+ "minecraft:music.menu": {
+ "protocol_id": 889
+ },
+ "minecraft:music.nether.basalt_deltas": {
+ "protocol_id": 890
+ },
+ "minecraft:music.nether.crimson_forest": {
+ "protocol_id": 891
+ },
+ "minecraft:music.nether.nether_wastes": {
+ "protocol_id": 902
+ },
+ "minecraft:music.nether.soul_sand_valley": {
+ "protocol_id": 905
+ },
+ "minecraft:music.nether.warped_forest": {
+ "protocol_id": 907
+ },
+ "minecraft:music.overworld.badlands": {
+ "protocol_id": 910
+ },
+ "minecraft:music.overworld.bamboo_jungle": {
+ "protocol_id": 913
+ },
+ "minecraft:music.overworld.cherry_grove": {
+ "protocol_id": 901
+ },
+ "minecraft:music.overworld.deep_dark": {
+ "protocol_id": 892
+ },
+ "minecraft:music.overworld.desert": {
+ "protocol_id": 909
+ },
+ "minecraft:music.overworld.dripstone_caves": {
+ "protocol_id": 893
+ },
+ "minecraft:music.overworld.flower_forest": {
+ "protocol_id": 908
+ },
+ "minecraft:music.overworld.forest": {
+ "protocol_id": 898
+ },
+ "minecraft:music.overworld.frozen_peaks": {
+ "protocol_id": 903
+ },
+ "minecraft:music.overworld.grove": {
+ "protocol_id": 894
+ },
+ "minecraft:music.overworld.jagged_peaks": {
+ "protocol_id": 895
+ },
+ "minecraft:music.overworld.jungle": {
+ "protocol_id": 911
+ },
+ "minecraft:music.overworld.lush_caves": {
+ "protocol_id": 896
+ },
+ "minecraft:music.overworld.meadow": {
+ "protocol_id": 900
+ },
+ "minecraft:music.overworld.old_growth_taiga": {
+ "protocol_id": 899
+ },
+ "minecraft:music.overworld.snowy_slopes": {
+ "protocol_id": 904
+ },
+ "minecraft:music.overworld.sparse_jungle": {
+ "protocol_id": 912
+ },
+ "minecraft:music.overworld.stony_peaks": {
+ "protocol_id": 906
+ },
+ "minecraft:music.overworld.swamp": {
+ "protocol_id": 897
+ },
+ "minecraft:music.under_water": {
+ "protocol_id": 914
+ },
+ "minecraft:music_disc.11": {
+ "protocol_id": 871
+ },
+ "minecraft:music_disc.13": {
+ "protocol_id": 872
+ },
+ "minecraft:music_disc.5": {
+ "protocol_id": 870
+ },
+ "minecraft:music_disc.blocks": {
+ "protocol_id": 873
+ },
+ "minecraft:music_disc.cat": {
+ "protocol_id": 874
+ },
+ "minecraft:music_disc.chirp": {
+ "protocol_id": 875
+ },
+ "minecraft:music_disc.far": {
+ "protocol_id": 876
+ },
+ "minecraft:music_disc.mall": {
+ "protocol_id": 877
+ },
+ "minecraft:music_disc.mellohi": {
+ "protocol_id": 878
+ },
+ "minecraft:music_disc.otherside": {
+ "protocol_id": 884
+ },
+ "minecraft:music_disc.pigstep": {
+ "protocol_id": 879
+ },
+ "minecraft:music_disc.relic": {
+ "protocol_id": 885
+ },
+ "minecraft:music_disc.stal": {
+ "protocol_id": 880
+ },
+ "minecraft:music_disc.strad": {
+ "protocol_id": 881
+ },
+ "minecraft:music_disc.wait": {
+ "protocol_id": 882
+ },
+ "minecraft:music_disc.ward": {
+ "protocol_id": 883
+ },
+ "minecraft:particle.soul_escape": {
+ "protocol_id": 1293
+ },
+ "minecraft:ui.button.click": {
+ "protocol_id": 1424
+ },
+ "minecraft:ui.cartography_table.take_result": {
+ "protocol_id": 1427
+ },
+ "minecraft:ui.loom.select_pattern": {
+ "protocol_id": 1425
+ },
+ "minecraft:ui.loom.take_result": {
+ "protocol_id": 1426
+ },
+ "minecraft:ui.stonecutter.select_recipe": {
+ "protocol_id": 1429
+ },
+ "minecraft:ui.stonecutter.take_result": {
+ "protocol_id": 1428
+ },
+ "minecraft:ui.toast.challenge_complete": {
+ "protocol_id": 1430
+ },
+ "minecraft:ui.toast.in": {
+ "protocol_id": 1431
+ },
+ "minecraft:ui.toast.out": {
+ "protocol_id": 1432
+ },
+ "minecraft:weather.rain": {
+ "protocol_id": 1513
+ },
+ "minecraft:weather.rain.above": {
+ "protocol_id": 1514
}
},
"protocol_id": 1
@@ -15928,10 +16661,13 @@
"minecraft:trigger_type": {
"entries": {
"minecraft:allay_drop_item_on_block": {
- "protocol_id": 49
+ "protocol_id": 51
+ },
+ "minecraft:any_block_use": {
+ "protocol_id": 40
},
"minecraft:avoid_vibration": {
- "protocol_id": 50
+ "protocol_id": 52
},
"minecraft:bee_nest_destroyed": {
"protocol_id": 36
@@ -15954,9 +16690,15 @@
"minecraft:consume_item": {
"protocol_id": 25
},
+ "minecraft:crafter_recipe_crafted": {
+ "protocol_id": 54
+ },
"minecraft:cured_zombie_villager": {
"protocol_id": 17
},
+ "minecraft:default_block_use": {
+ "protocol_id": 39
+ },
"minecraft:effects_changed": {
"protocol_id": 26
},
@@ -15972,8 +16714,11 @@
"minecraft:entity_killed_player": {
"protocol_id": 2
},
+ "minecraft:fall_after_explosion": {
+ "protocol_id": 55
+ },
"minecraft:fall_from_height": {
- "protocol_id": 46
+ "protocol_id": 48
},
"minecraft:filled_bucket": {
"protocol_id": 9
@@ -15997,7 +16742,7 @@
"protocol_id": 38
},
"minecraft:kill_mob_near_sculk_catalyst": {
- "protocol_id": 48
+ "protocol_id": 50
},
"minecraft:killed_by_crossbow": {
"protocol_id": 32
@@ -16006,7 +16751,7 @@
"protocol_id": 20
},
"minecraft:lightning_strike": {
- "protocol_id": 44
+ "protocol_id": 46
},
"minecraft:location": {
"protocol_id": 15
@@ -16018,25 +16763,25 @@
"protocol_id": 24
},
"minecraft:player_generates_container_loot": {
- "protocol_id": 39
+ "protocol_id": 41
},
"minecraft:player_hurt_entity": {
"protocol_id": 6
},
"minecraft:player_interacted_with_entity": {
- "protocol_id": 42
+ "protocol_id": 44
},
"minecraft:player_killed_entity": {
"protocol_id": 1
},
"minecraft:recipe_crafted": {
- "protocol_id": 51
+ "protocol_id": 53
},
"minecraft:recipe_unlocked": {
"protocol_id": 5
},
"minecraft:ride_entity_in_lava": {
- "protocol_id": 47
+ "protocol_id": 49
},
"minecraft:shot_crossbow": {
"protocol_id": 31
@@ -16048,7 +16793,7 @@
"protocol_id": 35
},
"minecraft:started_riding": {
- "protocol_id": 43
+ "protocol_id": 45
},
"minecraft:summoned_entity": {
"protocol_id": 13
@@ -16060,10 +16805,10 @@
"protocol_id": 37
},
"minecraft:thrown_item_picked_up_by_entity": {
- "protocol_id": 40
+ "protocol_id": 42
},
"minecraft:thrown_item_picked_up_by_player": {
- "protocol_id": 41
+ "protocol_id": 43
},
"minecraft:tick": {
"protocol_id": 22
@@ -16075,7 +16820,7 @@
"protocol_id": 27
},
"minecraft:using_item": {
- "protocol_id": 45
+ "protocol_id": 47
},
"minecraft:villager_trade": {
"protocol_id": 18
@@ -16084,7 +16829,7 @@
"protocol_id": 34
}
},
- "protocol_id": 68
+ "protocol_id": 67
},
"minecraft:villager_profession": {
"default": "minecraft:none",