-
Notifications
You must be signed in to change notification settings - Fork 18
/
ui.json
148 lines (148 loc) · 4.85 KB
/
ui.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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
[
{
"//": "Extend with the expedition widget",
"copy-from": "legacy_classic_sidebar",
"type": "widget",
"id": "legacy_classic_sidebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"copy-from": "legacy_compact_sidebar",
"type": "widget",
"id": "legacy_compact_sidebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"copy-from": "legacy_labels_narrow_sidebar",
"type": "widget",
"id": "legacy_labels_narrow_sidebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"copy-from": "legacy_labels_sidebar",
"type": "widget",
"id": "legacy_labels_sidebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"copy-from": "structured_sidebar",
"type": "widget",
"id": "structured_sidebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"copy-from": "spacebar",
"type": "widget",
"id": "spacebar",
"extend": { "widgets": [ "sky_island_expedition_timer" ] }
},
{
"id": "sky_island_expedition_timer",
"type": "widget",
"label": "Expedition Timer:",
"style": "text",
"clauses": [
{
"id": "safe_at_home",
"text": "HOME SAFE",
"color": "light_blue",
"condition": {
"and": [
{
"or": [
{ "u_at_om_location": "sky_island_core" },
{ "u_at_om_location": "sky_island_edge" },
{ "u_at_om_location": "sky_island_corner" }
]
},
{ "not": { "u_has_trait": "awayfromhome" } }
]
}
},
{
"id": "nine_left",
"text": "+-+-+-+-+-+-+-+-+",
"color": "light_blue",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "timeawayfromhome", "==", "0" ] } ] }
},
{
"id": "eight_left",
"text": "+-+-+-+-+-+-+-+",
"color": "green",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", ">=", "8" ] } ] }
},
{
"id": "seven_left",
"text": "+-+-+-+-+-+-+",
"color": "light_green",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "7" ] } ] }
},
{
"id": "six_left",
"text": "+-+-+-+-+-+",
"color": "light_green",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "6" ] } ] }
},
{
"id": "five_left",
"text": "+-+-+-+-+",
"color": "yellow",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "5" ] } ] }
},
{
"id": "four_left",
"text": "+-+-+-+",
"color": "yellow",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "4" ] } ] }
},
{
"id": "three_left",
"text": "+-+-+",
"color": "yellow",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "3" ] } ] }
},
{
"id": "two_left",
"text": "+-+",
"color": "light_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "2" ] } ] }
},
{
"id": "one_left",
"text": "+",
"color": "light_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "readablepulsesleft", "==", "1" ] } ] }
},
{
"id": "over_deadline",
"text": "DANGER",
"color": "i_light_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "timeawayfromhome", "==", "9" ] } ] }
},
{
"id": "over_deadline_one",
"text": "SEVERE DANGER",
"color": "i_light_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "timeawayfromhome", "==", "10" ] } ] }
},
{
"id": "over_deadline_two",
"text": "EXTREME DANGER",
"color": "i_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "timeawayfromhome", "==", "11" ] } ] }
},
{
"id": "over_deadline_three",
"text": "CATASTROPHIC DANGER",
"color": "i_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "math": [ "timeawayfromhome", "==", "12" ] } ] }
},
{
"id": "over_deadline_four",
"text": "IMMINENT DEATH",
"color": "i_red",
"condition": { "and": [ { "u_has_trait": "awayfromhome" }, { "u_has_effect": "warpdisintegration" } ] }
}
]
}
]