custom_mc_advancements/data/canopy/advancement/challenge_accepted.json

41 lines
959 B
JSON

{
"display": {
"icon": {
"id": "minecraft:clock"
},
"title": "Challenge Accepted",
"description": "So you managed to stay alive a whole day, not impressed.",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"parent": "canopy:root",
"criteria": {
"alive_1_day": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
"condition": "minecraft:entity_properties",
"entity": "this",
"predicate": {
"type_specific": {
"type": "minecraft:player",
"stats": [
{
"type": "minecraft:custom",
"stat": "minecraft:time_since_death",
"value": {
"min": 24000
}
}
]
}
}
}
]
}
}
}
}