-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathconsts.js
42 lines (42 loc) · 901 Bytes
/
consts.js
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
const availableLanguages = [
"de_de",
"en_us",
"es_mx",
"es_es",
"fr_fr",
"it_it",
"ja_jp",
"ko_kr",
"pl_pl",
"pt_br",
"th_th",
"tr_tr",
"ru_ru",
"zh_tw",
"vi_vn",
];
const regionNames = {
demacia: "Demacia",
freljord: "Freljord",
ionia: "Ionia",
noxus: "Noxus",
piltoverzaun: "Piltover & Zaun",
shadowisles: "Shadow Isles",
bilgewater: "Bilgewater",
targon: "Mt Targon",
shurima: "Shurima",
bandlecity: "Bandle City",
runeterra: "Runeterra"
};
const championNames = {
JarvanIV: "Jarvan IV",
MissFortune: "Miss Fortune",
TahmKench: "Tahm Kench",
TwistedFate: "Twisted Fate",
AurelionSol: "Aurelion Sol",
Leblanc: "LeBlanc",
RekSai: "Rek'Sai",
Kaisa: "Kai'Sa",
MasterYi: "Master Yi"
};
const originChampions = ["Jhin", "Bard", "Evelynn", "Kayn", "Jax", "Varus"];