enefel 2.9.1 → 2.11.0

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.
Files changed (77) hide show
  1. package/.claude/settings.local.json +7 -0
  2. package/2025/newSkills.ts +769 -0
  3. package/2025/raceMigration.ts +66 -0
  4. package/2025/rawTeamsData.ts +1726 -0
  5. package/2025/skillMigration.ts +155 -0
  6. package/avatarsSeason.ts +61 -0
  7. package/career.ts +64 -8
  8. package/career2025.ts +2752 -0
  9. package/dice.ts +40 -8
  10. package/dist/2025/newSkills.d.ts +10 -0
  11. package/dist/2025/newSkills.js +663 -0
  12. package/dist/2025/raceMigration.d.ts +10 -0
  13. package/dist/2025/raceMigration.js +53 -0
  14. package/dist/2025/rawTeamsData.d.ts +12 -0
  15. package/dist/2025/rawTeamsData.js +1699 -0
  16. package/dist/2025/skillMigration.d.ts +31 -0
  17. package/dist/2025/skillMigration.js +95 -0
  18. package/dist/avatarsSeason.d.ts +22 -0
  19. package/dist/avatarsSeason.js +54 -0
  20. package/dist/career.d.ts +13 -4
  21. package/dist/career.js +36 -7
  22. package/dist/career2025.d.ts +192 -0
  23. package/dist/career2025.js +2611 -0
  24. package/dist/dice.d.ts +10 -2
  25. package/dist/dice.js +31 -8
  26. package/dist/index.d.ts +17 -2
  27. package/dist/index.js +44 -5
  28. package/dist/move.d.ts +6 -2
  29. package/dist/move.js +35 -0
  30. package/dist/package-lock.json +913 -7
  31. package/dist/package.json +6 -2
  32. package/dist/pitch.d.ts +10 -1
  33. package/dist/pitch.js +16 -0
  34. package/dist/player.d.ts +8 -4
  35. package/dist/player.js +104 -20
  36. package/dist/position.d.ts +4 -0
  37. package/dist/position.js +17 -1
  38. package/dist/race.d.ts +23 -12
  39. package/dist/race.js +210 -2
  40. package/dist/skill.d.ts +26 -3
  41. package/dist/skill.js +199 -81
  42. package/dist/skills/hitAndRun.d.ts +10 -0
  43. package/dist/skills/hitAndRun.js +12 -0
  44. package/dist/skills/safePairOfHands.d.ts +28 -0
  45. package/dist/skills/safePairOfHands.js +18 -0
  46. package/dist/skills/sidestep.d.ts +21 -0
  47. package/dist/skills/sidestep.js +20 -0
  48. package/dist/status.d.ts +4 -1
  49. package/dist/status.js +14 -4
  50. package/dist/store.d.ts +3 -0
  51. package/dist/store.js +3 -0
  52. package/dist/teams/career_v2025.d.ts +246 -0
  53. package/dist/teams/career_v2025.js +3512 -0
  54. package/dist/teams/convert-csv-to-career.d.ts +1 -0
  55. package/dist/teams/convert-csv-to-career.js +1085 -0
  56. package/dist/types/models.d.ts +4 -0
  57. package/index.ts +57 -4
  58. package/jest.config.js +3 -0
  59. package/move.ts +50 -2
  60. package/npm-login.sh +0 -0
  61. package/package.json +6 -2
  62. package/pitch.ts +22 -0
  63. package/player.ts +105 -22
  64. package/position.ts +16 -0
  65. package/race.ts +227 -13
  66. package/skill.ts +217 -83
  67. package/skills/hitAndRun.ts +14 -0
  68. package/skills/safePairOfHands.ts +33 -0
  69. package/skills/sidestep.ts +25 -0
  70. package/status.ts +15 -3
  71. package/store.ts +3 -0
  72. package/teams/README.md +53 -0
  73. package/teams/clean-stats.js +54 -0
  74. package/teams/convert-csv-to-career.ts +1209 -0
  75. package/teams/players_clean.csv +107 -0
  76. package/teams/players_next.csv +21 -0
  77. package/types/models.ts +4 -0
@@ -0,0 +1,1726 @@
1
+ export type RawTeamRow = {
2
+ Team: string;
3
+ Quantity: string;
4
+ Position: string;
5
+ Keywords: string;
6
+ Cost: string;
7
+ Stats: string;
8
+ Skills: string;
9
+ Primary: string;
10
+ Secondary: string;
11
+ };
12
+
13
+ export const rawTeamsRows: readonly RawTeamRow[] = [
14
+ {
15
+ Team: "Amazon",
16
+ Quantity: "0-16",
17
+ Position: "Lino",
18
+ Keywords: "Human, Lineman",
19
+ Cost: "50k",
20
+ Stats: "633+4+8+",
21
+ Skills: "Dodge",
22
+ Primary: "G",
23
+ Secondary: "AS",
24
+ },
25
+ {
26
+ Team: "Amazon",
27
+ Quantity: "0-2",
28
+ Position: "Thrower",
29
+ Keywords: "Human, Thrower",
30
+ Cost: "80k",
31
+ Stats: "633+3+8+",
32
+ Skills: "Dodge, On the Ball, Pass, Safe Pass",
33
+ Primary: "GP",
34
+ Secondary: "AS",
35
+ },
36
+ {
37
+ Team: "Amazon",
38
+ Quantity: "0-2",
39
+ Position: "Blitzer",
40
+ Keywords: "Blitzer, Human",
41
+ Cost: "90k",
42
+ Stats: "733+4+8+",
43
+ Skills: "Dodge, Hit and Run, Jump Up",
44
+ Primary: "AG",
45
+ Secondary: "S",
46
+ },
47
+ {
48
+ Team: "Amazon",
49
+ Quantity: "0-2",
50
+ Position: "Blocker",
51
+ Keywords: "Blocker, Human",
52
+ Cost: "110k",
53
+ Stats: "643+4+9+",
54
+ Skills: "Defensive, Dodge",
55
+ Primary: "GS",
56
+ Secondary: "A",
57
+ },
58
+ {
59
+ Team: "Black Orc",
60
+ Quantity: "0-16",
61
+ Position: "Goblin",
62
+ Keywords: "Goblin, Lineman",
63
+ Cost: "45k",
64
+ Stats: "623+4+8+",
65
+ Skills: "Dodge, Right Stuff, Stunty, Thick Skull",
66
+ Primary: "AD",
67
+ Secondary: "GPS",
68
+ },
69
+ {
70
+ Team: "Black Orc",
71
+ Quantity: "0-6",
72
+ Position: "Black Orc",
73
+ Keywords: "Blocker, Orc",
74
+ Cost: "90k",
75
+ Stats: "444+5+10+",
76
+ Skills: "Brawler, Grab",
77
+ Primary: "GS",
78
+ Secondary: "AD",
79
+ },
80
+ {
81
+ Team: "Black Orc",
82
+ Quantity: "0-1",
83
+ Position: "Troll",
84
+ Keywords: "Big Guy, Troll",
85
+ Cost: "115k",
86
+ Stats: "455+5+10+",
87
+ Skills:
88
+ "Always Hungry, Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
89
+ Primary: "S",
90
+ Secondary: "AGP",
91
+ },
92
+ {
93
+ Team: "Bretonnian",
94
+ Quantity: "0-16",
95
+ Position: "Squire",
96
+ Keywords: "Human, Lineman",
97
+ Cost: "50k",
98
+ Stats: "633+4+8+",
99
+ Skills: "Wrestle",
100
+ Primary: "G",
101
+ Secondary: "AS",
102
+ },
103
+ {
104
+ Team: "Bretonnian",
105
+ Quantity: "0-2",
106
+ Position: "Catcher",
107
+ Keywords: "Catcher, Human",
108
+ Cost: "85k",
109
+ Stats: "733+4+9+",
110
+ Skills: "Catch, Dauntless, Nerves of Steel",
111
+ Primary: "AG",
112
+ Secondary: "S",
113
+ },
114
+ {
115
+ Team: "Bretonnian",
116
+ Quantity: "0-2",
117
+ Position: "Thrower",
118
+ Keywords: "Human, Thorwer",
119
+ Cost: "80k",
120
+ Stats: "633+3+9+",
121
+ Skills: "Dauntless, Nerves of Steel, Pass",
122
+ Primary: "GP",
123
+ Secondary: "AS",
124
+ },
125
+ {
126
+ Team: "Bretonnian",
127
+ Quantity: "0-2",
128
+ Position: "Grail Knight",
129
+ Keywords: "Blitzer, Human",
130
+ Cost: "95k",
131
+ Stats: "733+4+10+",
132
+ Skills: "Block, Dauntless, Steady Footing",
133
+ Primary: "GS",
134
+ Secondary: "A",
135
+ },
136
+ {
137
+ Team: "Chaos Chosen",
138
+ Quantity: "0-16",
139
+ Position: "Beastman",
140
+ Keywords: "Beastman, Lineman",
141
+ Cost: "55k",
142
+ Stats: "633+3+9+",
143
+ Skills: "Horns, Thick Skull",
144
+ Primary: "GM",
145
+ Secondary: "ADPS",
146
+ },
147
+ {
148
+ Team: "Chaos Chosen",
149
+ Quantity: "0-4",
150
+ Position: "Chosen",
151
+ Keywords: "Blocker, Human",
152
+ Cost: "100k",
153
+ Stats: "543+5+10+",
154
+ Skills: "Arm Bar",
155
+ Primary: "GMS",
156
+ Secondary: "AD",
157
+ },
158
+ {
159
+ Team: "Chaos Chosen",
160
+ Quantity: "0-1",
161
+ Position: "Troll",
162
+ Keywords: "Big Guy, Troll",
163
+ Cost: "115k",
164
+ Stats: "455+5+10+",
165
+ Skills:
166
+ "Always Hungry, Loner (4+), Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
167
+ Primary: "MS",
168
+ Secondary: "AGP",
169
+ },
170
+ {
171
+ Team: "Chaos Chosen",
172
+ Quantity: "0-1",
173
+ Position: "Ogre",
174
+ Keywords: "Big Guy, Ogre",
175
+ Cost: "140k",
176
+ Stats: "554+5+10+",
177
+ Skills: "Bone Head, Loner (4+), Mighty Blow, Thick Skull, Throw Team-mate",
178
+ Primary: "MS",
179
+ Secondary: "AG",
180
+ },
181
+ {
182
+ Team: "Chaos Chosen",
183
+ Quantity: "0-1",
184
+ Position: "Minotaur",
185
+ Keywords: "Big Guy, Minotaur",
186
+ Cost: "150k",
187
+ Stats: "554+6+9+",
188
+ Skills:
189
+ "Frenzy, Horns, Loner (4+), Mighty Blow, Thick Skull, Unchannelled Fury",
190
+ Primary: "MS",
191
+ Secondary: "AG",
192
+ },
193
+ {
194
+ Team: "Chaos Dwarf",
195
+ Quantity: "0-16",
196
+ Position: "Hobgoblin",
197
+ Keywords: "Goblin, Lineman",
198
+ Cost: "40k",
199
+ Stats: "633+4+8+",
200
+ Skills: "",
201
+ Primary: "D",
202
+ Secondary: "AGS",
203
+ },
204
+ {
205
+ Team: "Chaos Dwarf",
206
+ Quantity: "0-2",
207
+ Position: "Stabba",
208
+ Keywords: "Goblin, Special",
209
+ Cost: "60k",
210
+ Stats: "633+5+8+",
211
+ Skills: "Shadowing, Stab",
212
+ Primary: "DG",
213
+ Secondary: "AS",
214
+ },
215
+ {
216
+ Team: "Chaos Dwarf",
217
+ Quantity: "0-4",
218
+ Position: "Blocker",
219
+ Keywords: "Blocker, Dwarf",
220
+ Cost: "70k",
221
+ Stats: "434+6+10+",
222
+ Skills: "Block, Iron Hard Skin, Thick Skull",
223
+ Primary: "GS",
224
+ Secondary: "ADM",
225
+ },
226
+ {
227
+ Team: "Chaos Dwarf",
228
+ Quantity: "0-2",
229
+ Position: "Flamer",
230
+ Keywords: "Dwarf, Special",
231
+ Cost: "80k",
232
+ Stats: "534+6+10+",
233
+ Skills: "Brawler, Breathe Fire, Disturbing Presence, Thick Skull",
234
+ Primary: "GS",
235
+ Secondary: "ADM",
236
+ },
237
+ {
238
+ Team: "Chaos Dwarf",
239
+ Quantity: "0-2",
240
+ Position: "Bull Centaur",
241
+ Keywords: "Blitzer, Dwarf",
242
+ Cost: "130k",
243
+ Stats: "644+6+10+",
244
+ Skills: "Sprint, Sure Feet, Thick Skull, Unsteady",
245
+ Primary: "GS",
246
+ Secondary: "ADM",
247
+ },
248
+ {
249
+ Team: "Chaos Dwarf",
250
+ Quantity: "0-1",
251
+ Position: "Minotaur",
252
+ Keywords: "Big Guy, Minotaur",
253
+ Cost: "150k",
254
+ Stats: "554+6+9+",
255
+ Skills:
256
+ "Frenzy, Horns, Loner (4+), Mighty Blow, Thick Skull, Unchannelled Fury",
257
+ Primary: "MS",
258
+ Secondary: "AG",
259
+ },
260
+ {
261
+ Team: "Chaos Renegate",
262
+ Quantity: "0-16",
263
+ Position: "Lineman",
264
+ Keywords: "Human, Lineman",
265
+ Cost: "50k",
266
+ Stats: "633+4+9+",
267
+ Skills: "Animosity (all)",
268
+ Primary: "DGM",
269
+ Secondary: "AS",
270
+ },
271
+ {
272
+ Team: "Chaos Renegate",
273
+ Quantity: "0-1",
274
+ Position: "Goblin",
275
+ Keywords: "Goblin, Lineman",
276
+ Cost: "40k",
277
+ Stats: "623+4+8+",
278
+ Skills: "Animosity (all), Dodge, Right Stuff, Stunty",
279
+ Primary: "ADM",
280
+ Secondary: "GP",
281
+ },
282
+ {
283
+ Team: "Chaos Renegate",
284
+ Quantity: "0-1",
285
+ Position: "Orc",
286
+ Keywords: "Lineman, Orc",
287
+ Cost: "50k",
288
+ Stats: "533+4+10+",
289
+ Skills: "Animosity (all)",
290
+ Primary: "DGM",
291
+ Secondary: "AS",
292
+ },
293
+ {
294
+ Team: "Chaos Renegate",
295
+ Quantity: "0-1",
296
+ Position: "Skaven",
297
+ Keywords: "Lineman, Skaven",
298
+ Cost: "50k",
299
+ Stats: "733+4+8+",
300
+ Skills: "Animosity (all)",
301
+ Primary: "DGM",
302
+ Secondary: "AS",
303
+ },
304
+ {
305
+ Team: "Chaos Renegate",
306
+ Quantity: "0-1",
307
+ Position: "DarkElf",
308
+ Keywords: "Elf, Lineman",
309
+ Cost: "65k",
310
+ Stats: "632+3+9+",
311
+ Skills: "Animosity (all)",
312
+ Primary: "ADGM",
313
+ Secondary: "S",
314
+ },
315
+ {
316
+ Team: "Chaos Renegate",
317
+ Quantity: "0-1",
318
+ Position: "Thrower",
319
+ Keywords: "Human, Thrower",
320
+ Cost: "75k",
321
+ Stats: "633+3+9+",
322
+ Skills: "Animosity (all), Pass, Sure Hands",
323
+ Primary: "DGMP",
324
+ Secondary: "AS",
325
+ },
326
+ {
327
+ Team: "Chaos Renegate",
328
+ Quantity: "0-1",
329
+ Position: "Troll",
330
+ Keywords: "Big Guy, Troll",
331
+ Cost: "115k",
332
+ Stats: "455+5+10+",
333
+ Skills:
334
+ "Always Hungry, Loner (4+), Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
335
+ Primary: "S",
336
+ Secondary: "AGPM",
337
+ },
338
+ {
339
+ Team: "Chaos Renegate",
340
+ Quantity: "0-1",
341
+ Position: "Ogre",
342
+ Keywords: "Big Guy,Ogre",
343
+ Cost: "140k",
344
+ Stats: "554+5+10+",
345
+ Skills: "Bone Head, Loner (4+), Mighty Blow, Thick Skull, Throw Team-mate",
346
+ Primary: "S",
347
+ Secondary: "AGM",
348
+ },
349
+ {
350
+ Team: "Chaos Renegate",
351
+ Quantity: "0-1",
352
+ Position: "Miinotaur",
353
+ Keywords: "Big Guy, Minotaur",
354
+ Cost: "150k",
355
+ Stats: "554+6+9+",
356
+ Skills:
357
+ "Frenzy, Horns, Loner (4+), Mighty Blow, Thick Skull, Unchannelled Fury",
358
+ Primary: "S",
359
+ Secondary: "AGM",
360
+ },
361
+ {
362
+ Team: "Chaos Renegate",
363
+ Quantity: "0-1",
364
+ Position: "RatOgre",
365
+ Keywords: "Big Guy, Skaven",
366
+ Cost: "150k",
367
+ Stats: "654+6+9+",
368
+ Skills: "Animal Savagery, Frenzy, Loner (4+), Mighty Blow, Prehensile Tail",
369
+ Primary: "S",
370
+ Secondary: "AGM",
371
+ },
372
+ {
373
+ Team: "Dark Elf",
374
+ Quantity: "0-16",
375
+ Position: "Lineman",
376
+ Keywords: "Elf, Lineman",
377
+ Cost: "65k",
378
+ Stats: "632+3+9+",
379
+ Skills: "",
380
+ Primary: "AG",
381
+ Secondary: "DS",
382
+ },
383
+ {
384
+ Team: "Dark Elf",
385
+ Quantity: "0-2",
386
+ Position: "Runner",
387
+ Keywords: "Elf, Runner",
388
+ Cost: "80k",
389
+ Stats: "732+3+8+",
390
+ Skills: "Dump-Off, Punt",
391
+ Primary: "AGP",
392
+ Secondary: "DS",
393
+ },
394
+ {
395
+ Team: "Dark Elf",
396
+ Quantity: "0-2",
397
+ Position: "Assassin",
398
+ Keywords: "Elf, Special",
399
+ Cost: "90k",
400
+ Stats: "732+4+8+",
401
+ Skills: "Hit and Run, Shadowing, Stab",
402
+ Primary: "AD",
403
+ Secondary: "GS",
404
+ },
405
+ {
406
+ Team: "Dark Elf",
407
+ Quantity: "0-2",
408
+ Position: "Blitzer",
409
+ Keywords: "Blitzer, Elf",
410
+ Cost: "105k",
411
+ Stats: "732+3+9+",
412
+ Skills: "Block",
413
+ Primary: "AG",
414
+ Secondary: "DPS",
415
+ },
416
+ {
417
+ Team: "Dark Elf",
418
+ Quantity: "0-2",
419
+ Position: "Witch Elf",
420
+ Keywords: "Elf, Special",
421
+ Cost: "110k",
422
+ Stats: "732+4+8+",
423
+ Skills: "Dodge, Frenzy, Jump Up",
424
+ Primary: "AG",
425
+ Secondary: "DS",
426
+ },
427
+ {
428
+ Team: "Dwarf",
429
+ Quantity: "0-16",
430
+ Position: "Lineman",
431
+ Keywords: "Dwarf, Lineman",
432
+ Cost: "70k",
433
+ Stats: "434+5+10+",
434
+ Skills: "Block, Defensive, Thick Skull",
435
+ Primary: "DG",
436
+ Secondary: "S",
437
+ },
438
+ {
439
+ Team: "Dwarf",
440
+ Quantity: "0-2",
441
+ Position: "Runner",
442
+ Keywords: "Dwarf, Runner",
443
+ Cost: "80k",
444
+ Stats: "633+4+9+",
445
+ Skills: "Sprint, Sure Hands, Thick Skull",
446
+ Primary: "GP",
447
+ Secondary: "S",
448
+ },
449
+ {
450
+ Team: "Dwarf",
451
+ Quantity: "0-2",
452
+ Position: "Blitzer",
453
+ Keywords: "Blitzer, Dwarf",
454
+ Cost: "100k",
455
+ Stats: "534+4+10+",
456
+ Skills: "Block, Diving Tackle, Tackle, Thick Skull",
457
+ Primary: "GS",
458
+ Secondary: "P",
459
+ },
460
+ {
461
+ Team: "Dwarf",
462
+ Quantity: "0-2",
463
+ Position: "Troll Slayer",
464
+ Keywords: "Dwarf, Special",
465
+ Cost: "95k",
466
+ Stats: "534+5+9+",
467
+ Skills: "Block, Dauntless, Frenzy, Hatred (Troll), Thick Skull",
468
+ Primary: "GS",
469
+ Secondary: "D",
470
+ },
471
+ {
472
+ Team: "Dwarf",
473
+ Quantity: "0-1",
474
+ Position: "Deathroller",
475
+ Keywords: "Big Guy, Dwarf, Special",
476
+ Cost: "170k",
477
+ Stats: "575+-11+",
478
+ Skills:
479
+ "Break Tackle, Dirty Player, Juggernaut, Loner (4+), Mighty Blow, No Ball, Secret Weapon, Stand Firm",
480
+ Primary: "DS",
481
+ Secondary: "G",
482
+ },
483
+ {
484
+ Team: "Elven Union",
485
+ Quantity: "0-16",
486
+ Position: "Lineman",
487
+ Keywords: "Elf, Lineman",
488
+ Cost: "65k",
489
+ Stats: "632+3+8+",
490
+ Skills: "Fumblerooski",
491
+ Primary: "AG",
492
+ Secondary: "S",
493
+ },
494
+ {
495
+ Team: "Elven Union",
496
+ Quantity: "0-2",
497
+ Position: "Thrower",
498
+ Keywords: "Elf, Thrower",
499
+ Cost: "75k",
500
+ Stats: "632+2+8+",
501
+ Skills: "Hail Mary Pass, Pass",
502
+ Primary: "AGP",
503
+ Secondary: "S",
504
+ },
505
+ {
506
+ Team: "Elven Union",
507
+ Quantity: "0-2",
508
+ Position: "Catcher",
509
+ Keywords: "Catcher, Elf",
510
+ Cost: "100k",
511
+ Stats: "832+4+8+",
512
+ Skills: "Catch, Diving Catch, Nerves of Steel",
513
+ Primary: "AG",
514
+ Secondary: "S",
515
+ },
516
+ {
517
+ Team: "Elven Union",
518
+ Quantity: "0-2",
519
+ Position: "Blitzer",
520
+ Keywords: "Blitzer, Elf",
521
+ Cost: "115k",
522
+ Stats: "732+3+9+",
523
+ Skills: "Block, Sidestep",
524
+ Primary: "AG",
525
+ Secondary: "PS",
526
+ },
527
+ {
528
+ Team: "Goblin",
529
+ Quantity: "0-16",
530
+ Position: "Lineman",
531
+ Keywords: "Goblin, Lineman",
532
+ Cost: "40k",
533
+ Stats: "623+4+8+",
534
+ Skills: "Dodge, Right Stuff, Stunty",
535
+ Primary: "AD",
536
+ Secondary: "GPS",
537
+ },
538
+ {
539
+ Team: "Goblin",
540
+ Quantity: "0-1",
541
+ Position: "Loony",
542
+ Keywords: "Goblin, Special",
543
+ Cost: "40k",
544
+ Stats: "623+-8+",
545
+ Skills: "Chainsaw, No Ball, Secret Weapon, Stunty",
546
+ Primary: "D",
547
+ Secondary: "AGS",
548
+ },
549
+ {
550
+ Team: "Goblin",
551
+ Quantity: "0-1",
552
+ Position: "Bomma",
553
+ Keywords: "Goblin, Special",
554
+ Cost: "45k",
555
+ Stats: "623+4+8+",
556
+ Skills: "Bombardier, Dodge, Secret Weapon, Stunty",
557
+ Primary: "DP",
558
+ Secondary: "AGS",
559
+ },
560
+ {
561
+ Team: "Goblin",
562
+ Quantity: "0-1",
563
+ Position: "Ooligan",
564
+ Keywords: "Goblin, Special",
565
+ Cost: "60k",
566
+ Stats: "623+5+8+",
567
+ Skills:
568
+ "Dirty Player, Disturbing Presence, Dodge, Right Stuff, Stunty, Taunt",
569
+ Primary: "AD",
570
+ Secondary: "GS",
571
+ },
572
+ {
573
+ Team: "Goblin",
574
+ Quantity: "0-1",
575
+ Position: "Doom Diver",
576
+ Keywords: "Goblin, Special",
577
+ Cost: "65k",
578
+ Stats: "623+6+8+",
579
+ Skills: "Dodge, Right Stuff, Stunty, Swoop",
580
+ Primary: "A",
581
+ Secondary: "DGS",
582
+ },
583
+ {
584
+ Team: "Goblin",
585
+ Quantity: "0-1",
586
+ Position: "Fanatic",
587
+ Keywords: "Goblin, Special",
588
+ Cost: "70k",
589
+ Stats: "373+-8+",
590
+ Skills: "Ball & Chain, No Ball, Secret Weapon, Stunty",
591
+ Primary: "DS",
592
+ Secondary: "AG",
593
+ },
594
+ {
595
+ Team: "Goblin",
596
+ Quantity: "0-1",
597
+ Position: "Pogoer",
598
+ Keywords: "Goblin, Special",
599
+ Cost: "75k",
600
+ Stats: "723+4+8+",
601
+ Skills: "Dodge, Pogo Stick, Stunty",
602
+ Primary: "A",
603
+ Secondary: "DGS",
604
+ },
605
+ {
606
+ Team: "Goblin",
607
+ Quantity: "0-2",
608
+ Position: "Troll",
609
+ Keywords: "Big Guy, Troll",
610
+ Cost: "115k",
611
+ Stats: "455+5+10+",
612
+ Skills:
613
+ "Always Hungry, Mighty Blow (+1), Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
614
+ Primary: "S",
615
+ Secondary: "AGP",
616
+ },
617
+ {
618
+ Team: "Halfling",
619
+ Quantity: "0-16",
620
+ Position: "Lineman",
621
+ Keywords: "Halfling, Lineman",
622
+ Cost: "30k",
623
+ Stats: "523+4+7+",
624
+ Skills: "Dodge, Right Stuff, Stunty",
625
+ Primary: "A",
626
+ Secondary: "DGS",
627
+ },
628
+ {
629
+ Team: "Halfling",
630
+ Quantity: "0-2",
631
+ Position: "Hefty",
632
+ Keywords: "Blocker, Halfling",
633
+ Cost: "50k",
634
+ Stats: "523+3+8+",
635
+ Skills: "Dodge, Fend, Stunty",
636
+ Primary: "AP",
637
+ Secondary: "DGS",
638
+ },
639
+ {
640
+ Team: "Halfling",
641
+ Quantity: "0-2",
642
+ Position: "Catcher",
643
+ Keywords: "Catcher, Halfling",
644
+ Cost: "55k",
645
+ Stats: "523+4+7+",
646
+ Skills: "Catch, Dodge, Right Stuff, Sprint, Stunty",
647
+ Primary: "A",
648
+ Secondary: "DGS",
649
+ },
650
+ {
651
+ Team: "Halfling",
652
+ Quantity: "0-2",
653
+ Position: "Treeman",
654
+ Keywords: "Big Guy, Treeman",
655
+ Cost: "120k",
656
+ Stats: "265+5+11+",
657
+ Skills:
658
+ "Mighty Blow (+1), Stand Firm, Strong Arm, Take Root, Thick Skull, Throw Team-mate, Timmm-ber!",
659
+ Primary: "S",
660
+ Secondary: "AGP",
661
+ },
662
+ {
663
+ Team: "High Elf",
664
+ Quantity: "0-16",
665
+ Position: "Lineman",
666
+ Keywords: "Elf, Lineman",
667
+ Cost: "65k",
668
+ Stats: "632+3+9+",
669
+ Skills: "",
670
+ Primary: "AG",
671
+ Secondary: "PS",
672
+ },
673
+ {
674
+ Team: "High Elf",
675
+ Quantity: "0-2",
676
+ Position: "Thrower",
677
+ Keywords: "Elf, Thrower",
678
+ Cost: "100k",
679
+ Stats: "632+2+9+",
680
+ Skills: "Cloud Burster, Pass, Safe Pass",
681
+ Primary: "AGP",
682
+ Secondary: "S",
683
+ },
684
+ {
685
+ Team: "High Elf",
686
+ Quantity: "0-4",
687
+ Position: "Catcher",
688
+ Keywords: "Catcher, Elf",
689
+ Cost: "90k",
690
+ Stats: "832+3+8+",
691
+ Skills: "Catch",
692
+ Primary: "AG",
693
+ Secondary: "S",
694
+ },
695
+ {
696
+ Team: "High Elf",
697
+ Quantity: "0-2",
698
+ Position: "Blitzer",
699
+ Keywords: "Blitzer, Elf",
700
+ Cost: "100k",
701
+ Stats: "732+4+9+",
702
+ Skills: "Block",
703
+ Primary: "AG",
704
+ Secondary: "PS",
705
+ },
706
+ {
707
+ Team: "Human",
708
+ Quantity: "0-16",
709
+ Position: "Lineman",
710
+ Keywords: "Human, Lineman",
711
+ Cost: "50k",
712
+ Stats: "633+4+9+",
713
+ Skills: "",
714
+ Primary: "G",
715
+ Secondary: "ADS",
716
+ },
717
+ {
718
+ Team: "Human",
719
+ Quantity: "0-3",
720
+ Position: "Halfling",
721
+ Keywords: "Halfling, Lineman",
722
+ Cost: "30k",
723
+ Stats: "523+4+7+",
724
+ Skills: "Dodge, Right Stuff, Stunty",
725
+ Primary: "A",
726
+ Secondary: "DGS",
727
+ },
728
+ {
729
+ Team: "Human",
730
+ Quantity: "0-2",
731
+ Position: "Catcher",
732
+ Keywords: "Catcher, Human",
733
+ Cost: "75k",
734
+ Stats: "833+4+8+",
735
+ Skills: "Catch, Dodge",
736
+ Primary: "AG",
737
+ Secondary: "DPS",
738
+ },
739
+ {
740
+ Team: "Human",
741
+ Quantity: "0-2",
742
+ Position: "Thrower",
743
+ Keywords: "Human, Thrower",
744
+ Cost: "75k",
745
+ Stats: "633+3+9+",
746
+ Skills: "Pass, Sure Hands",
747
+ Primary: "GP",
748
+ Secondary: "ADS",
749
+ },
750
+ {
751
+ Team: "Human",
752
+ Quantity: "0-2",
753
+ Position: "Blitzer",
754
+ Keywords: "Blitzer, Human",
755
+ Cost: "85k",
756
+ Stats: "733+4+9+",
757
+ Skills: "Block, Tackle",
758
+ Primary: "GS",
759
+ Secondary: "AD",
760
+ },
761
+ {
762
+ Team: "Human",
763
+ Quantity: "0-1",
764
+ Position: "Ogre",
765
+ Keywords: "Big Guy, Ogre",
766
+ Cost: "140k",
767
+ Stats: "554+5+10+",
768
+ Skills: "Bone Head, Loner (3+), Mighty Blow, Thick Skull, Throw Team-mate",
769
+ Primary: "S",
770
+ Secondary: "AG",
771
+ },
772
+ {
773
+ Team: "Imperial Nobility",
774
+ Quantity: "0-16",
775
+ Position: "Retainer",
776
+ Keywords: "Human, Lineman",
777
+ Cost: "45k",
778
+ Stats: "633+4+8+",
779
+ Skills: "Fend",
780
+ Primary: "G",
781
+ Secondary: "AS",
782
+ },
783
+ {
784
+ Team: "Imperial Nobility",
785
+ Quantity: "0-2",
786
+ Position: "Thrower",
787
+ Keywords: "Human, Thrower",
788
+ Cost: "75k",
789
+ Stats: "633+2+9+",
790
+ Skills: "Give and Go, Pass, Pro",
791
+ Primary: "GP",
792
+ Secondary: "AS",
793
+ },
794
+ {
795
+ Team: "Imperial Nobility",
796
+ Quantity: "0-4",
797
+ Position: "Bodyguard",
798
+ Keywords: "Blocker, Human",
799
+ Cost: "85k",
800
+ Stats: "533+4+9+",
801
+ Skills: "Stand Firm, Wrestle",
802
+ Primary: "GS",
803
+ Secondary: "A",
804
+ },
805
+ {
806
+ Team: "Imperial Nobility",
807
+ Quantity: "0-2",
808
+ Position: "Blitzer",
809
+ Keywords: "Blitzer, Human",
810
+ Cost: "90k",
811
+ Stats: "733+4+9+",
812
+ Skills: "Block, Catch, Pro",
813
+ Primary: "AG",
814
+ Secondary: "PS",
815
+ },
816
+ {
817
+ Team: "Imperial Nobility",
818
+ Quantity: "0-1",
819
+ Position: "Ogre",
820
+ Keywords: "Big Guy, Ogre",
821
+ Cost: "140k",
822
+ Stats: "554+5+10+",
823
+ Skills: "Bone Head, Loner (3+), Mighty Blow, Thick Skull, Throw Team-mate",
824
+ Primary: "S",
825
+ Secondary: "AG",
826
+ },
827
+ {
828
+ Team: "Khorne",
829
+ Quantity: "0-16",
830
+ Position: "Marauder",
831
+ Keywords: "Human, Lineman",
832
+ Cost: "50k",
833
+ Stats: "633+4+8+",
834
+ Skills: "Frenzy",
835
+ Primary: "GM",
836
+ Secondary: "ADS",
837
+ },
838
+ {
839
+ Team: "Khorne",
840
+ Quantity: "0-2",
841
+ Position: "Khorngor",
842
+ Keywords: "Beastman, Runner",
843
+ Cost: "70k",
844
+ Stats: "633+4+9+",
845
+ Skills: "Horns, Juggernaut, Jump Up, Thick Skull",
846
+ Primary: "GMS",
847
+ Secondary: "ADP",
848
+ },
849
+ {
850
+ Team: "Khorne",
851
+ Quantity: "0-4",
852
+ Position: "Bloodseeker",
853
+ Keywords: "Blocker, Human",
854
+ Cost: "105k",
855
+ Stats: "544+6+10+",
856
+ Skills: "Frenzy",
857
+ Primary: "GMS",
858
+ Secondary: "AD",
859
+ },
860
+ {
861
+ Team: "Khorne",
862
+ Quantity: "0-1",
863
+ Position: "Bloodspawn",
864
+ Keywords: "Big Guy, Spawn",
865
+ Cost: "160k",
866
+ Stats: "554+6+9+",
867
+ Skills: "Claws, Frenzy, Loner (4+), Mighty Blow, Unchannelled Fury",
868
+ Primary: "MS",
869
+ Secondary: "AG",
870
+ },
871
+ {
872
+ Team: "Lizardmen",
873
+ Quantity: "0-16",
874
+ Position: "Skink",
875
+ Keywords: "Lineman, Lizardman",
876
+ Cost: "60k",
877
+ Stats: "823+4+8+",
878
+ Skills: "Dodge, Stunty",
879
+ Primary: "A",
880
+ Secondary: "GDPS",
881
+ },
882
+ {
883
+ Team: "Lizardmen",
884
+ Quantity: "0-2",
885
+ Position: "Chameleon",
886
+ Keywords: "Lizardman, Thrower",
887
+ Cost: "70k",
888
+ Stats: "723+3+8+",
889
+ Skills: "Dodge, On The Ball, Shadowing, Stunty",
890
+ Primary: "AP",
891
+ Secondary: "GDS",
892
+ },
893
+ {
894
+ Team: "Lizardmen",
895
+ Quantity: "0-6",
896
+ Position: "Saurus",
897
+ Keywords: "Blocker, Lizardman",
898
+ Cost: "90k",
899
+ Stats: "645+6+10+",
900
+ Skills: "Juggernaut, Unsteady",
901
+ Primary: "GS",
902
+ Secondary: "A",
903
+ },
904
+ {
905
+ Team: "Lizardmen",
906
+ Quantity: "0-1",
907
+ Position: "Krox",
908
+ Keywords: "Big Guy, Lizardman",
909
+ Cost: "140k",
910
+ Stats: "655+6+10+",
911
+ Skills: "Bone Head, Loner (4+), Mighty Blow, Prehensile Tail, Thick Skull",
912
+ Primary: "S",
913
+ Secondary: "AG",
914
+ },
915
+ {
916
+ Team: "Necromantic Horror",
917
+ Quantity: "0-16",
918
+ Position: "Zombie",
919
+ Keywords: "Human, Lineman, Undead, Zombie",
920
+ Cost: "40k",
921
+ Stats: "434+6+9+",
922
+ Skills: "Eye Gouge, Regeneration, Unsteady",
923
+ Primary: "DG",
924
+ Secondary: "AS",
925
+ },
926
+ {
927
+ Team: "Necromantic Horror",
928
+ Quantity: "0-2",
929
+ Position: "Ghoul",
930
+ Keywords: "Ghoul, Runner, Undead",
931
+ Cost: "75k",
932
+ Stats: "733+3+8+",
933
+ Skills: "Dodge, Regeneration",
934
+ Primary: "AG",
935
+ Secondary: "DPS",
936
+ },
937
+ {
938
+ Team: "Necromantic Horror",
939
+ Quantity: "0-2",
940
+ Position: "Wraith",
941
+ Keywords: "Blocker, Undead, Wraith",
942
+ Cost: "85k",
943
+ Stats: "633+-9+",
944
+ Skills: "Block, Foul Appearance, No Hands, Regeneration, Sidestep",
945
+ Primary: "GS",
946
+ Secondary: "AD",
947
+ },
948
+ {
949
+ Team: "Necromantic Horror",
950
+ Quantity: "0-2",
951
+ Position: "Flesh Golem",
952
+ Keywords: "Blocker, Construct, Undead",
953
+ Cost: "110k",
954
+ Stats: "444+6+10+",
955
+ Skills: "Regeneration, Stand Firm, Thick Skull, Unsteady",
956
+ Primary: "GS",
957
+ Secondary: "AD",
958
+ },
959
+ {
960
+ Team: "Necromantic Horror",
961
+ Quantity: "0-2",
962
+ Position: "Werewolf",
963
+ Keywords: "Blitzer, Undead, Werewolf",
964
+ Cost: "120k",
965
+ Stats: "833+3+9+",
966
+ Skills: "Claws, Frenzy, Regeneration",
967
+ Primary: "AG",
968
+ Secondary: "DPS",
969
+ },
970
+ {
971
+ Team: "Norse",
972
+ Quantity: "0-16",
973
+ Position: "Raider",
974
+ Keywords: "Human, Lineman",
975
+ Cost: "50k",
976
+ Stats: "633+4+8+",
977
+ Skills: "Block, Drunkard, Thick Skull, Unsteady",
978
+ Primary: "G",
979
+ Secondary: "APS",
980
+ },
981
+ {
982
+ Team: "Norse",
983
+ Quantity: "0-2",
984
+ Position: "Boar",
985
+ Keywords: "Animal, Special",
986
+ Cost: "20k",
987
+ Stats: "513+-6+",
988
+ Skills: "Dodge, No Ball, Pick-me-up, Stunty, Titchy",
989
+ Primary: "",
990
+ Secondary: "A",
991
+ },
992
+ {
993
+ Team: "Norse",
994
+ Quantity: "0-2",
995
+ Position: "Berserker",
996
+ Keywords: "Blitzer, Human",
997
+ Cost: "90k",
998
+ Stats: "633+5+8+",
999
+ Skills: "Block, Frenzy, Jump Up",
1000
+ Primary: "GS",
1001
+ Secondary: "AP",
1002
+ },
1003
+ {
1004
+ Team: "Norse",
1005
+ Quantity: "0-2",
1006
+ Position: "Valkyrie",
1007
+ Keywords: "Catcher, Human, Thrower",
1008
+ Cost: "95k",
1009
+ Stats: "733+3+8+",
1010
+ Skills: "Catch, Dauntless, Pass, Strip Ball",
1011
+ Primary: "AGP",
1012
+ Secondary: "S",
1013
+ },
1014
+ {
1015
+ Team: "Norse",
1016
+ Quantity: "0-2",
1017
+ Position: "Ulfwerner",
1018
+ Keywords: "Blocker, Human",
1019
+ Cost: "105k",
1020
+ Stats: "644+6+9+",
1021
+ Skills: "Frenzy, Unsteady",
1022
+ Primary: "GS",
1023
+ Secondary: "A",
1024
+ },
1025
+ {
1026
+ Team: "Norse",
1027
+ Quantity: "0-1",
1028
+ Position: "Yhetee",
1029
+ Keywords: "Big Guy, Yhetee",
1030
+ Cost: "140k",
1031
+ Stats: "554+6+9+",
1032
+ Skills: "Claws, Disturbing Presence, Frenzy, Loner (4+), Unchannelled Fury",
1033
+ Primary: "S",
1034
+ Secondary: "AG",
1035
+ },
1036
+ {
1037
+ Team: "Nurgle",
1038
+ Quantity: "0-16",
1039
+ Position: "Rotter",
1040
+ Keywords: "Human, Lineman",
1041
+ Cost: "40k",
1042
+ Stats: "534+6+9+",
1043
+ Skills: "Decay, Plague Ridden",
1044
+ Primary: "DGM",
1045
+ Secondary: "AS",
1046
+ },
1047
+ {
1048
+ Team: "Nurgle",
1049
+ Quantity: "0-2",
1050
+ Position: "Pestigor",
1051
+ Keywords: "Beastman, Runner",
1052
+ Cost: "70k",
1053
+ Stats: "633+4+9+",
1054
+ Skills: "Horns, Plague Ridden, Regeneration, Steady Footing, Thick Skull",
1055
+ Primary: "GMS",
1056
+ Secondary: "ADP",
1057
+ },
1058
+ {
1059
+ Team: "Nurgle",
1060
+ Quantity: "0-4",
1061
+ Position: "Bloater",
1062
+ Keywords: "Blocker, Human",
1063
+ Cost: "110k",
1064
+ Stats: "444+6+10+",
1065
+ Skills:
1066
+ "Disturbing Presence, Foul Appearance, Plague Ridden, Regeneration, Stand Firm, Unsteady",
1067
+ Primary: "GMS",
1068
+ Secondary: "AD",
1069
+ },
1070
+ {
1071
+ Team: "Nurgle",
1072
+ Quantity: "0-1",
1073
+ Position: "Rotspawn",
1074
+ Keywords: "Big Guy, Spawn",
1075
+ Cost: "140k",
1076
+ Stats: "455+6+10+",
1077
+ Skills:
1078
+ "Disturbing Presence, Foul Appearance, Loner (4+), Mighty Blow, Pick-me-up, Plague Ridden, Really Stupid, Regeneration, Tentacles",
1079
+ Primary: "S",
1080
+ Secondary: "DGM",
1081
+ },
1082
+ {
1083
+ Team: "Ogre",
1084
+ Quantity: "0-16",
1085
+ Position: "Gnoblar",
1086
+ Keywords: "Gnoblar, Lineman",
1087
+ Cost: "15k",
1088
+ Stats: "513+4+6+",
1089
+ Skills: "Dodge, Right Stuff, Sidestep, Stunty, Titchy",
1090
+ Primary: "AD",
1091
+ Secondary: "G",
1092
+ },
1093
+ {
1094
+ Team: "Ogre",
1095
+ Quantity: "0-5",
1096
+ Position: "Ogre",
1097
+ Keywords: "Big Guy, Blocker, Ogre",
1098
+ Cost: "140k",
1099
+ Stats: "554+5+10+",
1100
+ Skills: "Bone Head, Mighty Blow, Thick Skull, Throw Team-mate",
1101
+ Primary: "S",
1102
+ Secondary: "ADGP",
1103
+ },
1104
+ {
1105
+ Team: "Ogre",
1106
+ Quantity: "0-1",
1107
+ Position: "Punter",
1108
+ Keywords: "Big Guy, Ogre, Thrower",
1109
+ Cost: "145k",
1110
+ Stats: "554+4+10+",
1111
+ Skills: "Bone Head, Kick Team-mate, Mighty Blow, Thick Skull",
1112
+ Primary: "PS",
1113
+ Secondary: "ADG",
1114
+ },
1115
+ {
1116
+ Team: "Old World Alliance",
1117
+ Quantity: "0-16",
1118
+ Position: "Lineman",
1119
+ Keywords: "Human, Lineman",
1120
+ Cost: "50k",
1121
+ Stats: "633+4+9+",
1122
+ Skills: "",
1123
+ Primary: "G",
1124
+ Secondary: "AS",
1125
+ },
1126
+ {
1127
+ Team: "Old World Alliance",
1128
+ Quantity: "0-3",
1129
+ Position: "Halfling",
1130
+ Keywords: "Halfling, Lineman",
1131
+ Cost: "30k",
1132
+ Stats: "523+4+7+",
1133
+ Skills: "Dodge, Right Stuff, Stunty",
1134
+ Primary: "A",
1135
+ Secondary: "GS",
1136
+ },
1137
+ {
1138
+ Team: "Old World Alliance",
1139
+ Quantity: "0-1",
1140
+ Position: "Catcher",
1141
+ Keywords: "Catcher, Human",
1142
+ Cost: "75k",
1143
+ Stats: "833+4+8+",
1144
+ Skills: "Catch, Dodge",
1145
+ Primary: "AG",
1146
+ Secondary: "PS",
1147
+ },
1148
+ {
1149
+ Team: "Old World Alliance",
1150
+ Quantity: "0-3",
1151
+ Position: "DBlocker",
1152
+ Keywords: "Dwarf, Lineman",
1153
+ Cost: "70k",
1154
+ Stats: "434+5+10+",
1155
+ Skills: "Block, Defensive, Thick Skull",
1156
+ Primary: "DG",
1157
+ Secondary: "S",
1158
+ },
1159
+ {
1160
+ Team: "Old World Alliance",
1161
+ Quantity: "0-1",
1162
+ Position: "Thrower",
1163
+ Keywords: "Human, Thrower",
1164
+ Cost: "75k",
1165
+ Stats: "633+3+9+",
1166
+ Skills: "Pass, Sure Hands",
1167
+ Primary: "GP",
1168
+ Secondary: "AS",
1169
+ },
1170
+ {
1171
+ Team: "Old World Alliance",
1172
+ Quantity: "0-1",
1173
+ Position: "Runner",
1174
+ Keywords: "Dwarf, Runner",
1175
+ Cost: "80k",
1176
+ Stats: "633+4+9+",
1177
+ Skills: "Sprint, Sure Hands, Thick Skull",
1178
+ Primary: "GP",
1179
+ Secondary: "AS",
1180
+ },
1181
+ {
1182
+ Team: "Old World Alliance",
1183
+ Quantity: "0-1",
1184
+ Position: "HBlitzer",
1185
+ Keywords: "Blitzer, Human",
1186
+ Cost: "85k",
1187
+ Stats: "733+4+9+",
1188
+ Skills: "Block, Tackle",
1189
+ Primary: "GS",
1190
+ Secondary: "A",
1191
+ },
1192
+ {
1193
+ Team: "Old World Alliance",
1194
+ Quantity: "0-1",
1195
+ Position: "DBlitzer",
1196
+ Keywords: "Blitzer, Dwarf",
1197
+ Cost: "100k",
1198
+ Stats: "534+4+10+",
1199
+ Skills: "Block, Diving Tackle, Tackle, Thick Skull",
1200
+ Primary: "GS",
1201
+ Secondary: "P",
1202
+ },
1203
+ {
1204
+ Team: "Old World Alliance",
1205
+ Quantity: "0-1",
1206
+ Position: "Troll Slayer",
1207
+ Keywords: "Dwarf, Special",
1208
+ Cost: "95k",
1209
+ Stats: "534+5+9+",
1210
+ Skills: "Block, Dauntless, Frenzy, Hatred (Troll), Thick Skull",
1211
+ Primary: "GS",
1212
+ Secondary: "A",
1213
+ },
1214
+ {
1215
+ Team: "Old World Alliance",
1216
+ Quantity: "0-1",
1217
+ Position: "Ogre",
1218
+ Keywords: "Big Guy, Ogre",
1219
+ Cost: "140k",
1220
+ Stats: "554+5+10+",
1221
+ Skills: "Bone Head, Loner (3+), Mighty Blow, Thick Skull, Throw Team-mate",
1222
+ Primary: "S",
1223
+ Secondary: "AG",
1224
+ },
1225
+ {
1226
+ Team: "Old World Alliance",
1227
+ Quantity: "0-1",
1228
+ Position: "Treeman",
1229
+ Keywords: "Big Guy, Treeman",
1230
+ Cost: "120k",
1231
+ Stats: "265+5+11+",
1232
+ Skills:
1233
+ "Mighty Blow, Stand Firm, Strong Arm, Take Root, Thick Skull, Throw Team-mate, Timmm-ber!",
1234
+ Primary: "S",
1235
+ Secondary: "AGP",
1236
+ },
1237
+ {
1238
+ Team: "Orc",
1239
+ Quantity: "0-16",
1240
+ Position: "Lineman",
1241
+ Keywords: "Lineman, Orc",
1242
+ Cost: "50k",
1243
+ Stats: "533+4+10+",
1244
+ Skills: "",
1245
+ Primary: "GS",
1246
+ Secondary: "AD",
1247
+ },
1248
+ {
1249
+ Team: "Orc",
1250
+ Quantity: "0-4",
1251
+ Position: "Goblin",
1252
+ Keywords: "Goblin, Lineman",
1253
+ Cost: "40k",
1254
+ Stats: "623+3+8+",
1255
+ Skills: "Dodge, Right Stuff, Stunty",
1256
+ Primary: "AD",
1257
+ Secondary: "GPS",
1258
+ },
1259
+ {
1260
+ Team: "Orc",
1261
+ Quantity: "0-2",
1262
+ Position: "Thrower",
1263
+ Keywords: "Orc, Thrower",
1264
+ Cost: "75k",
1265
+ Stats: "633+3+9+",
1266
+ Skills: "Pass, Sure Hands",
1267
+ Primary: "GP",
1268
+ Secondary: "ADS",
1269
+ },
1270
+ {
1271
+ Team: "Orc",
1272
+ Quantity: "0-2",
1273
+ Position: "Blitzer",
1274
+ Keywords: "Blitzer, Orc",
1275
+ Cost: "85k",
1276
+ Stats: "633+4+10+",
1277
+ Skills: "Block, Break Tackle",
1278
+ Primary: "GS",
1279
+ Secondary: "AD",
1280
+ },
1281
+ {
1282
+ Team: "Orc",
1283
+ Quantity: "0-2",
1284
+ Position: "Big Un",
1285
+ Keywords: "Blocker, Orc",
1286
+ Cost: "95k",
1287
+ Stats: "544+6+10+",
1288
+ Skills: "Mighty Blow, Taunt, Thick Skull, Unsteady",
1289
+ Primary: "GS",
1290
+ Secondary: "AD",
1291
+ },
1292
+ {
1293
+ Team: "Orc",
1294
+ Quantity: "0-1",
1295
+ Position: "Troll",
1296
+ Keywords: "Big Guy, Troll",
1297
+ Cost: "115k",
1298
+ Stats: "455+5+10+",
1299
+ Skills:
1300
+ "Always Hungry, Loner (4+), Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
1301
+ Primary: "S",
1302
+ Secondary: "AGP",
1303
+ },
1304
+ {
1305
+ Team: "Shambling Undead",
1306
+ Quantity: "0-16",
1307
+ Position: "Skeleton",
1308
+ Keywords: "Human, Lineman, Skeleton, Undead",
1309
+ Cost: "40k",
1310
+ Stats: "534+6+8+",
1311
+ Skills: "Regeneration, Thick Skull",
1312
+ Primary: "G",
1313
+ Secondary: "ADS",
1314
+ },
1315
+ {
1316
+ Team: "Shambling Undead",
1317
+ Quantity: "0-16",
1318
+ Position: "Zombie",
1319
+ Keywords: "Human, Lineman, Undead, Zombie",
1320
+ Cost: "40k",
1321
+ Stats: "434+6+9+",
1322
+ Skills: "Eye Gouge, Regeneration, Unsteady",
1323
+ Primary: "DG",
1324
+ Secondary: "AS",
1325
+ },
1326
+ {
1327
+ Team: "Shambling Undead",
1328
+ Quantity: "0-2",
1329
+ Position: "Ghoul",
1330
+ Keywords: "Ghoul, Runner, Undead",
1331
+ Cost: "75k",
1332
+ Stats: "733+3+8+",
1333
+ Skills: "Dodge, Regeneration",
1334
+ Primary: "AG",
1335
+ Secondary: "DPS",
1336
+ },
1337
+ {
1338
+ Team: "Shambling Undead",
1339
+ Quantity: "0-2",
1340
+ Position: "Wight",
1341
+ Keywords: "Blitzer, Human, Skeleton, Undead",
1342
+ Cost: "95k",
1343
+ Stats: "633+5+9+",
1344
+ Skills: "Block, Regeneration, Tackle, Thick Skull",
1345
+ Primary: "GS",
1346
+ Secondary: "AD",
1347
+ },
1348
+ {
1349
+ Team: "Shambling Undead",
1350
+ Quantity: "0-2",
1351
+ Position: "Mummy",
1352
+ Keywords: "Big Guy, Blocker, Human, Undead",
1353
+ Cost: "125k",
1354
+ Stats: "355+6+10+",
1355
+ Skills: "Mighty Blow, Regeneration",
1356
+ Primary: "S",
1357
+ Secondary: "AG",
1358
+ },
1359
+ {
1360
+ Team: "Skaven",
1361
+ Quantity: "0-16",
1362
+ Position: "Clanrat",
1363
+ Keywords: "Lineman, Skaven",
1364
+ Cost: "50k",
1365
+ Stats: "733+4+8+",
1366
+ Skills: "",
1367
+ Primary: "DG",
1368
+ Secondary: "AMS",
1369
+ },
1370
+ {
1371
+ Team: "Skaven",
1372
+ Quantity: "0-2",
1373
+ Position: "Thrower",
1374
+ Keywords: "Skaven, Thrower",
1375
+ Cost: "80k",
1376
+ Stats: "733+2+8+",
1377
+ Skills: "Pass, Sure Hands",
1378
+ Primary: "GP",
1379
+ Secondary: "ADMS",
1380
+ },
1381
+ {
1382
+ Team: "Skaven",
1383
+ Quantity: "0-2",
1384
+ Position: "Gutter",
1385
+ Keywords: "Runner, Skaven",
1386
+ Cost: "85k",
1387
+ Stats: "922+4+8+",
1388
+ Skills: "Dodge, Stab",
1389
+ Primary: "ADG",
1390
+ Secondary: "MS",
1391
+ },
1392
+ {
1393
+ Team: "Skaven",
1394
+ Quantity: "0-2",
1395
+ Position: "Blitzer",
1396
+ Keywords: "Blitzer, Skaven",
1397
+ Cost: "90k",
1398
+ Stats: "833+4+9+",
1399
+ Skills: "Block, Strip Ball",
1400
+ Primary: "GS",
1401
+ Secondary: "ADM",
1402
+ },
1403
+ {
1404
+ Team: "Skaven",
1405
+ Quantity: "0-1",
1406
+ Position: "Rat Ogre",
1407
+ Keywords: "Big Guy, Skaven",
1408
+ Cost: "150k",
1409
+ Stats: "654+6+9+",
1410
+ Skills: "Animal Savagery, Frenzy, Loner (4+), Mighty Blow, Prehensile Tail",
1411
+ Primary: "S",
1412
+ Secondary: "AGM",
1413
+ },
1414
+ {
1415
+ Team: "Snotling",
1416
+ Quantity: "0-16",
1417
+ Position: "Lineman",
1418
+ Keywords: "Lineman, Snotling",
1419
+ Cost: "15k",
1420
+ Stats: "513+4+6+",
1421
+ Skills: "Dodge, Insignificant, Right Stuff, Sidestep, Stunty, Titchy",
1422
+ Primary: "AD",
1423
+ Secondary: "G",
1424
+ },
1425
+ {
1426
+ Team: "Snotling",
1427
+ Quantity: "0-2",
1428
+ Position: "Hoppa",
1429
+ Keywords: "Snotling, Special",
1430
+ Cost: "20k",
1431
+ Stats: "613+4+6+",
1432
+ Skills: "Dodge, Pogo, Right Stuff, Sidestep, Stunty",
1433
+ Primary: "AD",
1434
+ Secondary: "G",
1435
+ },
1436
+ {
1437
+ Team: "Snotling",
1438
+ Quantity: "0-2",
1439
+ Position: "Runna",
1440
+ Keywords: "Runner, Snotling",
1441
+ Cost: "20k",
1442
+ Stats: "613+4+6+",
1443
+ Skills: "Dodge, Right Stuff, Sidestep, Sprint, Stunty",
1444
+ Primary: "AD",
1445
+ Secondary: "G",
1446
+ },
1447
+ {
1448
+ Team: "Snotling",
1449
+ Quantity: "0-2",
1450
+ Position: "Flinga",
1451
+ Keywords: "Snotling, Special",
1452
+ Cost: "30k",
1453
+ Stats: "513+4+6+",
1454
+ Skills:
1455
+ "Bombardier, Dodge, Right Stuff, Secret Weapon, Sidestep, Stunty, Titchy",
1456
+ Primary: "ADP",
1457
+ Secondary: "G",
1458
+ },
1459
+ {
1460
+ Team: "Snotling",
1461
+ Quantity: "0-2",
1462
+ Position: "Pump Wagon",
1463
+ Keywords: "Big Guy, Snotling, Special",
1464
+ Cost: "100k",
1465
+ Stats: "555+6+9+",
1466
+ Skills: "Dirty Player, Juggernaut, Mighty Blow, Really Stupid, Stand Firm",
1467
+ Primary: "DS",
1468
+ Secondary: "AG",
1469
+ },
1470
+ {
1471
+ Team: "Snotling",
1472
+ Quantity: "0-2",
1473
+ Position: "Troll",
1474
+ Keywords: "Big Guy, Troll",
1475
+ Cost: "115k",
1476
+ Stats: "455+5+10+",
1477
+ Skills:
1478
+ "Always Hungry, Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
1479
+ Primary: "S",
1480
+ Secondary: "AGP",
1481
+ },
1482
+ {
1483
+ Team: "Tomb King",
1484
+ Quantity: "0-16",
1485
+ Position: "Lineman",
1486
+ Keywords: "Human, Lineman, Skeleton, Undead",
1487
+ Cost: "40k",
1488
+ Stats: "534+6+8+",
1489
+ Skills: "Regeneration, Thick Skull",
1490
+ Primary: "G",
1491
+ Secondary: "ADS",
1492
+ },
1493
+ {
1494
+ Team: "Tomb King",
1495
+ Quantity: "0-2",
1496
+ Position: "Thrower",
1497
+ Keywords: "Human, Skeleton, Thrower, Undead",
1498
+ Cost: "65k",
1499
+ Stats: "634+3+9+",
1500
+ Skills: "Pass, Regeneration, Sure Hands, Thick Skull",
1501
+ Primary: "GP",
1502
+ Secondary: "ADS",
1503
+ },
1504
+ {
1505
+ Team: "Tomb King",
1506
+ Quantity: "0-2",
1507
+ Position: "Blitzer",
1508
+ Keywords: "Blitzer, Human, Skeleton, Undead",
1509
+ Cost: "85k",
1510
+ Stats: "634+5+9+",
1511
+ Skills: "Block, Regeneration, Thick Skull",
1512
+ Primary: "GS",
1513
+ Secondary: "AD",
1514
+ },
1515
+ {
1516
+ Team: "Tomb King",
1517
+ Quantity: "0-4",
1518
+ Position: "Tomb Guardian",
1519
+ Keywords: "Big Guy, Blocker, Human, Undead",
1520
+ Cost: "115k",
1521
+ Stats: "455+6+10+",
1522
+ Skills: "Brawler, Decay, Regeneration",
1523
+ Primary: "S",
1524
+ Secondary: "AG",
1525
+ },
1526
+ {
1527
+ Team: "Underworld Denizens",
1528
+ Quantity: "0-16",
1529
+ Position: "Goblin",
1530
+ Keywords: "Goblin, Lineman",
1531
+ Cost: "40k",
1532
+ Stats: "623+4+8+",
1533
+ Skills: "Dodge, Right Stuff, Stunty",
1534
+ Primary: "ADM",
1535
+ Secondary: "GPS",
1536
+ },
1537
+ {
1538
+ Team: "Underworld Denizens",
1539
+ Quantity: "0-6",
1540
+ Position: "Snotling",
1541
+ Keywords: "Lineman, Snotling",
1542
+ Cost: "15k",
1543
+ Stats: "513+4+6+",
1544
+ Skills: "Dodge, Insignificant, Right Stuff, Sidestep, Stunty, Titchy",
1545
+ Primary: "ADM",
1546
+ Secondary: "G",
1547
+ },
1548
+ {
1549
+ Team: "Underworld Denizens",
1550
+ Quantity: "0-3",
1551
+ Position: "Clanrat",
1552
+ Keywords: "Lineman, Skaven",
1553
+ Cost: "50k",
1554
+ Stats: "733+4+8+",
1555
+ Skills: "Animosity (Goblin)",
1556
+ Primary: "DGM",
1557
+ Secondary: "AS",
1558
+ },
1559
+ {
1560
+ Team: "Underworld Denizens",
1561
+ Quantity: "0-1",
1562
+ Position: "Thrower",
1563
+ Keywords: "Skaven, Thrower",
1564
+ Cost: "80k",
1565
+ Stats: "733+2+8+",
1566
+ Skills: "Animosity (Goblin), Pass, Sure Hands",
1567
+ Primary: "GMP",
1568
+ Secondary: "ADS",
1569
+ },
1570
+ {
1571
+ Team: "Underworld Denizens",
1572
+ Quantity: "0-1",
1573
+ Position: "Gutter",
1574
+ Keywords: "Runner, Skaven",
1575
+ Cost: "85k",
1576
+ Stats: "922+4+8+",
1577
+ Skills: "Animosity (Goblin), Dodge, Stab",
1578
+ Primary: "ADGM",
1579
+ Secondary: "S",
1580
+ },
1581
+ {
1582
+ Team: "Underworld Denizens",
1583
+ Quantity: "0-1",
1584
+ Position: "Blitzer",
1585
+ Keywords: "Blitzer, Skaven",
1586
+ Cost: "90k",
1587
+ Stats: "833+4+9+",
1588
+ Skills: "Animosity (Goblin), Block, Strip Ball",
1589
+ Primary: "GMS",
1590
+ Secondary: "AD",
1591
+ },
1592
+ {
1593
+ Team: "Underworld Denizens",
1594
+ Quantity: "0-1",
1595
+ Position: "Troll",
1596
+ Keywords: "Big Guy, Troll",
1597
+ Cost: "115k",
1598
+ Stats: "455+5+10+",
1599
+ Skills:
1600
+ "Always Hungry, Loner (4+), Mighty Blow, Projectile Vomit, Really Stupid, Regeneration, Throw Team-mate",
1601
+ Primary: "MS",
1602
+ Secondary: "AGP",
1603
+ },
1604
+ {
1605
+ Team: "Underworld Denizens",
1606
+ Quantity: "0-1",
1607
+ Position: "Rat Ogre",
1608
+ Keywords: "Big Guy, Skaven",
1609
+ Cost: "150k",
1610
+ Stats: "654+6+9+",
1611
+ Skills: "Animal Savagery, Frenzy, Loner (4+), Mighty Blow, Prehensile Tail",
1612
+ Primary: "MS",
1613
+ Secondary: "AG",
1614
+ },
1615
+ {
1616
+ Team: "Vampire",
1617
+ Quantity: "0-16",
1618
+ Position: "Thrall",
1619
+ Keywords: "Human, Lineman, Thrall",
1620
+ Cost: "40k",
1621
+ Stats: "633+4+8+",
1622
+ Skills: "",
1623
+ Primary: "G",
1624
+ Secondary: "AS",
1625
+ },
1626
+ {
1627
+ Team: "Vampire",
1628
+ Quantity: "0-2",
1629
+ Position: "Runner",
1630
+ Keywords: "Runner, Undead, Vampire",
1631
+ Cost: "100k",
1632
+ Stats: "832+3+8+",
1633
+ Skills: "Bloodlust (2+), Hypnotic Gaze, Regeneration",
1634
+ Primary: "AG",
1635
+ Secondary: "PS",
1636
+ },
1637
+ {
1638
+ Team: "Vampire",
1639
+ Quantity: "0-2",
1640
+ Position: "Thrower",
1641
+ Keywords: "Thrower, Undead, Vampire",
1642
+ Cost: "110k",
1643
+ Stats: "642+2+9+",
1644
+ Skills: "Bloodlust (2+), Hypnotic Gaze, Pass, Regeneration",
1645
+ Primary: "AGP",
1646
+ Secondary: "S",
1647
+ },
1648
+ {
1649
+ Team: "Vampire",
1650
+ Quantity: "0-2",
1651
+ Position: "Blitzer",
1652
+ Keywords: "Blitzer, Undead, Vampire",
1653
+ Cost: "110k",
1654
+ Stats: "642+4+9+",
1655
+ Skills: "Bloodlust (3+), Hypnotic Gaze, Juggernaut, Regeneration",
1656
+ Primary: "AGS",
1657
+ Secondary: "",
1658
+ },
1659
+ {
1660
+ Team: "Vampire",
1661
+ Quantity: "0-1",
1662
+ Position: "Vargheist",
1663
+ Keywords: "Big Guy, Undead, Vampire",
1664
+ Cost: "150k",
1665
+ Stats: "554+6+10+",
1666
+ Skills: "Bloodlust (3+), Claws, Frenzy, Loner (4+), Regeneration",
1667
+ Primary: "S",
1668
+ Secondary: "AG",
1669
+ },
1670
+ {
1671
+ Team: "Wood Elf",
1672
+ Quantity: "0-16",
1673
+ Position: "Lineman",
1674
+ Keywords: "Elf, Lineman",
1675
+ Cost: "65k",
1676
+ Stats: "732+3+8+",
1677
+ Skills: "",
1678
+ Primary: "AG",
1679
+ Secondary: "S",
1680
+ },
1681
+ {
1682
+ Team: "Wood Elf",
1683
+ Quantity: "0-2",
1684
+ Position: "Thrower",
1685
+ Keywords: "Elf, Thrower",
1686
+ Cost: "85k",
1687
+ Stats: "732+2+8+",
1688
+ Skills: "Pass, Safe Pair of Hands",
1689
+ Primary: "AGP",
1690
+ Secondary: "S",
1691
+ },
1692
+ {
1693
+ Team: "Wood Elf",
1694
+ Quantity: "0-2",
1695
+ Position: "Catcher",
1696
+ Keywords: "Catcher, Elf",
1697
+ Cost: "90k",
1698
+ Stats: "822+3+8+",
1699
+ Skills: "Catch, Dodge, Sprint",
1700
+ Primary: "AG",
1701
+ Secondary: "PS",
1702
+ },
1703
+ {
1704
+ Team: "Wood Elf",
1705
+ Quantity: "0-2",
1706
+ Position: "Wardancer",
1707
+ Keywords: "Blitzer, Elf",
1708
+ Cost: "130k",
1709
+ Stats: "832+3+8+",
1710
+ Skills: "Block, Dodge, Leap",
1711
+ Primary: "AG",
1712
+ Secondary: "PS",
1713
+ },
1714
+ {
1715
+ Team: "Wood Elf",
1716
+ Quantity: "0-1",
1717
+ Position: "Treeman",
1718
+ Keywords: "Big Guy, Treeman",
1719
+ Cost: "120k",
1720
+ Stats: "265+5+11+",
1721
+ Skills:
1722
+ "Loner (4+), Mighty Blow, Stand Firm, Strong Arm, Take Root, Thick Skull, Throw Team-mate",
1723
+ Primary: "S",
1724
+ Secondary: "AGP",
1725
+ },
1726
+ ] as const;