-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathachievements.json
66 lines (60 loc) · 1.37 KB
/
achievements.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
59
60
61
62
63
64
65
66
{
"default_img": "/trophies/gold.png",
"achievements": [
{
"id": "ach1",
"title": "PROBLEM DESTROYER",
"description": "You have completed more than 50 problems!",
"variable": "solvedProblems",
"comparison": "greater",
"value": 50,
"img": "/trophies/silver.png"
},
{
"id": "ach2",
"title": "Rule the world",
"description": "You have successfully reached first place!",
"variable": "ranking",
"comparison": "equals",
"value": 1
},
{
"id": "ach3",
"title": "Getting there",
"description": "You have reached rank 20",
"variable": "ranking",
"comparison": "smaller",
"value": 20,
"img": "/trophies/silver.png"
},
{
"id": "ach4",
"title": "So specific",
"description": "You completed some nasty problems!",
"problems": [
"EAPC10C",
"BAPC16L"
],
"img": "/trophies/silver.png"
},
{
"id": "levelAch1",
"title": "Category X",
"description": "Become the very best at X!",
"levels": [
"EAPC10C",
"BAPC16L"
],
"img": "/trophies/gold.png"
},
{
"id": "BAPC KING",
"title": "Test 123",
"description": "Required achievements are working",
"prereqs" : [
"ach3",
"ach4"
]
}
]
}