-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy patheat_three_uniques.json
58 lines (58 loc) · 1.09 KB
/
eat_three_uniques.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"display": {
"icon": {
"item": "minecraft:cooked_porkchop"
},
"title": "§bThree Course Meal",
"description": "§7In a single run, eat §othree§r§7 different kinds of food.",
"frame": "challenge",
"show_toast": true,
"announce_to_chat": true,
"hidden": false
},
"criteria": {
"ate_one_food": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
"condition": "minecraft:entity_scores",
"entity": "this",
"scores": {
"do2.run.threecoursemeal": 1
}
}
]
}
},
"ate_two_food": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
"condition": "minecraft:entity_scores",
"entity": "this",
"scores": {
"do2.run.threecoursemeal": 2
}
}
]
}
},
"ate_three_food": {
"trigger": "minecraft:location",
"conditions": {
"player": [
{
"condition": "minecraft:entity_scores",
"entity": "this",
"scores": {
"do2.run.threecoursemeal": 3
}
}
]
}
}
},
"parent": "do2:hidden/adventuring/eat_berries"
}