- Added challenge_accepted

- Added challenge_complete
- Added timeless
master
Ben Maurer 2021-07-30 20:00:58 -05:00
parent 378b80bcac
commit cad4a24109
3 changed files with 97 additions and 0 deletions

View File

@ -0,0 +1,32 @@
{
"display": {
"icon": {
"item": "minecraft:clock"
},
"title": "Challenge Accepted",
"description": "So you managed to stay alive a whole day, not impressed.",
"frame": "task",
"announce_to_chat": true
},
"parent": "canopy:root",
"criteria": {
"alive_time": {
"trigger": "minecraft:location",
"conditions": {
"player": {
"player": {
"stats": [
{
"type": "minecraft:custom",
"stat": "minecraft:time_since_death",
"value": {
"min": 24000
}
}
]
}
}
}
}
}
}

View File

@ -0,0 +1,32 @@
{
"display": {
"icon": {
"item": "minecraft:observer"
},
"title": "Challenge Complete",
"description": "Manged 100 days without dying, I guess you're alright.",
"frame": "task",
"announce_to_chat": true
},
"parent": "canopy:challenge_accepted",
"criteria": {
"alive_time": {
"trigger": "minecraft:location",
"conditions": {
"player": {
"player": {
"stats": [
{
"type": "minecraft:custom",
"stat": "minecraft:time_since_death",
"value": {
"min": 2400000
}
}
]
}
}
}
}
}
}

View File

@ -0,0 +1,33 @@
{
"display": {
"icon": {
"item": "minecraft:totem_of_undying"
},
"title": "Timeless",
"description": "1,000 days alive? I stand corrected.",
"frame": "challenge",
"hidden": true,
"announce_to_chat": true
},
"parent": "canopy:challenge_complete",
"criteria": {
"alive_time": {
"trigger": "minecraft:location",
"conditions": {
"player": {
"player": {
"stats": [
{
"type": "minecraft:custom",
"stat": "minecraft:time_since_death",
"value": {
"min": 24000000
}
}
]
}
}
}
}
}
}