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
|
{
"gameName": "gfesdk_dx_sample",
"highlights": [
{
"id": "LEVEL_COMPLETE",
"significance": 256, // Good
"highlightTags": 2, // Achievement
"userInterest": true,
"name": {
"en-us": "Level Complete",
"es-mx": "Nivel Completado",
"zh-cn": "级别完成"
}
},
{
"id": "DOUBLE_KILL",
"significance": 16, // Neutral
"highlightTags": 1, // Milestone
"userInterest": true,
"name": {}, // Testing the no-translations-provided case
"startDelta": -5000, // Note: In a read implementation of double kill, startDelta would be set dynamically
"endDelta": 2000
},
{
"id": "TRIPLE_KILL",
"significance": 1, // ExtremelyBad
"highlightTags": 6, // Achievement | Incident
"userInterest": true,
"name": {
"en-us": "Triple Kill",
"es-mx": "Triple Matar",
"zh-cn": "三连杀"
},
"startDelta": -10000, // Note: In a read implementation of tripe kill, startDelta would be set dynamically
"endDelta": 0
},
{
"id": "BOSS_KILL",
"significance": 1024, // ExtremelyGood
"highlightTags": 12, // Incident | StateChange
"userInterest": true,
"name": {
"es-mx": "Jefe Mata",
"zh-cn": "老板杀了"
},
"startDelta": -30000,
"endDelta": 10000
},
{
"id": "STEALTH_KILL",
"significance": 512, // VeryGood
"highlightTags": 16, // Unannounced
"userInterest": true,
"name": {
"en-us": "Stealth Kill",
"es-mx": "Matanza sigilosa",
"zh-cn": "隐身杀死"
},
"startDelta": -5000,
"endDelta": 2000
}
],
"defaultLocale": "en-US"
}
|