mirror of https://github.com/LOOHP/Limbo.git
Minecraft 1.21.3
This commit is contained in:
parent
29571119f9
commit
f72584ec79
14
pom.xml
14
pom.xml
|
|
@ -24,7 +24,7 @@
|
||||||
<groupId>com.loohp</groupId>
|
<groupId>com.loohp</groupId>
|
||||||
<artifactId>Limbo</artifactId>
|
<artifactId>Limbo</artifactId>
|
||||||
<name>Limbo</name>
|
<name>Limbo</name>
|
||||||
<version>0.7.10-ALPHA</version>
|
<version>0.7.11-ALPHA</version>
|
||||||
|
|
||||||
<description>Standalone Limbo Minecraft Server.</description>
|
<description>Standalone Limbo Minecraft Server.</description>
|
||||||
<url>https://github.com/LOOHP/Limbo</url>
|
<url>https://github.com/LOOHP/Limbo</url>
|
||||||
|
|
@ -136,7 +136,7 @@
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
<finalName>${project.artifactId}-${project.version}-1.21.1</finalName>
|
<finalName>${project.artifactId}-${project.version}-1.21.3</finalName>
|
||||||
</build>
|
</build>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|
@ -265,31 +265,31 @@
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-gson</artifactId>
|
<artifactId>adventure-text-serializer-gson</artifactId>
|
||||||
<version>4.17.0-SNAPSHOT</version>
|
<version>4.17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-legacy</artifactId>
|
<artifactId>adventure-text-serializer-legacy</artifactId>
|
||||||
<version>4.17.0-SNAPSHOT</version>
|
<version>4.17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-text-serializer-plain</artifactId>
|
<artifactId>adventure-text-serializer-plain</artifactId>
|
||||||
<version>4.17.0-SNAPSHOT</version>
|
<version>4.17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-api</artifactId>
|
<artifactId>adventure-api</artifactId>
|
||||||
<version>4.17.0-SNAPSHOT</version>
|
<version>4.17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
<groupId>net.kyori</groupId>
|
<groupId>net.kyori</groupId>
|
||||||
<artifactId>adventure-nbt</artifactId>
|
<artifactId>adventure-nbt</artifactId>
|
||||||
<version>4.17.0-SNAPSHOT</version>
|
<version>4.17.0</version>
|
||||||
<scope>compile</scope>
|
<scope>compile</scope>
|
||||||
</dependency>
|
</dependency>
|
||||||
<dependency>
|
<dependency>
|
||||||
|
|
|
||||||
|
|
@ -132,8 +132,8 @@ public final class Limbo {
|
||||||
|
|
||||||
//===========================
|
//===========================
|
||||||
|
|
||||||
public final String SERVER_IMPLEMENTATION_VERSION = "1.21.1";
|
public final String SERVER_IMPLEMENTATION_VERSION = "1.21.3";
|
||||||
public final int SERVER_IMPLEMENTATION_PROTOCOL = 767;
|
public final int SERVER_IMPLEMENTATION_PROTOCOL = 768;
|
||||||
public final String LIMBO_IMPLEMENTATION_VERSION;
|
public final String LIMBO_IMPLEMENTATION_VERSION;
|
||||||
|
|
||||||
private final AtomicBoolean isRunning;
|
private final AtomicBoolean isRunning;
|
||||||
|
|
|
||||||
|
|
@ -498,7 +498,7 @@ public class ClientConnection extends Thread {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
||||||
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username, false);
|
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(uuid, username);
|
||||||
sendPacket(success);
|
sendPacket(success);
|
||||||
|
|
||||||
player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
|
player = new Player(this, username, uuid, Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
|
||||||
|
|
@ -522,7 +522,7 @@ public class ClientConnection extends Thread {
|
||||||
inetAddress = InetAddress.getByName(data.getIpAddress());
|
inetAddress = InetAddress.getByName(data.getIpAddress());
|
||||||
forwardedSkin = data.getSkinResponse();
|
forwardedSkin = data.getSkinResponse();
|
||||||
|
|
||||||
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername(), false);
|
PacketLoginOutLoginSuccess success = new PacketLoginOutLoginSuccess(data.getUuid(), data.getUsername());
|
||||||
sendPacket(success);
|
sendPacket(success);
|
||||||
|
|
||||||
player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
|
player = new Player(this, data.getUsername(), data.getUuid(), Limbo.getInstance().getNextEntityId(), Limbo.getInstance().getServerProperties().getWorldSpawn(), new PlayerInteractManager());
|
||||||
|
|
@ -572,7 +572,7 @@ public class ClientConnection extends Thread {
|
||||||
worldSpawn = spawnEvent.getSpawnLocation();
|
worldSpawn = spawnEvent.getSpawnLocation();
|
||||||
World world = worldSpawn.getWorld();
|
World world = worldSpawn.getWorld();
|
||||||
|
|
||||||
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);
|
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, 0, false);
|
||||||
sendPacket(join);
|
sendPacket(join);
|
||||||
Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode());
|
Limbo.getInstance().getUnsafe().a(player, properties.getDefaultGamemode());
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -32,12 +32,10 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
|
||||||
|
|
||||||
private final UUID uuid;
|
private final UUID uuid;
|
||||||
private final String username;
|
private final String username;
|
||||||
private final boolean strictErrorHandling;
|
|
||||||
|
|
||||||
public PacketLoginOutLoginSuccess(UUID uuid, String username, boolean strictErrorHandling) {
|
public PacketLoginOutLoginSuccess(UUID uuid, String username) {
|
||||||
this.uuid = uuid;
|
this.uuid = uuid;
|
||||||
this.username = username;
|
this.username = username;
|
||||||
this.strictErrorHandling = strictErrorHandling;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
public UUID getUuid() {
|
public UUID getUuid() {
|
||||||
|
|
@ -48,10 +46,6 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
|
||||||
return username;
|
return username;
|
||||||
}
|
}
|
||||||
|
|
||||||
public boolean isStrictErrorHandling() {
|
|
||||||
return strictErrorHandling;
|
|
||||||
}
|
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public byte[] serializePacket() throws IOException {
|
public byte[] serializePacket() throws IOException {
|
||||||
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
ByteArrayOutputStream buffer = new ByteArrayOutputStream();
|
||||||
|
|
@ -61,7 +55,6 @@ public class PacketLoginOutLoginSuccess extends PacketOut {
|
||||||
DataTypeIO.writeUUID(output, uuid);
|
DataTypeIO.writeUUID(output, uuid);
|
||||||
DataTypeIO.writeString(output, username, StandardCharsets.UTF_8);
|
DataTypeIO.writeString(output, username, StandardCharsets.UTF_8);
|
||||||
DataTypeIO.writeVarInt(output, 0);
|
DataTypeIO.writeVarInt(output, 0);
|
||||||
output.writeBoolean(strictErrorHandling);
|
|
||||||
|
|
||||||
return buffer.toByteArray();
|
return buffer.toByteArray();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -51,9 +51,10 @@ public class PacketPlayOutLogin extends PacketOut {
|
||||||
private final boolean isDebug;
|
private final boolean isDebug;
|
||||||
private final boolean isFlat;
|
private final boolean isFlat;
|
||||||
private final int portalCooldown;
|
private final int portalCooldown;
|
||||||
|
private final int seaLevel;
|
||||||
private final boolean enforcesSecureChat;
|
private final boolean enforcesSecureChat;
|
||||||
|
|
||||||
public PacketPlayOutLogin(int entityId, boolean isHardcore, List<World> 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) {
|
public PacketPlayOutLogin(int entityId, boolean isHardcore, List<World> 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, int seaLevel, boolean enforcesSecureChat) {
|
||||||
this.entityId = entityId;
|
this.entityId = entityId;
|
||||||
this.isHardcore = isHardcore;
|
this.isHardcore = isHardcore;
|
||||||
this.worlds = worlds;
|
this.worlds = worlds;
|
||||||
|
|
@ -70,6 +71,7 @@ public class PacketPlayOutLogin extends PacketOut {
|
||||||
this.isDebug = isDebug;
|
this.isDebug = isDebug;
|
||||||
this.isFlat = isFlat;
|
this.isFlat = isFlat;
|
||||||
this.portalCooldown = portalCooldown;
|
this.portalCooldown = portalCooldown;
|
||||||
|
this.seaLevel = seaLevel;
|
||||||
this.enforcesSecureChat = enforcesSecureChat;
|
this.enforcesSecureChat = enforcesSecureChat;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -137,6 +139,10 @@ public class PacketPlayOutLogin extends PacketOut {
|
||||||
return portalCooldown;
|
return portalCooldown;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public int getSeaLevel() {
|
||||||
|
return seaLevel;
|
||||||
|
}
|
||||||
|
|
||||||
public boolean isEnforcesSecureChat() {
|
public boolean isEnforcesSecureChat() {
|
||||||
return enforcesSecureChat;
|
return enforcesSecureChat;
|
||||||
}
|
}
|
||||||
|
|
@ -168,6 +174,7 @@ public class PacketPlayOutLogin extends PacketOut {
|
||||||
output.writeBoolean(isFlat);
|
output.writeBoolean(isFlat);
|
||||||
output.writeBoolean(false);
|
output.writeBoolean(false);
|
||||||
DataTypeIO.writeVarInt(output, portalCooldown);
|
DataTypeIO.writeVarInt(output, portalCooldown);
|
||||||
|
DataTypeIO.writeVarInt(output, seaLevel);
|
||||||
output.writeBoolean(enforcesSecureChat);
|
output.writeBoolean(enforcesSecureChat);
|
||||||
|
|
||||||
return buffer.toByteArray();
|
return buffer.toByteArray();
|
||||||
|
|
|
||||||
|
|
@ -26,26 +26,67 @@ import java.io.ByteArrayOutputStream;
|
||||||
import java.io.DataOutputStream;
|
import java.io.DataOutputStream;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.Arrays;
|
import java.util.Arrays;
|
||||||
|
import java.util.EnumSet;
|
||||||
import java.util.HashSet;
|
import java.util.HashSet;
|
||||||
|
import java.util.Iterator;
|
||||||
|
import java.util.LinkedHashSet;
|
||||||
import java.util.Set;
|
import java.util.Set;
|
||||||
|
import java.util.stream.Collectors;
|
||||||
|
import java.util.stream.Stream;
|
||||||
|
|
||||||
public class PacketPlayOutPositionAndLook extends PacketOut {
|
public class PacketPlayOutPositionAndLook extends PacketOut {
|
||||||
|
|
||||||
public enum PlayerTeleportFlags {
|
public enum Relative {
|
||||||
X((byte) 0x01),
|
|
||||||
Y((byte) 0x02),
|
|
||||||
Z((byte) 0x04),
|
|
||||||
Y_ROT((byte) 0x08),
|
|
||||||
X_ROT((byte) 0x10);
|
|
||||||
|
|
||||||
private final byte bit;
|
X(0), Y(1), Z(2), Y_ROT(3), X_ROT(4), DELTA_X(5), DELTA_Y(6), DELTA_Z(7), ROTATE_DELTA(8);
|
||||||
|
|
||||||
PlayerTeleportFlags(byte bit) {
|
public static final Set<Relative> ALL = new LinkedHashSet<>(Arrays.asList(values()));
|
||||||
this.bit = bit;
|
public static final Set<Relative> ROTATION = Stream.of(Relative.X_ROT, Relative.Y_ROT).collect(Collectors.toSet());
|
||||||
|
public static final Set<Relative> DELTA = Stream.of(Relative.DELTA_X, Relative.DELTA_Y, Relative.DELTA_Z, Relative.ROTATE_DELTA).collect(Collectors.toSet());
|
||||||
|
|
||||||
|
private final int bit;
|
||||||
|
|
||||||
|
@SafeVarargs
|
||||||
|
public static Set<Relative> union(Set<Relative>... aset) {
|
||||||
|
HashSet<Relative> hashset = new HashSet<>();
|
||||||
|
int i = aset.length;
|
||||||
|
for (Set<Relative> set : aset) {
|
||||||
|
hashset.addAll(set);
|
||||||
|
}
|
||||||
|
return hashset;
|
||||||
}
|
}
|
||||||
|
|
||||||
public byte getBit() {
|
Relative(final int i) {
|
||||||
return bit;
|
this.bit = i;
|
||||||
|
}
|
||||||
|
|
||||||
|
private int getMask() {
|
||||||
|
return 1 << this.bit;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isSet(int i) {
|
||||||
|
return (i & this.getMask()) == this.getMask();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static Set<Relative> unpack(int i) {
|
||||||
|
Set<Relative> set = EnumSet.noneOf(Relative.class);
|
||||||
|
Relative[] arelative = values();
|
||||||
|
int j = arelative.length;
|
||||||
|
for (Relative relative : arelative) {
|
||||||
|
if (relative.isSet(i)) {
|
||||||
|
set.add(relative);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return set;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static int pack(Set<Relative> set) {
|
||||||
|
int i = 0;
|
||||||
|
Relative relative;
|
||||||
|
for (Iterator<Relative> iterator = set.iterator(); iterator.hasNext(); i |= relative.getMask()) {
|
||||||
|
relative = iterator.next();
|
||||||
|
}
|
||||||
|
return i;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -54,17 +95,17 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
|
||||||
private final double z;
|
private final double z;
|
||||||
private final float yaw;
|
private final float yaw;
|
||||||
private final float pitch;
|
private final float pitch;
|
||||||
private final Set<PlayerTeleportFlags> flags;
|
private final Set<Relative> relatives;
|
||||||
private final int teleportId;
|
private final int teleportId;
|
||||||
|
|
||||||
public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, PlayerTeleportFlags... flags) {
|
public PacketPlayOutPositionAndLook(double x, double y, double z, float yaw, float pitch, int teleportId, Relative... relatives) {
|
||||||
this.x = x;
|
this.x = x;
|
||||||
this.y = y;
|
this.y = y;
|
||||||
this.z = z;
|
this.z = z;
|
||||||
this.yaw = yaw;
|
this.yaw = yaw;
|
||||||
this.pitch = pitch;
|
this.pitch = pitch;
|
||||||
this.teleportId = teleportId;
|
this.teleportId = teleportId;
|
||||||
this.flags = new HashSet<>(Arrays.asList(flags));
|
this.relatives = new HashSet<>(Arrays.asList(relatives));
|
||||||
}
|
}
|
||||||
|
|
||||||
public double getX() {
|
public double getX() {
|
||||||
|
|
@ -87,8 +128,8 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
|
||||||
return pitch;
|
return pitch;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Set<PlayerTeleportFlags> getFlags() {
|
public Set<Relative> getRelatives() {
|
||||||
return flags;
|
return relatives;
|
||||||
}
|
}
|
||||||
|
|
||||||
public int getTeleportId() {
|
public int getTeleportId() {
|
||||||
|
|
@ -101,19 +142,16 @@ public class PacketPlayOutPositionAndLook extends PacketOut {
|
||||||
|
|
||||||
DataOutputStream output = new DataOutputStream(buffer);
|
DataOutputStream output = new DataOutputStream(buffer);
|
||||||
output.writeByte(PacketRegistry.getPacketId(getClass()));
|
output.writeByte(PacketRegistry.getPacketId(getClass()));
|
||||||
|
DataTypeIO.writeVarInt(output, teleportId);
|
||||||
output.writeDouble(x);
|
output.writeDouble(x);
|
||||||
output.writeDouble(y);
|
output.writeDouble(y);
|
||||||
output.writeDouble(z);
|
output.writeDouble(z);
|
||||||
|
output.writeDouble(0);
|
||||||
|
output.writeDouble(0);
|
||||||
|
output.writeDouble(0);
|
||||||
output.writeFloat(yaw);
|
output.writeFloat(yaw);
|
||||||
output.writeFloat(pitch);
|
output.writeFloat(pitch);
|
||||||
|
output.writeInt(Relative.pack(relatives));
|
||||||
byte flag = 0;
|
|
||||||
for (PlayerTeleportFlags each : flags) {
|
|
||||||
flag = (byte) (flag | each.getBit());
|
|
||||||
}
|
|
||||||
|
|
||||||
output.writeByte(flag);
|
|
||||||
DataTypeIO.writeVarInt(output, teleportId);
|
|
||||||
|
|
||||||
return buffer.toByteArray();
|
return buffer.toByteArray();
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -155,7 +155,7 @@ public class PacketRegistry {
|
||||||
registerClass(PacketLoginInPluginMessaging.class, "minecraft:custom_query_answer", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
|
registerClass(PacketLoginInPluginMessaging.class, "minecraft:custom_query_answer", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
|
||||||
registerClass(ServerboundLoginAcknowledgedPacket.class, "minecraft:login_acknowledged", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
|
registerClass(ServerboundLoginAcknowledgedPacket.class, "minecraft:login_acknowledged", NetworkPhase.LOGIN, PacketBound.SERVERBOUND);
|
||||||
|
|
||||||
registerClass(PacketLoginOutLoginSuccess.class, "minecraft:game_profile", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
registerClass(PacketLoginOutLoginSuccess.class, "minecraft:login_finished", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
||||||
registerClass(PacketLoginOutDisconnect.class, "minecraft:login_disconnect", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
registerClass(PacketLoginOutDisconnect.class, "minecraft:login_disconnect", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
||||||
registerClass(PacketLoginOutPluginMessaging.class, "minecraft:custom_query", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
registerClass(PacketLoginOutPluginMessaging.class, "minecraft:custom_query", NetworkPhase.LOGIN, PacketBound.CLIENTBOUND);
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -42,16 +42,10 @@ public class RegistryCustom {
|
||||||
|
|
||||||
private static final Map<Key, RegistryCustom> REGISTRIES = new HashMap<>();
|
private static final Map<Key, RegistryCustom> REGISTRIES = new HashMap<>();
|
||||||
|
|
||||||
public static final RegistryCustom ADVANCEMENT = register("advancement");
|
|
||||||
public static final RegistryCustom BANNER_PATTERN = register("banner_pattern");
|
|
||||||
public static final RegistryCustom CHAT_TYPE = register("chat_type");
|
public static final RegistryCustom CHAT_TYPE = register("chat_type");
|
||||||
public static final RegistryCustom DAMAGE_TYPE = register("damage_type");
|
public static final RegistryCustom DAMAGE_TYPE = register("damage_type");
|
||||||
public static final RegistryCustom DIMENSION_TYPE = register("dimension_type");
|
public static final RegistryCustom DIMENSION_TYPE = register("dimension_type");
|
||||||
public static final RegistryCustom ENCHANTMENT = register("enchantment");
|
|
||||||
public static final RegistryCustom JUKEBOX_SONG = register("jukebox_song");
|
|
||||||
public static final RegistryCustom PAINTING_VARIANT = register("painting_variant");
|
public static final RegistryCustom PAINTING_VARIANT = register("painting_variant");
|
||||||
public static final RegistryCustom TRIM_MATERIAL = register("trim_material");
|
|
||||||
public static final RegistryCustom TRIM_PATTERN = register("trim_pattern");
|
|
||||||
public static final RegistryCustom WOLF_VARIANT = register("wolf_variant");
|
public static final RegistryCustom WOLF_VARIANT = register("wolf_variant");
|
||||||
public static final RegistryCustom WORLDGEN_BIOME = register("worldgen/biome");
|
public static final RegistryCustom WORLDGEN_BIOME = register("worldgen/biome");
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -19,17 +19,11 @@
|
||||||
|
|
||||||
package com.loohp.limbo.utils;
|
package com.loohp.limbo.utils;
|
||||||
|
|
||||||
import net.querz.nbt.tag.ByteTag;
|
|
||||||
import net.querz.nbt.tag.CompoundTag;
|
import net.querz.nbt.tag.CompoundTag;
|
||||||
import net.querz.nbt.tag.DoubleTag;
|
|
||||||
import net.querz.nbt.tag.ListTag;
|
import net.querz.nbt.tag.ListTag;
|
||||||
import net.querz.nbt.tag.LongTag;
|
|
||||||
import net.querz.nbt.tag.StringTag;
|
|
||||||
import net.querz.nbt.tag.Tag;
|
|
||||||
import org.json.simple.JSONArray;
|
import org.json.simple.JSONArray;
|
||||||
import org.json.simple.JSONObject;
|
import org.json.simple.JSONObject;
|
||||||
|
|
||||||
@SuppressWarnings("rawtypes")
|
|
||||||
public class CustomNBTUtils {
|
public class CustomNBTUtils {
|
||||||
|
|
||||||
public static CompoundTag getCompoundTagFromJson(JSONObject json) {
|
public static CompoundTag getCompoundTagFromJson(JSONObject json) {
|
||||||
|
|
@ -57,35 +51,16 @@ public class CustomNBTUtils {
|
||||||
return tag;
|
return tag;
|
||||||
}
|
}
|
||||||
|
|
||||||
@SuppressWarnings("ExtractMethodRecommender")
|
|
||||||
public static ListTag<?> getListTagFromJson(JSONArray json) {
|
public static ListTag<?> getListTagFromJson(JSONArray json) {
|
||||||
if (json.isEmpty()) {
|
if (json.isEmpty()) {
|
||||||
return new ListTag<>(StringTag.class);
|
return ListTag.createUnchecked(null);
|
||||||
}
|
}
|
||||||
Object firstValue = json.get(0);
|
ListTag<?> listTag = ListTag.createUnchecked(null);
|
||||||
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) {
|
for (Object rawValue : json) {
|
||||||
if (rawValue instanceof JSONObject) {
|
if (rawValue instanceof JSONObject) {
|
||||||
listTag.asCompoundTagList().add(getCompoundTagFromJson((JSONObject) rawValue));
|
listTag.addUnchecked(getCompoundTagFromJson((JSONObject) rawValue));
|
||||||
} else if (rawValue instanceof JSONArray) {
|
} else if (rawValue instanceof JSONArray) {
|
||||||
listTag.asListTagList().add(getListTagFromJson((JSONArray) rawValue));
|
listTag.addUnchecked(getListTagFromJson((JSONArray) rawValue));
|
||||||
} else if (rawValue instanceof Boolean) {
|
} else if (rawValue instanceof Boolean) {
|
||||||
listTag.addBoolean((boolean) rawValue);
|
listTag.addBoolean((boolean) rawValue);
|
||||||
} else if (rawValue instanceof Long) {
|
} else if (rawValue instanceof Long) {
|
||||||
|
|
|
||||||
File diff suppressed because it is too large
Load Diff
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/ol_betsy",
|
|
||||||
"criteria": {
|
|
||||||
"arbalistic": {
|
|
||||||
"conditions": {
|
|
||||||
"unique_entity_types": 5
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:killed_by_crossbow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.arbalistic.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:crossbow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.arbalistic.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"arbalistic"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 85
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"avoid_vibration": {
|
|
||||||
"trigger": "minecraft:avoid_vibration"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.avoid_vibration.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:sculk_sensor"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.avoid_vibration.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"avoid_vibration"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/minecraft_trials_edition",
|
|
||||||
"criteria": {
|
|
||||||
"blowback": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:breeze"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"killing_blow": {
|
|
||||||
"direct_entity": {
|
|
||||||
"type": "minecraft:breeze_wind_charge"
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"expected": true,
|
|
||||||
"id": "minecraft:is_projectile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.blowback.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:wind_charge"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.blowback.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"blowback"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 40
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"brush_armadillo": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:armadillo"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:brush"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.brush_armadillo.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:armadillo_scute"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.brush_armadillo.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"brush_armadillo"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/shoot_arrow",
|
|
||||||
"criteria": {
|
|
||||||
"bullseye": {
|
|
||||||
"conditions": {
|
|
||||||
"projectile": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"distance": {
|
|
||||||
"horizontal": {
|
|
||||||
"min": 30.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"signal_strength": 15
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:target_hit"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.bullseye.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:target"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.bullseye.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"bullseye"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,51 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/salvage_sherd",
|
|
||||||
"criteria": {
|
|
||||||
"pot_crafted_using_only_sherds": {
|
|
||||||
"conditions": {
|
|
||||||
"ingredients": [
|
|
||||||
{
|
|
||||||
"items": "#minecraft:decorated_pot_sherds"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"items": "#minecraft:decorated_pot_sherds"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"items": "#minecraft:decorated_pot_sherds"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"items": "#minecraft:decorated_pot_sherds"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"recipe_id": "minecraft:decorated_pot"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"components": {
|
|
||||||
"minecraft:pot_decorations": [
|
|
||||||
"minecraft:brick",
|
|
||||||
"minecraft:heart_pottery_sherd",
|
|
||||||
"minecraft:brick",
|
|
||||||
"minecraft:explorer_pottery_sherd"
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:decorated_pot"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.craft_decorated_pot_using_only_sherds.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"pot_crafted_using_only_sherds"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"crafter_crafted_crafter": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:crafter"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:crafter_recipe_crafted"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.crafters_crafting_crafters.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:crafter"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.crafters_crafting_crafters.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"crafter_crafted_crafter"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,55 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"fall_from_world_height": {
|
|
||||||
"conditions": {
|
|
||||||
"distance": {
|
|
||||||
"y": {
|
|
||||||
"min": 379.0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"position": {
|
|
||||||
"y": {
|
|
||||||
"max": -59.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"start_position": {
|
|
||||||
"position": {
|
|
||||||
"y": {
|
|
||||||
"min": 319.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fall_from_height"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.fall_from_world_height.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:water_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.fall_from_world_height.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"fall_from_world_height"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,69 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/voluntary_exile",
|
|
||||||
"criteria": {
|
|
||||||
"hero_of_the_village": {
|
|
||||||
"trigger": "minecraft:hero_of_the_village"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.hero_of_the_village.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"components": {
|
|
||||||
"minecraft:banner_patterns": [
|
|
||||||
{
|
|
||||||
"color": "cyan",
|
|
||||||
"pattern": "minecraft:rhombus"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:stripe_bottom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "gray",
|
|
||||||
"pattern": "minecraft:stripe_center"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:stripe_middle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:half_horizontal"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:circle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"minecraft:hide_additional_tooltip": {},
|
|
||||||
"minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}"
|
|
||||||
},
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:white_banner"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.hero_of_the_village.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"hero_of_the_village"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"honey_block_slide": {
|
|
||||||
"conditions": {
|
|
||||||
"block": "minecraft:honey_block"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:slide_down_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.honey_block_slide.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:honey_block"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.honey_block_slide.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"honey_block_slide"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,562 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:blaze": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:blaze"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:bogged": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:bogged"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:breeze": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:breeze"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:cave_spider": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:cave_spider"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:creeper": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:creeper"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:drowned": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:drowned"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:elder_guardian": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:elder_guardian"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ender_dragon": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ender_dragon"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:enderman": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:enderman"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:endermite": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:endermite"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:evoker": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:evoker"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ghast": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ghast"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:guardian": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:guardian"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:hoglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:hoglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:husk": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:husk"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:magma_cube": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:magma_cube"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:phantom": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:phantom"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:piglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:piglin_brute": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin_brute"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:pillager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:pillager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ravager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ravager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:shulker": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:shulker"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:silverfish": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:silverfish"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:skeleton": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:skeleton"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:slime": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:slime"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:spider": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:spider"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:stray": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:stray"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:vex": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:vex"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:vindicator": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:vindicator"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:witch": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:witch"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:wither": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wither"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:wither_skeleton": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wither_skeleton"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zoglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zoglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombie": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombie"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombie_villager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombie_villager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombified_piglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombified_piglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.kill_a_mob.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:iron_sword"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.kill_a_mob.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:blaze",
|
|
||||||
"minecraft:bogged",
|
|
||||||
"minecraft:breeze",
|
|
||||||
"minecraft:cave_spider",
|
|
||||||
"minecraft:creeper",
|
|
||||||
"minecraft:drowned",
|
|
||||||
"minecraft:elder_guardian",
|
|
||||||
"minecraft:ender_dragon",
|
|
||||||
"minecraft:enderman",
|
|
||||||
"minecraft:endermite",
|
|
||||||
"minecraft:evoker",
|
|
||||||
"minecraft:ghast",
|
|
||||||
"minecraft:guardian",
|
|
||||||
"minecraft:hoglin",
|
|
||||||
"minecraft:husk",
|
|
||||||
"minecraft:magma_cube",
|
|
||||||
"minecraft:phantom",
|
|
||||||
"minecraft:piglin",
|
|
||||||
"minecraft:piglin_brute",
|
|
||||||
"minecraft:pillager",
|
|
||||||
"minecraft:ravager",
|
|
||||||
"minecraft:shulker",
|
|
||||||
"minecraft:silverfish",
|
|
||||||
"minecraft:skeleton",
|
|
||||||
"minecraft:slime",
|
|
||||||
"minecraft:spider",
|
|
||||||
"minecraft:stray",
|
|
||||||
"minecraft:vex",
|
|
||||||
"minecraft:vindicator",
|
|
||||||
"minecraft:witch",
|
|
||||||
"minecraft:wither_skeleton",
|
|
||||||
"minecraft:wither",
|
|
||||||
"minecraft:zoglin",
|
|
||||||
"minecraft:zombie_villager",
|
|
||||||
"minecraft:zombie",
|
|
||||||
"minecraft:zombified_piglin"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,636 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/kill_a_mob",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:blaze": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:blaze"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:bogged": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:bogged"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:breeze": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:breeze"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:cave_spider": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:cave_spider"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:creeper": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:creeper"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:drowned": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:drowned"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:elder_guardian": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:elder_guardian"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ender_dragon": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ender_dragon"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:enderman": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:enderman"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:endermite": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:endermite"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:evoker": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:evoker"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ghast": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ghast"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:guardian": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:guardian"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:hoglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:hoglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:husk": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:husk"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:magma_cube": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:magma_cube"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:phantom": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:phantom"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:piglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:piglin_brute": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin_brute"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:pillager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:pillager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:ravager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ravager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:shulker": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:shulker"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:silverfish": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:silverfish"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:skeleton": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:skeleton"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:slime": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:slime"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:spider": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:spider"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:stray": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:stray"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:vex": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:vex"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:vindicator": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:vindicator"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:witch": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:witch"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:wither": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wither"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:wither_skeleton": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wither_skeleton"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zoglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zoglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombie": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombie"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombie_villager": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombie_villager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
},
|
|
||||||
"minecraft:zombified_piglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:zombified_piglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.kill_all_mobs.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:diamond_sword"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.kill_all_mobs.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:blaze"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:bogged"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:breeze"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:cave_spider"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:creeper"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:drowned"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:elder_guardian"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:ender_dragon"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:enderman"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:endermite"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:evoker"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:ghast"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:guardian"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:hoglin"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:husk"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:magma_cube"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:phantom"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:piglin"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:piglin_brute"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:pillager"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:ravager"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:shulker"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:silverfish"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:skeleton"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:slime"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:spider"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:stray"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:vex"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:vindicator"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:witch"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:wither_skeleton"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:wither"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:zoglin"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:zombie_villager"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:zombie"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:zombified_piglin"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,27 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/kill_a_mob",
|
|
||||||
"criteria": {
|
|
||||||
"kill_mob_near_sculk_catalyst": {
|
|
||||||
"trigger": "minecraft:kill_mob_near_sculk_catalyst"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.kill_mob_near_sculk_catalyst.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:sculk_catalyst"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.kill_mob_near_sculk_catalyst.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"kill_mob_near_sculk_catalyst"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,61 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/minecraft_trials_edition",
|
|
||||||
"criteria": {
|
|
||||||
"lighten_up": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": [
|
|
||||||
"minecraft:oxidized_copper_bulb",
|
|
||||||
"minecraft:weathered_copper_bulb",
|
|
||||||
"minecraft:exposed_copper_bulb",
|
|
||||||
"minecraft:waxed_oxidized_copper_bulb",
|
|
||||||
"minecraft:waxed_weathered_copper_bulb",
|
|
||||||
"minecraft:waxed_exposed_copper_bulb"
|
|
||||||
],
|
|
||||||
"state": {
|
|
||||||
"lit": "true"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": [
|
|
||||||
"minecraft:wooden_axe",
|
|
||||||
"minecraft:golden_axe",
|
|
||||||
"minecraft:stone_axe",
|
|
||||||
"minecraft:iron_axe",
|
|
||||||
"minecraft:diamond_axe",
|
|
||||||
"minecraft:netherite_axe"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.lighten_up.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:copper_bulb"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.lighten_up.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"lighten_up"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"lightning_rod_with_villager_no_fire": {
|
|
||||||
"conditions": {
|
|
||||||
"bystander": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:villager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"lightning": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"distance": {
|
|
||||||
"absolute": {
|
|
||||||
"max": 30.0
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:lightning",
|
|
||||||
"blocks_set_on_fire": 0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:lightning_strike"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.lightning_rod_with_villager_no_fire.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:lightning_rod"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.lightning_rod_with_villager_no_fire.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"lightning_rod_with_villager_no_fire"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft_trials_edition": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"structures": "minecraft:trial_chambers"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.minecraft_trials_edition.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:chiseled_tuff"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.minecraft_trials_edition.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft_trials_edition"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"shot_crossbow": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:crossbow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:shot_crossbow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.ol_betsy.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:crossbow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.ol_betsy.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"shot_crossbow"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,53 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/minecraft_trials_edition",
|
|
||||||
"criteria": {
|
|
||||||
"overoverkill": {
|
|
||||||
"conditions": {
|
|
||||||
"damage": {
|
|
||||||
"type": {
|
|
||||||
"direct_entity": {
|
|
||||||
"type": "minecraft:player",
|
|
||||||
"equipment": {
|
|
||||||
"mainhand": {
|
|
||||||
"items": "minecraft:mace"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"expected": true,
|
|
||||||
"id": "minecraft:is_player_attack"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"dealt": {
|
|
||||||
"min": 100.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_hurt_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.overoverkill.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:mace"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.overoverkill.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"overoverkill"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/sleep_in_bed",
|
|
||||||
"criteria": {
|
|
||||||
"play_jukebox_in_meadows": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"biomes": "minecraft:meadow",
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:jukebox"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"predicates": {
|
|
||||||
"minecraft:jukebox_playable": {}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.play_jukebox_in_meadows.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:jukebox"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.play_jukebox_in_meadows.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"play_jukebox_in_meadows"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,184 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"chiseled_bookshelf": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:chiseled_bookshelf",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:any_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetZ": 1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:comparator",
|
|
||||||
"state": {
|
|
||||||
"facing": "north"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetZ": -1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:comparator",
|
|
||||||
"state": {
|
|
||||||
"facing": "south"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetX": 1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:comparator",
|
|
||||||
"state": {
|
|
||||||
"facing": "west"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetX": -1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:comparator",
|
|
||||||
"state": {
|
|
||||||
"facing": "east"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"comparator": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:any_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:all_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:comparator",
|
|
||||||
"condition": "minecraft:block_state_property",
|
|
||||||
"properties": {
|
|
||||||
"facing": "north"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetZ": -1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:chiseled_bookshelf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:all_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:comparator",
|
|
||||||
"condition": "minecraft:block_state_property",
|
|
||||||
"properties": {
|
|
||||||
"facing": "south"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetZ": 1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:chiseled_bookshelf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:all_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:comparator",
|
|
||||||
"condition": "minecraft:block_state_property",
|
|
||||||
"properties": {
|
|
||||||
"facing": "west"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetX": -1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:chiseled_bookshelf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:all_of",
|
|
||||||
"terms": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:comparator",
|
|
||||||
"condition": "minecraft:block_state_property",
|
|
||||||
"properties": {
|
|
||||||
"facing": "east"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"offsetX": 1,
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:chiseled_bookshelf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.read_power_from_chiseled_bookshelf.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:chiseled_bookshelf"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.read_power_from_chiseled_bookshelf.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"chiseled_bookshelf",
|
|
||||||
"comparator"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/under_lock_and_key",
|
|
||||||
"criteria": {
|
|
||||||
"revaulting": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:vault",
|
|
||||||
"state": {
|
|
||||||
"ominous": "true"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:ominous_trial_key"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.revaulting.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:ominous_trial_key"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.revaulting.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"revaulting"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"criteria": {
|
|
||||||
"killed_by_something": {
|
|
||||||
"trigger": "minecraft:entity_killed_player"
|
|
||||||
},
|
|
||||||
"killed_something": {
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"announce_to_chat": false,
|
|
||||||
"background": "minecraft:textures/gui/advancements/backgrounds/adventure.png",
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.root.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:map"
|
|
||||||
},
|
|
||||||
"show_toast": false,
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.root.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"killed_something",
|
|
||||||
"killed_by_something"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,77 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"desert_pyramid": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/desert_pyramid"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
},
|
|
||||||
"desert_well": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/desert_well"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
},
|
|
||||||
"has_sherd": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "#minecraft:decorated_pot_sherds"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
},
|
|
||||||
"ocean_ruin_cold": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/ocean_ruin_cold"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
},
|
|
||||||
"ocean_ruin_warm": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/ocean_ruin_warm"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
},
|
|
||||||
"trail_ruins_common": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/trail_ruins_common"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
},
|
|
||||||
"trail_ruins_rare": {
|
|
||||||
"conditions": {
|
|
||||||
"loot_table": "minecraft:archaeology/trail_ruins_rare"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_generates_container_loot"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.salvage_sherd.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:brush"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.salvage_sherd.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"desert_pyramid",
|
|
||||||
"desert_well",
|
|
||||||
"ocean_ruin_cold",
|
|
||||||
"ocean_ruin_warm",
|
|
||||||
"trail_ruins_rare",
|
|
||||||
"trail_ruins_common"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"has_sherd"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/kill_a_mob",
|
|
||||||
"criteria": {
|
|
||||||
"shot_arrow": {
|
|
||||||
"conditions": {
|
|
||||||
"damage": {
|
|
||||||
"type": {
|
|
||||||
"direct_entity": {
|
|
||||||
"type": "#minecraft:arrows"
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"expected": true,
|
|
||||||
"id": "minecraft:is_projectile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_hurt_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.shoot_arrow.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:bow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.shoot_arrow.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"shot_arrow"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"slept_in_bed": {
|
|
||||||
"trigger": "minecraft:slept_in_bed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.sleep_in_bed.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:red_bed"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.sleep_in_bed.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"slept_in_bed"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,54 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/shoot_arrow",
|
|
||||||
"criteria": {
|
|
||||||
"killed_skeleton": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:skeleton",
|
|
||||||
"distance": {
|
|
||||||
"horizontal": {
|
|
||||||
"min": 50.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"killing_blow": {
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"expected": true,
|
|
||||||
"id": "minecraft:is_projectile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.sniper_duel.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:arrow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.sniper_duel.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"killed_skeleton"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/spyglass_at_ghast",
|
|
||||||
"criteria": {
|
|
||||||
"spyglass_at_dragon": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:player",
|
|
||||||
"looking_at": {
|
|
||||||
"type": "minecraft:ender_dragon"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:using_item"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_dragon.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_dragon.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"spyglass_at_dragon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/spyglass_at_parrot",
|
|
||||||
"criteria": {
|
|
||||||
"spyglass_at_ghast": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:player",
|
|
||||||
"looking_at": {
|
|
||||||
"type": "minecraft:ghast"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:using_item"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_ghast.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_ghast.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"spyglass_at_ghast"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"spyglass_at_parrot": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:player",
|
|
||||||
"looking_at": {
|
|
||||||
"type": "minecraft:parrot"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:using_item"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_parrot.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:spyglass"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.spyglass_at_parrot.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"spyglass_at_parrot"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/trade",
|
|
||||||
"criteria": {
|
|
||||||
"summoned_golem": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:iron_golem"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:summoned_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.summon_iron_golem.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:carved_pumpkin"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.summon_iron_golem.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"summoned_golem"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,41 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/kill_a_mob",
|
|
||||||
"criteria": {
|
|
||||||
"shot_trident": {
|
|
||||||
"conditions": {
|
|
||||||
"damage": {
|
|
||||||
"type": {
|
|
||||||
"direct_entity": {
|
|
||||||
"type": "minecraft:trident"
|
|
||||||
},
|
|
||||||
"tags": [
|
|
||||||
{
|
|
||||||
"expected": true,
|
|
||||||
"id": "minecraft:is_projectile"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_hurt_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.throw_trident.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:trident"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.throw_trident.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"shot_trident"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,32 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/kill_a_mob",
|
|
||||||
"criteria": {
|
|
||||||
"used_totem": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:totem_of_undying"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:used_totem"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.totem_of_undying.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:totem_of_undying"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.totem_of_undying.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"used_totem"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"traded": {
|
|
||||||
"trigger": "minecraft:villager_trade"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.trade.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:emerald"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.trade.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"traded"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,43 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/trade",
|
|
||||||
"criteria": {
|
|
||||||
"trade_at_world_height": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"position": {
|
|
||||||
"y": {
|
|
||||||
"min": 319.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:villager_trade"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.trade_at_world_height.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:emerald"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.trade_at_world_height.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"trade_at_world_height"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,96 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/trim_with_any_armor_pattern",
|
|
||||||
"criteria": {
|
|
||||||
"armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:silence_armor_trim_smithing_template"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.trim_with_all_exclusive_armor_patterns.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 150
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,148 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:bolt_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:coast_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:dune_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:eye_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:flow_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:host_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:raiser_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:rib_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:sentry_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:shaper_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:silence_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:snout_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:spire_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:tide_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:vex_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:ward_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:wayfinder_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
},
|
|
||||||
"armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim": {
|
|
||||||
"conditions": {
|
|
||||||
"recipe_id": "minecraft:wild_armor_trim_smithing_template_smithing_trim"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:recipe_crafted"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.trim_with_any_armor_pattern.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:dune_armor_trim_smithing_template"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.trim_with_any_armor_pattern.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"armor_trimmed_minecraft:bolt_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:coast_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:dune_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:eye_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:flow_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:host_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:raiser_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:rib_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:sentry_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:shaper_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:silence_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:snout_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:spire_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:tide_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:vex_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:ward_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:wayfinder_armor_trim_smithing_template_smithing_trim",
|
|
||||||
"armor_trimmed_minecraft:wild_armor_trim_smithing_template_smithing_trim"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,52 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/ol_betsy",
|
|
||||||
"criteria": {
|
|
||||||
"two_birds": {
|
|
||||||
"conditions": {
|
|
||||||
"victims": [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:phantom"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:phantom"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:killed_by_crossbow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.two_birds_one_arrow.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:crossbow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.two_birds_one_arrow.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"two_birds"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 65
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/minecraft_trials_edition",
|
|
||||||
"criteria": {
|
|
||||||
"under_lock_and_key": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:vault",
|
|
||||||
"state": {
|
|
||||||
"ominous": "false"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:trial_key"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.under_lock_and_key.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:trial_key"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.under_lock_and_key.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"under_lock_and_key"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/throw_trident",
|
|
||||||
"criteria": {
|
|
||||||
"struck_villager": {
|
|
||||||
"conditions": {
|
|
||||||
"victims": [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:villager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:channeled_lightning"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.very_very_frightening.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:trident"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.very_very_frightening.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"struck_villager"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,129 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/root",
|
|
||||||
"criteria": {
|
|
||||||
"voluntary_exile": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "#minecraft:raiders",
|
|
||||||
"equipment": {
|
|
||||||
"head": {
|
|
||||||
"components": {
|
|
||||||
"minecraft:attribute_modifiers": {
|
|
||||||
"modifiers": []
|
|
||||||
},
|
|
||||||
"minecraft:banner_patterns": [
|
|
||||||
{
|
|
||||||
"color": "cyan",
|
|
||||||
"pattern": "minecraft:rhombus"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:stripe_bottom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "gray",
|
|
||||||
"pattern": "minecraft:stripe_center"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:stripe_middle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:half_horizontal"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:circle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"minecraft:enchantments": {
|
|
||||||
"levels": {}
|
|
||||||
},
|
|
||||||
"minecraft:hide_additional_tooltip": {},
|
|
||||||
"minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}",
|
|
||||||
"minecraft:lore": [],
|
|
||||||
"minecraft:max_stack_size": 16,
|
|
||||||
"minecraft:rarity": "common",
|
|
||||||
"minecraft:repair_cost": 0
|
|
||||||
},
|
|
||||||
"items": "minecraft:white_banner"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.voluntary_exile.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"components": {
|
|
||||||
"minecraft:banner_patterns": [
|
|
||||||
{
|
|
||||||
"color": "cyan",
|
|
||||||
"pattern": "minecraft:rhombus"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:stripe_bottom"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "gray",
|
|
||||||
"pattern": "minecraft:stripe_center"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:stripe_middle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:half_horizontal"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "light_gray",
|
|
||||||
"pattern": "minecraft:circle"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"color": "black",
|
|
||||||
"pattern": "minecraft:border"
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"minecraft:hide_additional_tooltip": {},
|
|
||||||
"minecraft:item_name": "{\"color\":\"gold\",\"translate\":\"block.minecraft.ominous_banner\"}"
|
|
||||||
},
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:white_banner"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.voluntary_exile.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"voluntary_exile"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,46 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/sleep_in_bed",
|
|
||||||
"criteria": {
|
|
||||||
"walk_on_powder_snow_with_leather_boots": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"feet": {
|
|
||||||
"items": "minecraft:leather_boots"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"stepping_on": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:powder_snow"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:leather_boots"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.walk_on_powder_snow_with_leather_boots.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"walk_on_powder_snow_with_leather_boots"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/minecraft_trials_edition",
|
|
||||||
"criteria": {
|
|
||||||
"who_needs_rockets": {
|
|
||||||
"conditions": {
|
|
||||||
"cause": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wind_charge"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"distance": {
|
|
||||||
"y": {
|
|
||||||
"min": 7.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fall_after_explosion"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.who_needs_rockets.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:wind_charge"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.who_needs_rockets.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"who_needs_rockets"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:adventure/ol_betsy",
|
|
||||||
"criteria": {
|
|
||||||
"kill_pillager": {
|
|
||||||
"conditions": {
|
|
||||||
"victims": [
|
|
||||||
[
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:pillager"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:killed_by_crossbow"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.adventure.whos_the_pillager_now.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:crossbow"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.adventure.whos_the_pillager_now.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"kill_pillager"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/kill_dragon",
|
|
||||||
"criteria": {
|
|
||||||
"dragon_breath": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:dragon_breath"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.dragon_breath.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:dragon_breath"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.dragon_breath.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"dragon_breath"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/kill_dragon",
|
|
||||||
"criteria": {
|
|
||||||
"dragon_egg": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:dragon_egg"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.dragon_egg.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:dragon_egg"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.dragon_egg.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"dragon_egg"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/find_end_city",
|
|
||||||
"criteria": {
|
|
||||||
"elytra": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:elytra"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.elytra.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:elytra"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.elytra.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"elytra"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,29 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/kill_dragon",
|
|
||||||
"criteria": {
|
|
||||||
"entered_end_gateway": {
|
|
||||||
"conditions": {
|
|
||||||
"block": "minecraft:end_gateway"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:enter_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.enter_end_gateway.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:ender_pearl"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.enter_end_gateway.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"entered_end_gateway"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,39 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/enter_end_gateway",
|
|
||||||
"criteria": {
|
|
||||||
"in_city": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"structures": "minecraft:end_city"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.find_end_city.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:purpur_block"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.find_end_city.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"in_city"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/root",
|
|
||||||
"criteria": {
|
|
||||||
"killed_dragon": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ender_dragon"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_killed_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.kill_dragon.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:dragon_head"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.kill_dragon.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"killed_dragon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/find_end_city",
|
|
||||||
"criteria": {
|
|
||||||
"levitated": {
|
|
||||||
"conditions": {
|
|
||||||
"distance": {
|
|
||||||
"y": {
|
|
||||||
"min": 50.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:levitation"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.levitate.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:shulker_shell"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.levitate.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"levitated"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:end/kill_dragon",
|
|
||||||
"criteria": {
|
|
||||||
"summoned_dragon": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ender_dragon"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:summoned_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.respawn_dragon.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:end_crystal"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.respawn_dragon.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"summoned_dragon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"criteria": {
|
|
||||||
"entered_end": {
|
|
||||||
"conditions": {
|
|
||||||
"to": "minecraft:the_end"
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:changed_dimension"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"announce_to_chat": false,
|
|
||||||
"background": "minecraft:textures/gui/advancements/backgrounds/end.png",
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.end.root.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:end_stone"
|
|
||||||
},
|
|
||||||
"show_toast": false,
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.end.root.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"entered_end"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/allay_deliver_item_to_player",
|
|
||||||
"criteria": {
|
|
||||||
"allay_deliver_cake_to_note_block": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:note_block"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:cake"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:allay_drop_item_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.allay_deliver_cake_to_note_block.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:note_block"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.allay_deliver_cake_to_note_block.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"allay_deliver_cake_to_note_block"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,38 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"allay_deliver_item_to_player": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:allay"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:thrown_item_picked_up_by_player"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.allay_deliver_item_to_player.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:cookie"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.allay_deliver_item_to_player.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"allay_deliver_item_to_player"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tactical_fishing",
|
|
||||||
"criteria": {
|
|
||||||
"axolotl_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:axolotl_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.axolotl_in_a_bucket.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:axolotl_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.axolotl_in_a_bucket.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"axolotl_bucket"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,464 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/plant_seed",
|
|
||||||
"criteria": {
|
|
||||||
"apple": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:apple"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"baked_potato": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:baked_potato"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"beef": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:beef"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"beetroot": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:beetroot"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"beetroot_soup": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:beetroot_soup"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"bread": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:bread"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"carrot": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:carrot"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"chicken": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:chicken"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"chorus_fruit": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:chorus_fruit"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cod": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cod"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_beef": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_beef"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_chicken": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_chicken"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_cod": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_cod"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_mutton": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_mutton"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_porkchop": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_porkchop"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_rabbit": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_rabbit"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cooked_salmon": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cooked_salmon"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"cookie": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cookie"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"dried_kelp": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:dried_kelp"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"enchanted_golden_apple": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:enchanted_golden_apple"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"glow_berries": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:glow_berries"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"golden_apple": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:golden_apple"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"golden_carrot": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:golden_carrot"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"honey_bottle": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:honey_bottle"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"melon_slice": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:melon_slice"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"mushroom_stew": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:mushroom_stew"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"mutton": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:mutton"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"poisonous_potato": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:poisonous_potato"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"porkchop": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:porkchop"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"potato": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:potato"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"pufferfish": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:pufferfish"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"pumpkin_pie": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:pumpkin_pie"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"rabbit": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:rabbit"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"rabbit_stew": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:rabbit_stew"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"rotten_flesh": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:rotten_flesh"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"salmon": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:salmon"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"spider_eye": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:spider_eye"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"suspicious_stew": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:suspicious_stew"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"sweet_berries": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:sweet_berries"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
},
|
|
||||||
"tropical_fish": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:tropical_fish"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.balanced_diet.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:apple"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.balanced_diet.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"apple"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"mushroom_stew"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"bread"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"porkchop"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_porkchop"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"golden_apple"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"enchanted_golden_apple"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cod"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"salmon"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"tropical_fish"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"pufferfish"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_cod"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_salmon"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cookie"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"melon_slice"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"beef"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_beef"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"chicken"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_chicken"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"rotten_flesh"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"spider_eye"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"carrot"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"potato"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"baked_potato"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"poisonous_potato"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"golden_carrot"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"pumpkin_pie"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"rabbit"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_rabbit"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"rabbit_stew"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"mutton"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"cooked_mutton"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"chorus_fruit"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"beetroot"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"beetroot_soup"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"dried_kelp"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"suspicious_stew"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"sweet_berries"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"honey_bottle"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"glow_berries"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,476 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/breed_an_animal",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:armadillo": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:armadillo"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:axolotl": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:axolotl"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:bee": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:bee"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:camel": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:camel"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:cat": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:cat"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:chicken": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:chicken"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:cow": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:cow"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:donkey": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:donkey"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:fox": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:fox"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:frog": {
|
|
||||||
"conditions": {
|
|
||||||
"parent": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:frog"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"partner": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:frog"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:goat": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:goat"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:hoglin": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:hoglin"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:horse": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:horse"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:llama": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:llama"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:mooshroom": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:mooshroom"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:mule": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:mule"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:ocelot": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:ocelot"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:panda": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:panda"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:pig": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:pig"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:rabbit": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:rabbit"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:sheep": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:sheep"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:sniffer": {
|
|
||||||
"conditions": {
|
|
||||||
"parent": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:sniffer"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"partner": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:sniffer"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:strider": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:strider"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:turtle": {
|
|
||||||
"conditions": {
|
|
||||||
"parent": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:turtle"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"partner": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:turtle"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
},
|
|
||||||
"minecraft:wolf": {
|
|
||||||
"conditions": {
|
|
||||||
"child": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wolf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.breed_all_animals.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:golden_carrot"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.breed_all_animals.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:horse"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:donkey"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:mule"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:sheep"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:cow"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:mooshroom"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:pig"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:chicken"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:wolf"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:ocelot"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:rabbit"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:llama"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:cat"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:panda"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:fox"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:bee"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:hoglin"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:strider"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:goat"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:axolotl"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:camel"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:armadillo"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:turtle"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:frog"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:sniffer"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"bred": {
|
|
||||||
"trigger": "minecraft:bred_animals"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.breed_an_animal.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:wheat"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.breed_an_animal.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"bred"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,244 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tame_an_animal",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:all_black": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:all_black"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:black": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:black"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:british_shorthair": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:british_shorthair"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:calico": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:calico"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:jellie": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:jellie"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:persian": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:persian"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:ragdoll": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:ragdoll"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:red": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:red"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:siamese": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:siamese"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:tabby": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:tabby"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:white": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:cat",
|
|
||||||
"variant": "minecraft:white"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.complete_catalogue.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:cod"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.complete_catalogue.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:all_black"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:black"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:british_shorthair"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:calico"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:jellie"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:persian"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:ragdoll"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:red"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:siamese"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:tabby"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:white"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/obtain_sniffer_egg",
|
|
||||||
"criteria": {
|
|
||||||
"feed_snifflet": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:sniffer",
|
|
||||||
"flags": {
|
|
||||||
"is_baby": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "#minecraft:sniffer_food"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.feed_snifflet.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:torchflower_seeds"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.feed_snifflet.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"feed_snifflet"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"cod": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cod"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fishing_rod_hooked"
|
|
||||||
},
|
|
||||||
"pufferfish": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:pufferfish"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fishing_rod_hooked"
|
|
||||||
},
|
|
||||||
"salmon": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:salmon"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fishing_rod_hooked"
|
|
||||||
},
|
|
||||||
"tropical_fish": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:tropical_fish"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:fishing_rod_hooked"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.fishy_business.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:fishing_rod"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.fishy_business.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"cod",
|
|
||||||
"tropical_fish",
|
|
||||||
"pufferfish",
|
|
||||||
"salmon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/leash_all_frog_variants",
|
|
||||||
"criteria": {
|
|
||||||
"froglights": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:ochre_froglight"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"items": "minecraft:pearlescent_froglight"
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"items": "minecraft:verdant_froglight"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.froglights.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:verdant_froglight"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.froglights.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"froglights"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/axolotl_in_a_bucket",
|
|
||||||
"criteria": {
|
|
||||||
"kill_axolotl_target": {
|
|
||||||
"conditions": {
|
|
||||||
"source": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:axolotl"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:effects_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.kill_axolotl_target.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:tropical_fish_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.kill_axolotl_target.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"kill_axolotl_target"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,92 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tadpole_in_a_bucket",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:cold": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"variant": "minecraft:cold"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:lead"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
},
|
|
||||||
"minecraft:temperate": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"variant": "minecraft:temperate"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:lead"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
},
|
|
||||||
"minecraft:warm": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:frog",
|
|
||||||
"variant": "minecraft:warm"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:lead"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.leash_all_frog_variants.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:lead"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.leash_all_frog_variants.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:temperate"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:warm"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:cold"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,44 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"make_a_sign_glow": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "#minecraft:all_signs"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:glow_ink_sac"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.make_a_sign_glow.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:glow_ink_sac"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.make_a_sign_glow.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"make_a_sign_glow"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/plant_seed",
|
|
||||||
"criteria": {
|
|
||||||
"netherite_hoe": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:netherite_hoe"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.netherite_hoe.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:netherite_hoe"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.netherite_hoe.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"netherite_hoe"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,34 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"obtain_sniffer_egg": {
|
|
||||||
"conditions": {
|
|
||||||
"items": [
|
|
||||||
{
|
|
||||||
"items": "minecraft:sniffer_egg"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:inventory_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.obtain_sniffer_egg.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:sniffer_egg"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.obtain_sniffer_egg.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"obtain_sniffer_egg"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/feed_snifflet",
|
|
||||||
"criteria": {
|
|
||||||
"pitcher_pod": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:pitcher_crop",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"torchflower": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:torchflower_crop",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.plant_any_sniffer_seed.description"
|
|
||||||
},
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:pitcher_pod"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.plant_any_sniffer_seed.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"torchflower",
|
|
||||||
"pitcher_pod"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,106 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"beetroots": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:beetroots",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"melon_stem": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:melon_stem",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"nether_wart": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:nether_wart",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"pitcher_pod": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:pitcher_crop",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"pumpkin_stem": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:pumpkin_stem",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"torchflower": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:torchflower_crop",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
},
|
|
||||||
"wheat": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"block": "minecraft:wheat",
|
|
||||||
"condition": "minecraft:block_state_property"
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:placed_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.plant_seed.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:wheat"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.plant_seed.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"wheat",
|
|
||||||
"pumpkin_stem",
|
|
||||||
"melon_stem",
|
|
||||||
"beetroots",
|
|
||||||
"nether_wart",
|
|
||||||
"torchflower",
|
|
||||||
"pitcher_pod"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,40 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tame_an_animal",
|
|
||||||
"criteria": {
|
|
||||||
"remove_wolf_armor": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wolf"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:shears"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.remove_wolf_armor.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:shears"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.remove_wolf_armor.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"remove_wolf_armor"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,48 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tame_an_animal",
|
|
||||||
"criteria": {
|
|
||||||
"repair_wolf_armor": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"equipment": {
|
|
||||||
"body": {
|
|
||||||
"components": {
|
|
||||||
"minecraft:damage": 0
|
|
||||||
},
|
|
||||||
"items": "minecraft:wolf_armor"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:armadillo_scute"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.repair_wolf_armor.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:wolf_armor"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.repair_wolf_armor.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"repair_wolf_armor"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"ride_a_boat_with_a_goat": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"vehicle": {
|
|
||||||
"type": "minecraft:boat",
|
|
||||||
"passenger": {
|
|
||||||
"type": "minecraft:goat"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:started_riding"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.ride_a_boat_with_a_goat.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:oak_boat"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.ride_a_boat_with_a_goat.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"ride_a_boat_with_a_goat"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,28 +0,0 @@
|
||||||
{
|
|
||||||
"criteria": {
|
|
||||||
"consumed_item": {
|
|
||||||
"trigger": "minecraft:consume_item"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"announce_to_chat": false,
|
|
||||||
"background": "minecraft:textures/gui/advancements/backgrounds/husbandry.png",
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.root.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:hay_block"
|
|
||||||
},
|
|
||||||
"show_toast": false,
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.root.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"consumed_item"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"safely_harvest_honey": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "#minecraft:beehives"
|
|
||||||
},
|
|
||||||
"smokey": true
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:glass_bottle"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.safely_harvest_honey.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:honey_bottle"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.safely_harvest_honey.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"safely_harvest_honey"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,42 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"silk_touch_nest": {
|
|
||||||
"conditions": {
|
|
||||||
"block": "minecraft:bee_nest",
|
|
||||||
"item": {
|
|
||||||
"predicates": {
|
|
||||||
"minecraft:enchantments": [
|
|
||||||
{
|
|
||||||
"enchantments": "minecraft:silk_touch",
|
|
||||||
"levels": {
|
|
||||||
"min": 1
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"num_bees_inside": 3
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:bee_nest_destroyed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.silk_touch_nest.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:bee_nest"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.silk_touch_nest.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"silk_touch_nest"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,58 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/fishy_business",
|
|
||||||
"criteria": {
|
|
||||||
"cod_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:cod_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
},
|
|
||||||
"pufferfish_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:pufferfish_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
},
|
|
||||||
"salmon_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:salmon_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
},
|
|
||||||
"tropical_fish_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:tropical_fish_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.tactical_fishing.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:pufferfish_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.tactical_fishing.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"cod_bucket",
|
|
||||||
"tropical_fish_bucket",
|
|
||||||
"pufferfish_bucket",
|
|
||||||
"salmon_bucket"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"tadpole_bucket": {
|
|
||||||
"conditions": {
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:tadpole_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:filled_bucket"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.tadpole_in_a_bucket.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:tadpole_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.tadpole_in_a_bucket.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"tadpole_bucket"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/root",
|
|
||||||
"criteria": {
|
|
||||||
"tamed_animal": {
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.tame_an_animal.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:lead"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.tame_an_animal.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"tamed_animal"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,88 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/wax_on",
|
|
||||||
"criteria": {
|
|
||||||
"wax_off": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": [
|
|
||||||
"minecraft:waxed_copper_block",
|
|
||||||
"minecraft:waxed_exposed_copper",
|
|
||||||
"minecraft:waxed_weathered_copper",
|
|
||||||
"minecraft:waxed_oxidized_copper",
|
|
||||||
"minecraft:waxed_cut_copper",
|
|
||||||
"minecraft:waxed_exposed_cut_copper",
|
|
||||||
"minecraft:waxed_weathered_cut_copper",
|
|
||||||
"minecraft:waxed_oxidized_cut_copper",
|
|
||||||
"minecraft:waxed_cut_copper_slab",
|
|
||||||
"minecraft:waxed_exposed_cut_copper_slab",
|
|
||||||
"minecraft:waxed_weathered_cut_copper_slab",
|
|
||||||
"minecraft:waxed_oxidized_cut_copper_slab",
|
|
||||||
"minecraft:waxed_cut_copper_stairs",
|
|
||||||
"minecraft:waxed_exposed_cut_copper_stairs",
|
|
||||||
"minecraft:waxed_weathered_cut_copper_stairs",
|
|
||||||
"minecraft:waxed_oxidized_cut_copper_stairs",
|
|
||||||
"minecraft:waxed_chiseled_copper",
|
|
||||||
"minecraft:waxed_exposed_chiseled_copper",
|
|
||||||
"minecraft:waxed_weathered_chiseled_copper",
|
|
||||||
"minecraft:waxed_oxidized_chiseled_copper",
|
|
||||||
"minecraft:waxed_copper_door",
|
|
||||||
"minecraft:waxed_exposed_copper_door",
|
|
||||||
"minecraft:waxed_weathered_copper_door",
|
|
||||||
"minecraft:waxed_oxidized_copper_door",
|
|
||||||
"minecraft:waxed_copper_trapdoor",
|
|
||||||
"minecraft:waxed_exposed_copper_trapdoor",
|
|
||||||
"minecraft:waxed_weathered_copper_trapdoor",
|
|
||||||
"minecraft:waxed_oxidized_copper_trapdoor",
|
|
||||||
"minecraft:waxed_copper_grate",
|
|
||||||
"minecraft:waxed_exposed_copper_grate",
|
|
||||||
"minecraft:waxed_weathered_copper_grate",
|
|
||||||
"minecraft:waxed_oxidized_copper_grate",
|
|
||||||
"minecraft:waxed_copper_bulb",
|
|
||||||
"minecraft:waxed_exposed_copper_bulb",
|
|
||||||
"minecraft:waxed_weathered_copper_bulb",
|
|
||||||
"minecraft:waxed_oxidized_copper_bulb"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": [
|
|
||||||
"minecraft:wooden_axe",
|
|
||||||
"minecraft:golden_axe",
|
|
||||||
"minecraft:stone_axe",
|
|
||||||
"minecraft:iron_axe",
|
|
||||||
"minecraft:diamond_axe",
|
|
||||||
"minecraft:netherite_axe"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.wax_off.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:stone_axe"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.wax_off.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"wax_off"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,81 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/safely_harvest_honey",
|
|
||||||
"criteria": {
|
|
||||||
"wax_on": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": [
|
|
||||||
"minecraft:copper_block",
|
|
||||||
"minecraft:exposed_copper",
|
|
||||||
"minecraft:weathered_copper",
|
|
||||||
"minecraft:oxidized_copper",
|
|
||||||
"minecraft:cut_copper",
|
|
||||||
"minecraft:exposed_cut_copper",
|
|
||||||
"minecraft:weathered_cut_copper",
|
|
||||||
"minecraft:oxidized_cut_copper",
|
|
||||||
"minecraft:cut_copper_slab",
|
|
||||||
"minecraft:exposed_cut_copper_slab",
|
|
||||||
"minecraft:weathered_cut_copper_slab",
|
|
||||||
"minecraft:oxidized_cut_copper_slab",
|
|
||||||
"minecraft:cut_copper_stairs",
|
|
||||||
"minecraft:exposed_cut_copper_stairs",
|
|
||||||
"minecraft:weathered_cut_copper_stairs",
|
|
||||||
"minecraft:oxidized_cut_copper_stairs",
|
|
||||||
"minecraft:chiseled_copper",
|
|
||||||
"minecraft:exposed_chiseled_copper",
|
|
||||||
"minecraft:weathered_chiseled_copper",
|
|
||||||
"minecraft:oxidized_chiseled_copper",
|
|
||||||
"minecraft:copper_door",
|
|
||||||
"minecraft:exposed_copper_door",
|
|
||||||
"minecraft:weathered_copper_door",
|
|
||||||
"minecraft:oxidized_copper_door",
|
|
||||||
"minecraft:copper_trapdoor",
|
|
||||||
"minecraft:exposed_copper_trapdoor",
|
|
||||||
"minecraft:weathered_copper_trapdoor",
|
|
||||||
"minecraft:oxidized_copper_trapdoor",
|
|
||||||
"minecraft:copper_grate",
|
|
||||||
"minecraft:exposed_copper_grate",
|
|
||||||
"minecraft:weathered_copper_grate",
|
|
||||||
"minecraft:oxidized_copper_grate",
|
|
||||||
"minecraft:copper_bulb",
|
|
||||||
"minecraft:exposed_copper_bulb",
|
|
||||||
"minecraft:weathered_copper_bulb",
|
|
||||||
"minecraft:oxidized_copper_bulb"
|
|
||||||
]
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:honeycomb"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.wax_on.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:honeycomb"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.wax_on.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"wax_on"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,204 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:husbandry/tame_an_animal",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:ashen": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:ashen"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:black": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:black"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:chestnut": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:chestnut"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:pale": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:pale"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:rusty": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:rusty"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:snowy": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:snowy"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:spotted": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:spotted"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:striped": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:striped"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
},
|
|
||||||
"minecraft:woods": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type_specific": {
|
|
||||||
"type": "minecraft:wolf",
|
|
||||||
"variant": "minecraft:woods"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:tame_animal"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.husbandry.whole_pack.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:bone"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.husbandry.whole_pack.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:ashen"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:black"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:chestnut"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:pale"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:rusty"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:snowy"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:spotted"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:striped"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:woods"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 50
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,68 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/all_potions",
|
|
||||||
"criteria": {
|
|
||||||
"all_effects": {
|
|
||||||
"conditions": {
|
|
||||||
"effects": {
|
|
||||||
"minecraft:absorption": {},
|
|
||||||
"minecraft:bad_omen": {},
|
|
||||||
"minecraft:blindness": {},
|
|
||||||
"minecraft:conduit_power": {},
|
|
||||||
"minecraft:darkness": {},
|
|
||||||
"minecraft:dolphins_grace": {},
|
|
||||||
"minecraft:fire_resistance": {},
|
|
||||||
"minecraft:glowing": {},
|
|
||||||
"minecraft:haste": {},
|
|
||||||
"minecraft:hero_of_the_village": {},
|
|
||||||
"minecraft:hunger": {},
|
|
||||||
"minecraft:infested": {},
|
|
||||||
"minecraft:invisibility": {},
|
|
||||||
"minecraft:jump_boost": {},
|
|
||||||
"minecraft:levitation": {},
|
|
||||||
"minecraft:mining_fatigue": {},
|
|
||||||
"minecraft:nausea": {},
|
|
||||||
"minecraft:night_vision": {},
|
|
||||||
"minecraft:oozing": {},
|
|
||||||
"minecraft:poison": {},
|
|
||||||
"minecraft:raid_omen": {},
|
|
||||||
"minecraft:regeneration": {},
|
|
||||||
"minecraft:resistance": {},
|
|
||||||
"minecraft:slow_falling": {},
|
|
||||||
"minecraft:slowness": {},
|
|
||||||
"minecraft:speed": {},
|
|
||||||
"minecraft:strength": {},
|
|
||||||
"minecraft:trial_omen": {},
|
|
||||||
"minecraft:water_breathing": {},
|
|
||||||
"minecraft:weakness": {},
|
|
||||||
"minecraft:weaving": {},
|
|
||||||
"minecraft:wind_charged": {},
|
|
||||||
"minecraft:wither": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:effects_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.all_effects.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"hidden": true,
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.all_effects.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"all_effects"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 1000
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,51 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/brew_potion",
|
|
||||||
"criteria": {
|
|
||||||
"all_effects": {
|
|
||||||
"conditions": {
|
|
||||||
"effects": {
|
|
||||||
"minecraft:fire_resistance": {},
|
|
||||||
"minecraft:infested": {},
|
|
||||||
"minecraft:invisibility": {},
|
|
||||||
"minecraft:jump_boost": {},
|
|
||||||
"minecraft:night_vision": {},
|
|
||||||
"minecraft:oozing": {},
|
|
||||||
"minecraft:poison": {},
|
|
||||||
"minecraft:regeneration": {},
|
|
||||||
"minecraft:resistance": {},
|
|
||||||
"minecraft:slow_falling": {},
|
|
||||||
"minecraft:slowness": {},
|
|
||||||
"minecraft:speed": {},
|
|
||||||
"minecraft:strength": {},
|
|
||||||
"minecraft:water_breathing": {},
|
|
||||||
"minecraft:weakness": {},
|
|
||||||
"minecraft:weaving": {},
|
|
||||||
"minecraft:wind_charged": {}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:effects_changed"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.all_potions.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:milk_bucket"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.all_potions.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"all_effects"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,26 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/obtain_blaze_rod",
|
|
||||||
"criteria": {
|
|
||||||
"potion": {
|
|
||||||
"trigger": "minecraft:brewed_potion"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.brew_potion.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:potion"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.brew_potion.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"potion"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,47 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/obtain_crying_obsidian",
|
|
||||||
"criteria": {
|
|
||||||
"charge_respawn_anchor": {
|
|
||||||
"conditions": {
|
|
||||||
"location": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:location_check",
|
|
||||||
"predicate": {
|
|
||||||
"block": {
|
|
||||||
"blocks": "minecraft:respawn_anchor",
|
|
||||||
"state": {
|
|
||||||
"charges": "4"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:match_tool",
|
|
||||||
"predicate": {
|
|
||||||
"items": "minecraft:glowstone"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:item_used_on_block"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.charge_respawn_anchor.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:respawn_anchor"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.charge_respawn_anchor.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"charge_respawn_anchor"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,31 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/summon_wither",
|
|
||||||
"criteria": {
|
|
||||||
"beacon": {
|
|
||||||
"conditions": {
|
|
||||||
"level": {
|
|
||||||
"min": 1
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:construct_beacon"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.create_beacon.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:beacon"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.create_beacon.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"beacon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,30 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/create_beacon",
|
|
||||||
"criteria": {
|
|
||||||
"beacon": {
|
|
||||||
"conditions": {
|
|
||||||
"level": 4
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:construct_beacon"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.create_full_beacon.description"
|
|
||||||
},
|
|
||||||
"frame": "goal",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:beacon"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.create_full_beacon.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"beacon"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,180 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/root",
|
|
||||||
"criteria": {
|
|
||||||
"distract_piglin": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin",
|
|
||||||
"flags": {
|
|
||||||
"is_baby": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "#minecraft:piglin_loved"
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"head": {
|
|
||||||
"items": "minecraft:golden_helmet"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"chest": {
|
|
||||||
"items": "minecraft:golden_chestplate"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"legs": {
|
|
||||||
"items": "minecraft:golden_leggings"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"feet": {
|
|
||||||
"items": "minecraft:golden_boots"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:thrown_item_picked_up_by_entity"
|
|
||||||
},
|
|
||||||
"distract_piglin_directly": {
|
|
||||||
"conditions": {
|
|
||||||
"entity": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"type": "minecraft:piglin",
|
|
||||||
"flags": {
|
|
||||||
"is_baby": false
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
],
|
|
||||||
"item": {
|
|
||||||
"items": "minecraft:gold_ingot"
|
|
||||||
},
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"head": {
|
|
||||||
"items": "minecraft:golden_helmet"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"chest": {
|
|
||||||
"items": "minecraft:golden_chestplate"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"legs": {
|
|
||||||
"items": "minecraft:golden_leggings"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
{
|
|
||||||
"condition": "minecraft:inverted",
|
|
||||||
"term": {
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"equipment": {
|
|
||||||
"feet": {
|
|
||||||
"items": "minecraft:golden_boots"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:player_interacted_with_entity"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.distract_piglin.description"
|
|
||||||
},
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:gold_ingot"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.distract_piglin.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"distract_piglin",
|
|
||||||
"distract_piglin_directly"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,119 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/ride_strider",
|
|
||||||
"criteria": {
|
|
||||||
"minecraft:basalt_deltas": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"biomes": "minecraft:basalt_deltas"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
},
|
|
||||||
"minecraft:crimson_forest": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"biomes": "minecraft:crimson_forest"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
},
|
|
||||||
"minecraft:nether_wastes": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"biomes": "minecraft:nether_wastes"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
},
|
|
||||||
"minecraft:soul_sand_valley": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"biomes": "minecraft:soul_sand_valley"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
},
|
|
||||||
"minecraft:warped_forest": {
|
|
||||||
"conditions": {
|
|
||||||
"player": [
|
|
||||||
{
|
|
||||||
"condition": "minecraft:entity_properties",
|
|
||||||
"entity": "this",
|
|
||||||
"predicate": {
|
|
||||||
"location": {
|
|
||||||
"biomes": "minecraft:warped_forest"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:location"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.explore_nether.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:netherite_boots"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.explore_nether.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"minecraft:nether_wastes"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:soul_sand_valley"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:crimson_forest"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:warped_forest"
|
|
||||||
],
|
|
||||||
[
|
|
||||||
"minecraft:basalt_deltas"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 500
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
|
|
@ -1,37 +0,0 @@
|
||||||
{
|
|
||||||
"parent": "minecraft:nether/root",
|
|
||||||
"criteria": {
|
|
||||||
"travelled": {
|
|
||||||
"conditions": {
|
|
||||||
"distance": {
|
|
||||||
"horizontal": {
|
|
||||||
"min": 7000.0
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"trigger": "minecraft:nether_travel"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"display": {
|
|
||||||
"description": {
|
|
||||||
"translate": "advancements.nether.fast_travel.description"
|
|
||||||
},
|
|
||||||
"frame": "challenge",
|
|
||||||
"icon": {
|
|
||||||
"count": 1,
|
|
||||||
"id": "minecraft:map"
|
|
||||||
},
|
|
||||||
"title": {
|
|
||||||
"translate": "advancements.nether.fast_travel.title"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"requirements": [
|
|
||||||
[
|
|
||||||
"travelled"
|
|
||||||
]
|
|
||||||
],
|
|
||||||
"rewards": {
|
|
||||||
"experience": 100
|
|
||||||
},
|
|
||||||
"sends_telemetry_event": true
|
|
||||||
}
|
|
||||||
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue