enefel 1.0.95 → 1.0.96
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/race.js +72 -2
package/package.json
CHANGED
package/race.js
CHANGED
|
@@ -18,6 +18,76 @@ const { SKILL_NAMES } = require("./skill");
|
|
|
18
18
|
// const ranges = [6, 16, 31, 51, 76, 176];
|
|
19
19
|
// https://web.archive.org/web/20090403112513/http://enefel.org/carriere.php
|
|
20
20
|
module.exports = {
|
|
21
|
+
// LIZARDMEN
|
|
22
|
+
"lizardmen-skink": {
|
|
23
|
+
MA: 8,
|
|
24
|
+
ST: 2,
|
|
25
|
+
AG: 3,
|
|
26
|
+
AV: 7,
|
|
27
|
+
normal: "A",
|
|
28
|
+
double: "GPS",
|
|
29
|
+
normalCoach: "G",
|
|
30
|
+
icons: ["lizardmen-skink1"],
|
|
31
|
+
skills: [SKILL_NAMES.DODGE, SKILL_NAMES.STUNTY],
|
|
32
|
+
badge: "lizardmen-career",
|
|
33
|
+
range: 0,
|
|
34
|
+
cost: 60,
|
|
35
|
+
},
|
|
36
|
+
// "lizardmen-chameleon": {
|
|
37
|
+
// MA: 7,
|
|
38
|
+
// ST: 2,
|
|
39
|
+
// AG: 3,
|
|
40
|
+
// AV: 7,
|
|
41
|
+
// normal: "A",
|
|
42
|
+
// double: "GPS",
|
|
43
|
+
// normalCoach: "G",
|
|
44
|
+
// icons: ["lizardmen-chameleon1"],
|
|
45
|
+
// skills: [
|
|
46
|
+
// SKILL_NAMES.DODGE,
|
|
47
|
+
// // SKILL_NAMES.ON_THE_BALL,
|
|
48
|
+
// // SKILL_NAMES.SHADOWING,
|
|
49
|
+
// SKILL_NAMES.STUNTY,
|
|
50
|
+
// ],
|
|
51
|
+
// badge: "lizardmen-career",
|
|
52
|
+
// range: 1,
|
|
53
|
+
// cost: 70,
|
|
54
|
+
// },
|
|
55
|
+
"lizardmen-saurus": {
|
|
56
|
+
MA: 6,
|
|
57
|
+
ST: 4,
|
|
58
|
+
AG: 2,
|
|
59
|
+
AV: 9,
|
|
60
|
+
normal: "GS",
|
|
61
|
+
double: "A",
|
|
62
|
+
normalCoach: "G",
|
|
63
|
+
icons: ["lizardmen-saurus1"],
|
|
64
|
+
skills: [SKILL_NAMES.STAR],
|
|
65
|
+
badge: "lizardmen-career",
|
|
66
|
+
range: 4,
|
|
67
|
+
cost: 85,
|
|
68
|
+
},
|
|
69
|
+
"lizardmen-kroxigor": {
|
|
70
|
+
MA: 6,
|
|
71
|
+
ST: 5,
|
|
72
|
+
AG: 2,
|
|
73
|
+
AV: 9,
|
|
74
|
+
normal: "S",
|
|
75
|
+
double: "AG",
|
|
76
|
+
normalCoach: "G",
|
|
77
|
+
icons: ["lizardmen-kroxigor1"],
|
|
78
|
+
skills: [
|
|
79
|
+
SKILL_NAMES.BONE_HEAD,
|
|
80
|
+
[SKILL_NAMES.LONER, 4],
|
|
81
|
+
SKILL_NAMES.MIGHTY_BLOW,
|
|
82
|
+
SKILL_NAMES.PREHENSILE_TAIL,
|
|
83
|
+
SKILL_NAMES.THICK_SKULL,
|
|
84
|
+
SKILL_NAMES.BIG_GUY,
|
|
85
|
+
],
|
|
86
|
+
badge: "lizardmen-career",
|
|
87
|
+
range: 5,
|
|
88
|
+
cost: 140,
|
|
89
|
+
},
|
|
90
|
+
|
|
21
91
|
// NORSE
|
|
22
92
|
"norse-lineman": {
|
|
23
93
|
MA: 6,
|
|
@@ -89,7 +159,7 @@ module.exports = {
|
|
|
89
159
|
double: "A",
|
|
90
160
|
normalCoach: "G",
|
|
91
161
|
icons: ["norse-ulfwereners1"],
|
|
92
|
-
skills: [SKILL_NAMES.FRENZY, SKILL_NAMES.
|
|
162
|
+
skills: [SKILL_NAMES.FRENZY, SKILL_NAMES.STAR],
|
|
93
163
|
badge: "norse-career",
|
|
94
164
|
range: 4,
|
|
95
165
|
cost: 105,
|
|
@@ -109,7 +179,7 @@ module.exports = {
|
|
|
109
179
|
SKILL_NAMES.FRENZY,
|
|
110
180
|
[SKILL_NAMES.LONER, 4],
|
|
111
181
|
SKILL_NAMES.UNCHANNELLED_FURY,
|
|
112
|
-
SKILL_NAMES.
|
|
182
|
+
SKILL_NAMES.BIG_GUY,
|
|
113
183
|
],
|
|
114
184
|
badge: "norse-career",
|
|
115
185
|
range: 6,
|