This repository has been archived by the owner on Aug 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
champions.js
110 lines (110 loc) · 2.01 KB
/
champions.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
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
module.exports = {
'Abbess': {
faction: "the sacred order",
affinity: "force",
hp: 14040,
atk: 1564,
def: 1079,
spd: 96,
crate: 15,
cdmg: 63,
res: 30,
acc: 10
},
'Arbiter': {
faction: "high elves",
affinity: "void",
hp: 21135,
atk: 1068,
def: 1101,
spd: 110,
crate: 15,
cdmg: 50,
res: 30,
acc: 10
},
'Belanor': {
faction: "high elves",
affinity: "void",
hp: 15195,
atk: 1520,
def: 1046,
spd: 105,
crate: 15,
cdmg: 63,
res: 30,
acc: 10
},
'Bellower': {
faction: "orgyn tribes",
affinity: "void",
hp: 16515,
atk: 1013,
def: 914,
spd: 99,
crate: 15,
cdmg: 50,
res: 30,
acc: 15
},
'Ignatius': {
faction: 'orgyn tribes',
affinity: 'magic',
hp: 18825,
atk: 1057,
def: 1266,
spd: 93,
crate: 15,
cdmg: 50,
res: 40,
acc: 20
},
'Luria': {
faction: "dark elves",
affinity: "spirit",
hp: 13050,
atk: 1487,
def: 947,
spd: 104,
crate: 15,
cdmg: 50,
res: 30,
acc: 10
},
'Maulie': {
faction: "dwarves",
affinity: "spirit",
hp: 18495,
atk: 881,
def: 1465,
spd: 107,
crate: 15,
cdmg: 50,
res: 80,
acc: 10
},
'Rotos': {
faction: 'undead hordes',
affinity: 'magic',
hp: 11895,
atk: 1520,
def: 1266,
spd: 90,
crate: 15,
cdmg: 63,
res: 40,
acc: 0
},
'Septimus': {
faction: 'banner lords',
affinity: 'spirit',
hp: 13710,
atk: 1674,
def: 991,
spd: 102,
crate: 15,
cdmg: 63,
res: 30,
acc: 0
}
};