assets
parent
c91e8b3cb7
commit
d13cf7b7c0
|
@ -20,20 +20,79 @@
|
||||||
#define ASSET_LOADER_H
|
#define ASSET_LOADER_H
|
||||||
|
|
||||||
#include <sql.h>
|
#include <sql.h>
|
||||||
|
#include <blt/std/expected.h>
|
||||||
|
|
||||||
|
#include <utility>
|
||||||
|
|
||||||
|
class load_failure_t
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
enum type_t
|
||||||
|
{
|
||||||
|
ASSETS_ALREADY_LOADED,
|
||||||
|
ASSET_FOLDER_NOT_FOUND,
|
||||||
|
MODEL_FOLDER_NOT_FOUND,
|
||||||
|
TEXTURE_FOLDER_NOT_FOUND,
|
||||||
|
TAGS_FOLDER_NOT_FOUND
|
||||||
|
};
|
||||||
|
|
||||||
|
load_failure_t(const type_t type): type{type} // NOLINT
|
||||||
|
{}
|
||||||
|
|
||||||
|
operator type_t() const // NOLINT
|
||||||
|
{
|
||||||
|
return type;
|
||||||
|
}
|
||||||
|
|
||||||
|
[[nodiscard]] std::string to_string() const
|
||||||
|
{
|
||||||
|
switch (type)
|
||||||
|
{
|
||||||
|
case ASSET_FOLDER_NOT_FOUND:
|
||||||
|
return "Asset folder could not be found";
|
||||||
|
case MODEL_FOLDER_NOT_FOUND:
|
||||||
|
return "Model folder could not be found";
|
||||||
|
case TEXTURE_FOLDER_NOT_FOUND:
|
||||||
|
return "Texture folder could not be found";
|
||||||
|
case TAGS_FOLDER_NOT_FOUND:
|
||||||
|
return "Tags folder could not be found";
|
||||||
|
default:
|
||||||
|
return "Unknown failure type";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
type_t type;
|
||||||
|
};
|
||||||
|
|
||||||
|
struct assets_data_t
|
||||||
|
{
|
||||||
|
database_t db;
|
||||||
|
std::string asset_folder;
|
||||||
|
std::optional<std::string> data_folder;
|
||||||
|
std::string name;
|
||||||
|
|
||||||
|
assets_data_t(database_t&& db, std::string asset_folder, std::optional<std::string> data_folder, std::string name) : db{std::move(db)},
|
||||||
|
asset_folder{
|
||||||
|
std::move(asset_folder)
|
||||||
|
},
|
||||||
|
data_folder{
|
||||||
|
std::move(data_folder)
|
||||||
|
}, name{std::move(name)}
|
||||||
|
{}
|
||||||
|
};
|
||||||
|
|
||||||
class asset_loader_t
|
class asset_loader_t
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
asset_loader_t(std::string folder, std::string name);
|
asset_loader_t(std::string folder, std::string name, std::optional<std::string> data_folder = std::nullopt);
|
||||||
|
|
||||||
|
blt::expected<assets_data_t, load_failure_t> load_assets();
|
||||||
|
|
||||||
[[nodiscard]] const std::string& get_name() const
|
|
||||||
{
|
|
||||||
return name;
|
|
||||||
}
|
|
||||||
private:
|
private:
|
||||||
database_t db;
|
// feels like a weird hack?
|
||||||
std::string folder;
|
bool contains = true;
|
||||||
std::string name;
|
assets_data_t data;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif //ASSET_LOADER_H
|
#endif //ASSET_LOADER_H
|
||||||
|
|
|
@ -19,14 +19,13 @@
|
||||||
#ifndef SQL_H
|
#ifndef SQL_H
|
||||||
#define SQL_H
|
#define SQL_H
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
#include <string_view>
|
#include <string_view>
|
||||||
#include <utility>
|
#include <utility>
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <blt/iterator/enumerate.h>
|
#include <blt/iterator/enumerate.h>
|
||||||
#include <blt/logging/logging.h>
|
|
||||||
#include <blt/std/utility.h>
|
|
||||||
|
|
||||||
namespace detail
|
namespace detail
|
||||||
{
|
{
|
||||||
|
@ -217,7 +216,8 @@ public:
|
||||||
return binder_t{statement};
|
return binder_t{statement};
|
||||||
}
|
}
|
||||||
|
|
||||||
[[jetbrains::has_side_effects]] bool execute() const; // NOLINT
|
// returns true if the statement has a row. false otherwise. optional is empty if there is an error
|
||||||
|
[[jetbrains::has_side_effects]] std::optional<bool> execute() const; // NOLINT
|
||||||
|
|
||||||
[[nodiscard]] column_t fetch() const
|
[[nodiscard]] column_t fetch() const
|
||||||
{
|
{
|
||||||
|
@ -391,7 +391,7 @@ public:
|
||||||
|
|
||||||
database_t(const database_t& copy) = delete;
|
database_t(const database_t& copy) = delete;
|
||||||
|
|
||||||
database_t(database_t& move) noexcept: db{std::exchange(move.db, nullptr)}
|
database_t(database_t&& move) noexcept: db{std::exchange(move.db, nullptr)}
|
||||||
{}
|
{}
|
||||||
|
|
||||||
database_t& operator=(const database_t&) = delete;
|
database_t& operator=(const database_t&) = delete;
|
||||||
|
|
File diff suppressed because it is too large
Load Diff
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/ol_betsy",
|
||||||
|
"criteria": {
|
||||||
|
"arbalistic": {
|
||||||
|
"conditions": {
|
||||||
|
"fired_from_weapon": {
|
||||||
|
"items": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"unique_entity_types": 5
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:killed_by_arrow"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.arbalistic.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"hidden": true,
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.arbalistic.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"arbalistic"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"experience": 85
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,52 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,76 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/voluntary_exile",
|
||||||
|
"criteria": {
|
||||||
|
"hero_of_the_village": {
|
||||||
|
"trigger": "minecraft:hero_of_the_village"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.hero_of_the_village.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"hidden": true,
|
||||||
|
"icon": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:banner_patterns": [
|
||||||
|
{
|
||||||
|
"color": "cyan",
|
||||||
|
"pattern": "minecraft:rhombus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:stripe_bottom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "gray",
|
||||||
|
"pattern": "minecraft:stripe_center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:stripe_middle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:half_horizontal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:circle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"minecraft:item_name": {
|
||||||
|
"translate": "block.minecraft.ominous_banner"
|
||||||
|
},
|
||||||
|
"minecraft:rarity": "uncommon",
|
||||||
|
"minecraft:tooltip_display": {
|
||||||
|
"hidden_components": [
|
||||||
|
"minecraft:banner_patterns"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,577 @@
|
||||||
|
{
|
||||||
|
"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:creaking": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:creaking"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:creeper": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:creeper"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:drowned": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:drowned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:elder_guardian": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:elder_guardian"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:ender_dragon": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:ender_dragon"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:enderman": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:enderman"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:endermite": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:endermite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:evoker": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:evoker"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:ghast": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:ghast"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:guardian": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:guardian"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:hoglin": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:hoglin"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:husk": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:husk"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:magma_cube": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:magma_cube"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft: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:creaking",
|
||||||
|
"minecraft:creeper",
|
||||||
|
"minecraft:drowned",
|
||||||
|
"minecraft:elder_guardian",
|
||||||
|
"minecraft:ender_dragon",
|
||||||
|
"minecraft:enderman",
|
||||||
|
"minecraft:endermite",
|
||||||
|
"minecraft:evoker",
|
||||||
|
"minecraft:ghast",
|
||||||
|
"minecraft:guardian",
|
||||||
|
"minecraft:hoglin",
|
||||||
|
"minecraft:husk",
|
||||||
|
"minecraft:magma_cube",
|
||||||
|
"minecraft: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
|
||||||
|
}
|
|
@ -0,0 +1,653 @@
|
||||||
|
{
|
||||||
|
"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:creaking": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:creaking"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:creeper": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:creeper"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:drowned": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:drowned"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:elder_guardian": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:elder_guardian"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:ender_dragon": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:ender_dragon"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:enderman": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:enderman"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:endermite": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:endermite"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:evoker": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:evoker"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:ghast": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:ghast"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:guardian": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:guardian"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:hoglin": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:hoglin"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:husk": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:husk"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft:magma_cube": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:magma_cube"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
},
|
||||||
|
"minecraft: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:creaking"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:creeper"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:drowned"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:elder_guardian"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:ender_dragon"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:enderman"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:endermite"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:evoker"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:ghast"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:guardian"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:hoglin"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:husk"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:magma_cube"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft: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
|
||||||
|
}
|
|
@ -0,0 +1,27 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,61 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/minecraft_trials_edition",
|
||||||
|
"criteria": {
|
||||||
|
"lighten_up": {
|
||||||
|
"conditions": {
|
||||||
|
"location": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:location_check",
|
||||||
|
"predicate": {
|
||||||
|
"block": {
|
||||||
|
"blocks": [
|
||||||
|
"minecraft:oxidized_copper_bulb",
|
||||||
|
"minecraft:weathered_copper_bulb",
|
||||||
|
"minecraft:exposed_copper_bulb",
|
||||||
|
"minecraft:waxed_oxidized_copper_bulb",
|
||||||
|
"minecraft:waxed_weathered_copper_bulb",
|
||||||
|
"minecraft:waxed_exposed_copper_bulb"
|
||||||
|
],
|
||||||
|
"state": {
|
||||||
|
"lit": "true"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:match_tool",
|
||||||
|
"predicate": {
|
||||||
|
"items": [
|
||||||
|
"minecraft:wooden_axe",
|
||||||
|
"minecraft:golden_axe",
|
||||||
|
"minecraft:stone_axe",
|
||||||
|
"minecraft: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
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,53 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/minecraft_trials_edition",
|
||||||
|
"criteria": {
|
||||||
|
"overoverkill": {
|
||||||
|
"conditions": {
|
||||||
|
"damage": {
|
||||||
|
"type": {
|
||||||
|
"direct_entity": {
|
||||||
|
"type": "minecraft:player",
|
||||||
|
"equipment": {
|
||||||
|
"mainhand": {
|
||||||
|
"items": "minecraft:mace"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"tags": [
|
||||||
|
{
|
||||||
|
"expected": true,
|
||||||
|
"id": "minecraft:mace_smash"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"dealt": {
|
||||||
|
"min": 100.0
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_hurt_entity"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.overoverkill.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:mace"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.overoverkill.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"overoverkill"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"experience": 50
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,184 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"killed_by_something": {
|
||||||
|
"trigger": "minecraft:entity_killed_player"
|
||||||
|
},
|
||||||
|
"killed_something": {
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"announce_to_chat": false,
|
||||||
|
"background": "minecraft:gui/advancements/backgrounds/adventure",
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.root.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:map"
|
||||||
|
},
|
||||||
|
"show_toast": false,
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.root.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"killed_something",
|
||||||
|
"killed_by_something"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,77 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,54 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,41 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,32 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,43 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,96 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,148 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,55 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/ol_betsy",
|
||||||
|
"criteria": {
|
||||||
|
"two_birds": {
|
||||||
|
"conditions": {
|
||||||
|
"fired_from_weapon": {
|
||||||
|
"items": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"victims": [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:phantom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:phantom"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:killed_by_arrow"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.two_birds_one_arrow.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.two_birds_one_arrow.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"two_birds"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"rewards": {
|
||||||
|
"experience": 65
|
||||||
|
},
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/root",
|
||||||
|
"criteria": {
|
||||||
|
"use_lodestone": {
|
||||||
|
"conditions": {
|
||||||
|
"location": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:location_check",
|
||||||
|
"predicate": {
|
||||||
|
"block": {
|
||||||
|
"blocks": "minecraft:lodestone"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:match_tool",
|
||||||
|
"predicate": {
|
||||||
|
"items": "minecraft:compass"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:item_used_on_block"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.use_lodestone.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:lodestone"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.use_lodestone.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"use_lodestone"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,127 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/root",
|
||||||
|
"criteria": {
|
||||||
|
"voluntary_exile": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "#minecraft:raiders",
|
||||||
|
"equipment": {
|
||||||
|
"head": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:banner_patterns": [
|
||||||
|
{
|
||||||
|
"color": "cyan",
|
||||||
|
"pattern": "minecraft:rhombus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:stripe_bottom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "gray",
|
||||||
|
"pattern": "minecraft:stripe_center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:stripe_middle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:half_horizontal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:circle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"minecraft:item_name": {
|
||||||
|
"translate": "block.minecraft.ominous_banner"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"items": "minecraft:white_banner"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_killed_entity"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.voluntary_exile.description"
|
||||||
|
},
|
||||||
|
"hidden": true,
|
||||||
|
"icon": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:banner_patterns": [
|
||||||
|
{
|
||||||
|
"color": "cyan",
|
||||||
|
"pattern": "minecraft:rhombus"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:stripe_bottom"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "gray",
|
||||||
|
"pattern": "minecraft:stripe_center"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:stripe_middle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:half_horizontal"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "light_gray",
|
||||||
|
"pattern": "minecraft:circle"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"color": "black",
|
||||||
|
"pattern": "minecraft:border"
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"minecraft:item_name": {
|
||||||
|
"translate": "block.minecraft.ominous_banner"
|
||||||
|
},
|
||||||
|
"minecraft:rarity": "uncommon",
|
||||||
|
"minecraft:tooltip_display": {
|
||||||
|
"hidden_components": [
|
||||||
|
"minecraft:banner_patterns"
|
||||||
|
]
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:white_banner"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.voluntary_exile.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"voluntary_exile"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:adventure/ol_betsy",
|
||||||
|
"criteria": {
|
||||||
|
"kill_pillager": {
|
||||||
|
"conditions": {
|
||||||
|
"fired_from_weapon": {
|
||||||
|
"items": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"victims": [
|
||||||
|
[
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:pillager"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:killed_by_arrow"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.adventure.whos_the_pillager_now.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:crossbow"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.adventure.whos_the_pillager_now.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"kill_pillager"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,29 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"entered_end": {
|
||||||
|
"conditions": {
|
||||||
|
"to": "minecraft:the_end"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:changed_dimension"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"announce_to_chat": false,
|
||||||
|
"background": "minecraft:gui/advancements/backgrounds/end",
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.end.root.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:end_stone"
|
||||||
|
},
|
||||||
|
"show_toast": false,
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.end.root.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"entered_end"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,38 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,464 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,476 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,233 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:husbandry/tame_an_animal",
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:all_black": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:all_black"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:black": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:black"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:british_shorthair": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:british_shorthair"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:calico": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:calico"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:jellie": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:jellie"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:persian": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:persian"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:ragdoll": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:ragdoll"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:red": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:red"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:siamese": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:siamese"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:tabby": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:tabby"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:white": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:cat/variant": "minecraft:white"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.husbandry.complete_catalogue.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"icon": {
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,89 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:husbandry/tadpole_in_a_bucket",
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:cold": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:frog",
|
||||||
|
"components": {
|
||||||
|
"minecraft:frog/variant": "minecraft:cold"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"item": {
|
||||||
|
"items": "minecraft:lead"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_interacted_with_entity"
|
||||||
|
},
|
||||||
|
"minecraft:temperate": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:frog",
|
||||||
|
"components": {
|
||||||
|
"minecraft:frog/variant": "minecraft:temperate"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"item": {
|
||||||
|
"items": "minecraft:lead"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_interacted_with_entity"
|
||||||
|
},
|
||||||
|
"minecraft:warm": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:frog",
|
||||||
|
"components": {
|
||||||
|
"minecraft:frog/variant": "minecraft:warm"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"item": {
|
||||||
|
"items": "minecraft:lead"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_interacted_with_entity"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.husbandry.leash_all_frog_variants.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:lead"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.husbandry.leash_all_frog_variants.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"minecraft:cold"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:temperate"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"minecraft:warm"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,44 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,34 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,106 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,40 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,28 @@
|
||||||
|
{
|
||||||
|
"criteria": {
|
||||||
|
"consumed_item": {
|
||||||
|
"trigger": "minecraft:consume_item"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"announce_to_chat": false,
|
||||||
|
"background": "minecraft:gui/advancements/backgrounds/husbandry",
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.husbandry.root.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:hay_block"
|
||||||
|
},
|
||||||
|
"show_toast": false,
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.husbandry.root.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"consumed_item"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,45 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,42 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,58 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,88 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,81 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,195 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:husbandry/tame_an_animal",
|
||||||
|
"criteria": {
|
||||||
|
"minecraft:ashen": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:ashen"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:black": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:black"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:chestnut": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:chestnut"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:pale": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:pale"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:rusty": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:rusty"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:snowy": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:snowy"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:spotted": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:spotted"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:striped": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:striped"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
},
|
||||||
|
"minecraft:woods": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"components": {
|
||||||
|
"minecraft:wolf/variant": "minecraft:woods"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:tame_animal"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.husbandry.whole_pack.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"icon": {
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,68 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,26 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,47 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,31 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,30 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,180 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/root",
|
||||||
|
"criteria": {
|
||||||
|
"distract_piglin": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:piglin",
|
||||||
|
"flags": {
|
||||||
|
"is_baby": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"item": {
|
||||||
|
"items": "#minecraft:piglin_loved"
|
||||||
|
},
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"head": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"chest": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"legs": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"feet": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:thrown_item_picked_up_by_entity"
|
||||||
|
},
|
||||||
|
"distract_piglin_directly": {
|
||||||
|
"conditions": {
|
||||||
|
"entity": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"type": "minecraft:piglin",
|
||||||
|
"flags": {
|
||||||
|
"is_baby": false
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
],
|
||||||
|
"item": {
|
||||||
|
"items": "minecraft:gold_ingot"
|
||||||
|
},
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"head": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"chest": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"legs": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"condition": "minecraft:inverted",
|
||||||
|
"term": {
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"equipment": {
|
||||||
|
"feet": {
|
||||||
|
"items": "#minecraft:piglin_safe_armor"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_interacted_with_entity"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.distract_piglin.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:gold_ingot"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.distract_piglin.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"distract_piglin",
|
||||||
|
"distract_piglin_directly"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,119 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,37 @@
|
||||||
|
{
|
||||||
|
"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
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/root",
|
||||||
|
"criteria": {
|
||||||
|
"bastion": {
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"location": {
|
||||||
|
"structures": "minecraft:bastion_remnant"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:location"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.find_bastion.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:polished_blackstone_bricks"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.find_bastion.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"bastion"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,39 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/root",
|
||||||
|
"criteria": {
|
||||||
|
"fortress": {
|
||||||
|
"conditions": {
|
||||||
|
"player": [
|
||||||
|
{
|
||||||
|
"condition": "minecraft:entity_properties",
|
||||||
|
"entity": "this",
|
||||||
|
"predicate": {
|
||||||
|
"location": {
|
||||||
|
"structures": "minecraft:fortress"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:location"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.find_fortress.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:nether_bricks"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.find_fortress.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"fortress"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,33 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/find_fortress",
|
||||||
|
"criteria": {
|
||||||
|
"wither_skull": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": "minecraft:wither_skeleton_skull"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.get_wither_skull.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:wither_skeleton_skull"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.get_wither_skull.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"wither_skull"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,50 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/find_bastion",
|
||||||
|
"criteria": {
|
||||||
|
"loot_bastion_bridge": {
|
||||||
|
"conditions": {
|
||||||
|
"loot_table": "minecraft:chests/bastion_bridge"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_generates_container_loot"
|
||||||
|
},
|
||||||
|
"loot_bastion_hoglin_stable": {
|
||||||
|
"conditions": {
|
||||||
|
"loot_table": "minecraft:chests/bastion_hoglin_stable"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_generates_container_loot"
|
||||||
|
},
|
||||||
|
"loot_bastion_other": {
|
||||||
|
"conditions": {
|
||||||
|
"loot_table": "minecraft:chests/bastion_other"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_generates_container_loot"
|
||||||
|
},
|
||||||
|
"loot_bastion_treasure": {
|
||||||
|
"conditions": {
|
||||||
|
"loot_table": "minecraft:chests/bastion_treasure"
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:player_generates_container_loot"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.loot_bastion.description"
|
||||||
|
},
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:chest"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.loot_bastion.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"loot_bastion_other",
|
||||||
|
"loot_bastion_treasure",
|
||||||
|
"loot_bastion_hoglin_stable",
|
||||||
|
"loot_bastion_bridge"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"sends_telemetry_event": true
|
||||||
|
}
|
|
@ -0,0 +1,46 @@
|
||||||
|
{
|
||||||
|
"parent": "minecraft:nether/obtain_ancient_debris",
|
||||||
|
"criteria": {
|
||||||
|
"netherite_armor": {
|
||||||
|
"conditions": {
|
||||||
|
"items": [
|
||||||
|
{
|
||||||
|
"items": "minecraft:netherite_helmet"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"items": "minecraft:netherite_chestplate"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"items": "minecraft:netherite_leggings"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"items": "minecraft:netherite_boots"
|
||||||
|
}
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"trigger": "minecraft:inventory_changed"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"display": {
|
||||||
|
"description": {
|
||||||
|
"translate": "advancements.nether.netherite_armor.description"
|
||||||
|
},
|
||||||
|
"frame": "challenge",
|
||||||
|
"icon": {
|
||||||
|
"count": 1,
|
||||||
|
"id": "minecraft:netherite_chestplate"
|
||||||
|
},
|
||||||
|
"title": {
|
||||||
|
"translate": "advancements.nether.netherite_armor.title"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"requirements": [
|
||||||
|
[
|
||||||
|
"netherite_armor"
|
||||||
|
]
|
||||||
|
],
|
||||||
|
"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