enefel 1.0.176 → 1.0.178
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/career.js +8 -0
- package/index.js +4 -3
- package/package.json +1 -1
package/career.js
CHANGED
|
@@ -422,6 +422,7 @@ const CAREER = {
|
|
|
422
422
|
badge: RACE.IMPERIAL,
|
|
423
423
|
range: 0,
|
|
424
424
|
cost: 45,
|
|
425
|
+
hasSprite: true,
|
|
425
426
|
},
|
|
426
427
|
"imperial-thrower": {
|
|
427
428
|
MA: 6,
|
|
@@ -441,6 +442,7 @@ const CAREER = {
|
|
|
441
442
|
badge: RACE.IMPERIAL,
|
|
442
443
|
range: 1,
|
|
443
444
|
cost: 75,
|
|
445
|
+
hasSprite: true,
|
|
444
446
|
},
|
|
445
447
|
"imperial-blitzer": {
|
|
446
448
|
MA: 7,
|
|
@@ -456,6 +458,7 @@ const CAREER = {
|
|
|
456
458
|
badge: RACE.IMPERIAL,
|
|
457
459
|
range: 3,
|
|
458
460
|
cost: 105,
|
|
461
|
+
hasSprite: true,
|
|
459
462
|
},
|
|
460
463
|
"imperial-bodyguard": {
|
|
461
464
|
MA: 6,
|
|
@@ -475,6 +478,7 @@ const CAREER = {
|
|
|
475
478
|
badge: RACE.IMPERIAL,
|
|
476
479
|
range: 2,
|
|
477
480
|
cost: 90,
|
|
481
|
+
hasSprite: true,
|
|
478
482
|
},
|
|
479
483
|
"imperial-ogre": {
|
|
480
484
|
MA: 5,
|
|
@@ -497,6 +501,7 @@ const CAREER = {
|
|
|
497
501
|
badge: RACE.IMPERIAL,
|
|
498
502
|
range: 6,
|
|
499
503
|
cost: 140,
|
|
504
|
+
hasSprite: true,
|
|
500
505
|
},
|
|
501
506
|
// GOBELIN
|
|
502
507
|
"gobelin-lineman": {
|
|
@@ -513,6 +518,7 @@ const CAREER = {
|
|
|
513
518
|
badge: RACE.GOBELIN,
|
|
514
519
|
range: 0,
|
|
515
520
|
cost: 40,
|
|
521
|
+
hasSprite: true,
|
|
516
522
|
},
|
|
517
523
|
"gobelin-troll": {
|
|
518
524
|
MA: 4,
|
|
@@ -537,6 +543,7 @@ const CAREER = {
|
|
|
537
543
|
badge: RACE.GOBELIN,
|
|
538
544
|
range: 5,
|
|
539
545
|
cost: 115,
|
|
546
|
+
hasSprite: true,
|
|
540
547
|
},
|
|
541
548
|
// ELVEN_UNION
|
|
542
549
|
"elven-union-lineman": {
|
|
@@ -737,6 +744,7 @@ const CAREER = {
|
|
|
737
744
|
badge: RACE.LIZARDMEN,
|
|
738
745
|
range: 1,
|
|
739
746
|
cost: 70,
|
|
747
|
+
hasSprite: true,
|
|
740
748
|
},
|
|
741
749
|
"lizardmen-saurus": {
|
|
742
750
|
MA: 6,
|
package/index.js
CHANGED
|
@@ -188,6 +188,7 @@ const GAME_HISTORY_INFO = {
|
|
|
188
188
|
|
|
189
189
|
const PLAYER_HISTORY_TYPE = {
|
|
190
190
|
AGING: "ag",
|
|
191
|
+
APOTHECARY: "apo",
|
|
191
192
|
COACH_SKILL: "cs",
|
|
192
193
|
CREATE_TEAM: "ct",
|
|
193
194
|
CREATED: "c",
|
|
@@ -200,12 +201,12 @@ const PLAYER_HISTORY_TYPE = {
|
|
|
200
201
|
POP: "pop",
|
|
201
202
|
QUIT_COACH: "qc",
|
|
202
203
|
QUIT_TEAM: "rt",
|
|
204
|
+
RAZ: "raz",
|
|
203
205
|
REDUCTION: "r",
|
|
204
206
|
REMOVE_FROM_TEAM: "rt",
|
|
205
|
-
SKILL: "s",
|
|
206
|
-
RAZ: "raz",
|
|
207
|
-
RETIRED: "ret",
|
|
208
207
|
RETIRED_END: "retend",
|
|
208
|
+
RETIRED: "ret",
|
|
209
|
+
SKILL: "s",
|
|
209
210
|
};
|
|
210
211
|
|
|
211
212
|
const PLAYER_HISTORY_INFO = {
|