custom_mc_advancements/data/canopy/advancement/challenge_complete.json

41 lines
980 B
JSON

{
"display": {
"icon": {
"id": "minecraft:observer"
},
"title": "Challenge Complete",
"description": "Managed 100 days without dying, I guess you're alright.",
"frame": "task",
"show_toast": true,
"announce_to_chat": true
},
"parent": "canopy:challenge_accepted",
"criteria": {
"alive_100_days": {
"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": 2400000
}
}
]
}
}
}
]
}
}
}
}