-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconstants.ts
More file actions
328 lines (320 loc) · 7.75 KB
/
constants.ts
File metadata and controls
328 lines (320 loc) · 7.75 KB
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
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
import { ColorTheme, CursorSet, BubbleSet, CounterStyle, LoginVariant, IconPack } from './types';
export const LOGIN_VARIANTS: { id: LoginVariant; name: string }[] = [
{ id: 'Unova', name: 'Unova' },
{ id: 'Allstars', name: 'Allstars' },
{ id: 'Default', name: 'Default' },
];
export const COUNTER_STYLES: CounterStyle[] = [
'Counter-Minimal-Right-Icon',
'Counter-Minimal-Right',
'Counter-Right-Icon',
'Counter-Right',
'Counter-Minimal-Left-Icon',
'Counter-Minimal-Left',
'Counter-Left-Icon',
'Counter-Left',
'Counter-Vartiou',
'None'
];
export const DEFAULT_CUSTOM_THEME: ColorTheme = {
id: 'custom',
name: 'Custom Theme',
description: 'Your own custom theme',
hex: '#42b9ff',
sub: '#1c2328',
textOnMain: '#000000',
textOnSub: '#ffffff',
hpHigh: '#82e026',
xp: '#2eb2f8',
friendship: '#b61ae8',
glow: 'rgba(66, 185, 255, 0.4)',
previewImage: 'defaultgame.png',
isCustom: true,
};
export const COLOR_THEMES: ColorTheme[] = [
{
id: "default",
name: "Original",
description: "The original theme",
hex: "#42b9ff",
sub: "#1c2328",
textOnMain: "#000000",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(66, 185, 255, 0.4)",
previewImage: "defaultgame.png",
},
{
id: "original-red",
name: "Original Red",
description: "A variant created by AnonymousPoke",
hex: "#df0d35",
sub: "#1c2328",
textOnMain: "#ffffff",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(223, 13, 53, 0.4)",
previewImage: "originalredgame.png",
},
{
id: "original-green",
name: "Original Green",
description: "A variant created by AnonymousPoke",
hex: "#82d40c",
sub: "#1c2328",
textOnMain: "#000000",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(130, 212, 12, 0.4)",
previewImage: "originalgreengame.png",
},
{
id: "original-yellow",
name: "Original Yellow",
description: "A variant created by AnonymousPoke",
hex: "#f6c328",
sub: "#1c2328",
textOnMain: "#000000",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(246, 195, 40, 0.4)",
previewImage: "originalyellowgame.png",
},
{
id: "original-purple",
name: "Original Purple",
description: "A variant created by AnonymousPoke",
hex: "#7757ad",
sub: "#1c2328",
textOnMain: "#ffffff",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(119, 87, 173, 0.4)",
previewImage: "originalpurplegame.png",
},
{
id: "original-pink",
name: "Original Pink",
description: "A variant created by AnonymousPoke",
hex: "#ff527b",
sub: "#1c2328",
textOnMain: "#000000",
textOnSub: "#ffffff",
hpHigh: "#82e026",
xp: "#2eb2f8",
friendship: "#b61ae8",
glow: "rgba(255, 82, 123, 0.4)",
previewImage: "originalpinkgame.png",
},
{
id: "frostbite",
name: "Frostbite",
description: "A variant created by Bahbus",
hex: "#4F6D88",
sub: "#DDE7E4",
textOnMain: "#ffffff",
textOnSub: "#0D1418",
hpHigh: "#3AD48F",
xp: "#4A8FD1",
friendship: "#C586F5",
glow: "rgba(79, 109, 136, 0.4)",
previewImage: "frostbitegame.png",
},
{
id: "industrial",
name: "Industrial",
description: "A variant created by Bahbus",
hex: "#3A444F",
sub: "#11141A",
textOnMain: "#E0E4E8",
textOnSub: "#A4AAB0",
hpHigh: "#3DBA5F",
xp: "#4D82C2",
friendship: "#B57BBF",
glow: "rgba(58, 68, 79, 0.4)",
previewImage: "industrialgame.png",
},
{
id: "rose",
name: "Rosé",
description: "A variant created by Bahbus",
hex: "#C1607D",
sub: "#F5ECE9",
textOnMain: "#ffffff",
textOnSub: "#77505C",
hpHigh: "#4CC773",
xp: "#6994D9",
friendship: "#F073AF",
glow: "rgba(193, 96, 125, 0.4)",
previewImage: "rosegame.png",
},
{
id: "sunrise",
name: "Sunrise",
description: "A variant created by Bahbus",
hex: "#D98742",
sub: "#EAE3D2",
textOnMain: "#1E1A12",
textOnSub: "#5C4F2B",
hpHigh: "#2EBA4A",
xp: "#4A7FBF",
friendship: "#E86AA2",
glow: "rgba(217, 135, 66, 0.4)",
previewImage: "sunrisegame.png",
},
{
id: "twilight",
name: "Twilight",
description: "A variant created by Bahbus",
hex: "#352D4F",
sub: "#0A0810",
textOnMain: "#EAE6F2",
textOnSub: "#BFB4C9",
hpHigh: "#3CCB6A",
xp: "#5C7CCF",
friendship: "#C372C6",
glow: "rgba(53, 45, 79, 0.4)",
previewImage: "twilightgame.png",
},
{
id: "green420",
name: "420 Green",
description: "A variant created by Bahbus",
hex: "#1F5D2E",
sub: "#0A0F0C",
textOnMain: "#ffffff",
textOnSub: "#C5D1C8",
hpHigh: "#3ED46A",
xp: "#2E9BCF",
friendship: "#C86AC2",
glow: "rgba(31, 93, 46, 0.4)",
previewImage: "420greengame.png",
},
{
id: "ember",
name: "Ember",
description: "A variant created by Bahbus",
hex: "#B44527",
sub: "#121010",
textOnMain: "#F7E7D1",
textOnSub: "#D4B9A5",
hpHigh: "#39B05A",
xp: "#5B86D4",
friendship: "#E379A8",
glow: "rgba(180, 69, 39, 0.4)",
previewImage: "embergame.png",
},
{
id: "arcticwhite",
name: "Arctic White",
description: "A variant created by juanlatorre",
hex: "#A2D2FF",
sub: "#F8F9FA",
textOnMain: "#003049",
textOnSub: "#334155",
hpHigh: "#2D6A4F",
xp: "#0077B6",
friendship: "#B79CED",
glow: "rgba(162, 210, 255, 0.4)",
previewImage: "arcticwhitegame.png",
},
];
export const CURSOR_SETS: CursorSet[] = [
{
id: 'classic-white',
name: 'Classic White',
file: 'cursors-white.png',
isModern: false,
isDark: false,
sprite: { x: 3, y: 21, w: 15, h: 23, hotX: 1, hotY: 2 }
},
{
id: 'classic-black',
name: 'Classic Black',
file: 'cursors-black.png',
isModern: false,
isDark: true,
sprite: { x: 3, y: 21, w: 15, h: 23, hotX: 1, hotY: 2 }
},
{
id: 'modern-white',
name: 'Modern White',
file: 'modern-cursors-white.png',
isModern: true,
isDark: false,
sprite: { x: 3, y: 21, w: 15, h: 23, hotX: 1, hotY: 2 }
},
{
id: 'modern-black',
name: 'Modern Black',
file: 'modern-cursors-black.png',
isModern: true,
isDark: true,
sprite: { x: 3, y: 21, w: 15, h: 23, hotX: 1, hotY: 2 }
},
];
export const BUBBLE_SETS: BubbleSet[] = [
{
id: 'archetype',
name: 'Archetype',
textColor: 'inherit',
isCustom: true,
},
{
id: 'default-white',
name: 'Default White',
textColor: '#222222',
},
{
id: 'default-black',
name: 'Default Black',
textColor: '#ffffff',
}
];
export const ICON_PACKS: IconPack[] = [
{
id: 'default',
name: 'Default',
description: 'Original PokeMMO icons',
upstreamFolder: 'archetype-square-icons',
atlasPath: 'data/sprites/atlas/main.png',
},
{
id: 'rounded',
name: 'Rounded',
description: 'Rounded icon style',
upstreamFolder: 'archetype-rounded-icons',
atlasPath: 'data/sprites/atlas/main.png',
},
{
id: 'square',
name: 'Square',
description: 'Square icon style',
upstreamFolder: 'archetype-square-icons',
atlasPath: 'data/sprites/atlas/main.png',
},
{
id: 'rounded-outline',
name: 'Rounded Outline',
description: 'Rounded outlined icons by Cruzi',
upstreamFolder: 'archetype-rounded-outeline-icons',
atlasPath: 'data/sprites/atlas/main.png',
},
{
id: 'square-outline',
name: 'Square Outline',
description: 'Square outlined icons',
upstreamFolder: 'archetype-square-outeline-icons',
atlasPath: 'data/sprites/atlas/main.png',
},
];