-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhe.json
2673 lines (2673 loc) · 95.2 KB
/
he.json
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"name": "Highborn Elves",
"translation": {
"fr": "Hautes Lignées Elfiques",
"cn": "高等精灵"
},
"short": "he",
"version": "2023",
"nrversion": 379,
"playable": 1,
"indicators": ["ancient_allies", "queens_bows", "bolt_throwers"],
"id": 7,
"include": [102],
"hereditary": [
{
"path": "hereditary",
"ref": "favour_meladys"
}
],
"reference_details": {
"army_general": "General",
"army_bsb": "Battle Standard",
"wizard": "Wizard",
"wizardApprentice": "Wizard Apprentice",
"wizardAdept": "Wizard Adept",
"wizardMaster": "Wizard Master",
"mount": "Mount",
"weaponEnchantUni": "Weapon Enchant",
"dominant": "Dominant",
"core_unit": "Core Unit",
"queens_companion": "Queen's Companion",
"royal_huntsman": "Royal Huntsman",
"fleet_officer": "Fleet Officer",
"queens_cavalier": "Queen's Cavalier",
"mountDragon": "Dragon or Ancient Dragon",
"elven_horse_mount": "Elven Horse",
"dragon_army": "Queen's Cavalier with Height 5",
"ancient_allies": "Ancient Allies",
"bolt_throwers": "Bolt Throwers",
"queens_bows": "Queen's Bows",
"sea_guard_reaper_or_sky_sloop": "Sky Sloop or Sea Guard Reaper"
},
"dictionnary": [
{
"refs": ["potions_and_scrolls"],
"options": [
{
"name": "Scroll of Power",
"cost": 20,
"option_id": "vo95gv94z5kinhtsplpen",
"type": "check",
"shared": true
},
{
"type": "check",
"refs": ["scroll_pearl_thrne"],
"armyHasNotOption": ["scroll_pearl_thrne"],
"name": "Scroll of the Pearl Throne",
"cost": 30,
"description": "\tChoose a Magic Item from an enemy unit that is in contact with the bearer. This Magic Item is ignored.\t\t<br><br>\t<i>If it was an Enchanted Weapon or Shield, the mundane effects of the Weapon or Shield can still be used</i>.<br>",
"option_id": "mccp4vc0dv1dsdarivmhib4nj"
}
]
},
{
"refs": ["shieldEnchant"],
"options": [
{
"name": "Sigil of Protection",
"cost": 15,
"option_id": "0wb9xn2aq5exp2lbygna",
"type": "check",
"shared": true
},
{
"name": "Dusk Forged",
"cost": 55,
"option_id": "f75ehm9v0zv3ks9db8ft1n",
"type": "check",
"shared": true
}
],
"option_id": "jsg1ky1eezdx67ucpsabf"
},
{
"refs": ["armourEnchant"],
"options": [
{
"type": "check",
"refs": ["be_he_demonbane"],
"armyHasNotOption": ["be_he_demonbane"],
"name": "Daemon's Bane",
"cost": 20,
"description": "\t+2 Arm against <span class=\"textbf\">Magical Attacks</span>.<br>",
"option_id": "mccp4vc0dv1rivmhib4nj"
},
{
"type": "check",
"refs": ["be_he_metally"],
"armyHasNotOption": ["be_he_metally"],
"name": "Star Metal Alloy",
"cost": 80,
"description": "\t+1 Arm, which is improved to +2 Arm for models without Mount. The bearer can <span class=\"textbf\">never</span> be wounded on a roll better than 3+.<br>",
"option_id": "jg2zren397hqi4189m1s2"
},
{
"name": "Ghostly Guard",
"cost": 30,
"option_id": "lz9dfq74ixm08sajxl7lgbm",
"type": "check",
"shared": true
},
{
"hasNotOption": ["mount"],
"type": "check",
"refs": ["ae_he_dorcprot"],
"armyHasNotOption": ["ae_he_dorcprot"],
"name": "Protection of Dorac",
"cost": 50,
"description": "\t+3 Arm, +3 Def, and <span class=\"textbf\">Attached</span>. Arm can <span class=\"textbf\">never</span> be improved beyond 5. <br>",
"option_id": "witofkc3psrhnnu14bstl"
},
{
"hasOption": [
{
"refs": ["mage"],
"amount": 1
},
{
"refs": ["light_troops", "elven_horse_mount", "giant_eagle_mount"]
}
],
"type": "check",
"refs": ["lae_he_gleamrobe"],
"armyHasNotOption": ["lae_he_gleamrobe"],
"name": "Gleaming Robe",
"cost": 60,
"description": "\t<span class=\"textbf\">Aegis(3+)</span>. Armour is <span class=\"textbf\">set</span> to 1 and can <span class=\"textbf\">never</span> be improved beyond this. If the wearer Miscasts and rolls <span class=\"textbf\">Witchfire</span>, the number of hits is halved (rounding fractions up) for the wearer and its unit.<br>",
"option_id": "tb9adb4b5jdui4aplc4hn"
}
],
"option_id": "dtly4xbft599iskeddostw"
},
{
"refs": ["halberdEnchant", "greatWeaponEnchant"],
"options": [
{
"name": "Elemental Blade",
"type": "check",
"refs": ["elemental_blade", "weaponEnchantUni"],
"armyHasNotOption": ["we_he_elemental_blade"],
"hasNotOption": ["weaponEnchantUni"],
"cost": 60,
"description": "\t+1 Att, +1 Str. When Choosing Equipment and Abilities, choose to gain either Flaming Attacks, Lightning Attacks. The effects last until the end of the Round of Combat.<br>",
"option_id": "4o25h0yqvrqo0fujw6ej79"
}
]
},
{
"refs": ["bannerEnchant"],
"options": [
{
"type": "check",
"refs": ["be_he_navigator"],
"armyHasNotOption": ["be_he_navigator"],
"name": "Navigator's Banner",
"cost": 50,
"description": "\tThe bearer's unit gains <span class=\"textbf\">First Strike(Aegis(5+))</span>.<br>",
"option_id": "ttwbrn69c9erw067rkm8e"
},
{
"type": "check",
"refs": ["be_he_becalm"],
"armyHasNotOption": ["be_he_becalm"],
"hasNotOption": ["core_unit"],
"name": "Banner of Becalming",
"cost": 40,
"description": "\tIn each of the opponent's Magic Phases, immediately after Excess Magic the opponent must discard 1 Magic Dice <br>",
"option_id": "25emuhapfmfvqscsopeb5"
},
{
"type": "check",
"refs": ["be_he_ryma"],
"armyHasNotOption": [
{
"refs": ["be_he_ryma"],
"amount": 2
}
],
"name": "War Banner of Rymâ",
"cost": 60,
"description": "\tA unit with one or more War Banners of Rymâ gains +1\" Cha and Rank-and-File model parts with Elf in the bearer's unit gain <span class=\"textbf\">Devastating Charge(+1 Str)</span>.<br>",
"option_id": "x8vq4xntlvga8jro3vrj2"
},
{
"name": "Distortion Emblem",
"cost": 50,
"option_id": "v0dkrtnka7ppkzn2pf9a",
"type": "check",
"shared": true
}
],
"option_id": "wg723djz45evum77m5eqn"
},
{
"refs": ["weaponEnchant"],
"options": [
{
"name": "Eldritch Inscriptions",
"cost": 30,
"option_id": "yovi4xwszxiy6niokset3k",
"type": "check",
"shared": true
},
{
"name": "Supernatural Dexterity",
"cost": 30,
"option_id": "o5opzcpw5glp309c1hies",
"type": "check",
"shared": true
}
],
"option_id": "6rxax6ow5yy18fz53hv2lv"
},
{
"refs": ["lanceEnchant"],
"options": [
{
"type": "check",
"name": "Nova Flare",
"cost": 95,
"armyHasNotOption": ["we_he_nova_flare"],
"refs": ["weaponEnchantUni", "we_he_nova_flare"],
"hasNotOption": ["weaponEnchantUni"],
"description": "Devastating Charge(+1 Att), Lethal Strike, Divine Attacks.\t<br><br>One use only. May be activated when choosing equipment and abilities in the Melee Phase. The wielder counts as Charging for the purpose of <span class=\"textbf\">Devastating Charge</span>.<br>",
"option_id": "4tdec81m1t3ek1oalxz0v9"
}
],
"option_id": "6vp46oxv473kyhv5m2zxrh"
},
{
"refs": ["spearEnchant"],
"options": [
{
"type": "check",
"name": "Sliver of the Blazing Dawn",
"cost": 100,
"armyHasNotOption": ["we_he_silver_blaze_dawn"],
"refs": ["weaponEnchantUni", "we_he_silver_blaze_dawn"],
"hasNotOption": ["weaponEnchantUni"],
"description": "\t+1 Str and +2 AP. Each successful to-hit roll with this weapon causes two hits instead of one.<br>",
"option_id": "no5u10n70s96kpwl7ooi9h"
}
],
"option_id": "kvhby719vh7j2ntsqj9o5"
},
{
"refs": ["longbowEnchant"],
"options": [
{
"type": "check",
"name": "Elu's Heartwood",
"cost": 75,
"armyHasNotOption": ["we_he_elus_heart"],
"refs": ["weaponEnchantUni", "we_he_elus_heart", { "ref": "queens_bows", "amount": 5 }],
"hasNotOption": ["weaponEnchantUni"],
"description": "\tShots 3, Str as user +1, and AP as user +1.<br>",
"option_id": "6tbdq3x7ggmgzuowaqxy18"
}
],
"option_id": "kycca2o3u6224xoobiq5j"
},
{
"refs": ["handWeaponEnchant"],
"options": [],
"option_id": "41dfqpi9yhcvryy8984t5a"
},
{
"refs": ["artefact"],
"options": [
{
"type": "check",
"name": "Book of Meladys",
"cost": 60,
"armyHasNotOption": ["art_he_meladys"],
"refs": ["art_he_meladys", "dominant"],
"description": "\tThe first time in each Magic Phase that the bearer fails a Casting Roll for a Learned Spell cast with two or three Magic Dice, the bearer may reroll all Magic Dice from this Casting Roll.\n",
"option_id": "ykn689uouxlhwso08fne8"
},
{
"type": "check",
"name": "Diadem of Protection",
"cost": 80,
"armyHasNotOption": ["art_he_diadem"],
"refs": ["art_he_diadem"],
"description": "\t<span class=\"textbf\">Aegis(+2, max 4+)</span>.<br>",
"option_id": "qjqnpbhzwik9xqjnecsr88"
},
{
"type": "check",
"name": "Amethyst Crystal",
"cost": 60,
"hasOption": ["wizard"],
"refs": ["art_he_amecrys"],
"armyHasNotOption": ["art_he_amecrys"],
"description": "\tUnless Shaken: Dispelling Rolls made by the bearer's army gain a +1 modifier. If the target of an enemy spell is within 18\" of the bearer, the modifier is increased to +2.<br>",
"option_id": "sxhmenal9xbhx17uial30r"
},
{
"name": "Rod of Battle",
"cost": 25,
"option_id": "bm51uo3zbmtyia0vxpx2aq",
"type": "check",
"shared": true
},
{
"name": "Essence of a Free Mind",
"cost": 25,
"option_id": "je3g9gc0kfbu8pzckwie7",
"type": "check",
"shared": true
},
{
"name": "Obsidian Rock",
"cost": 25,
"option_id": "n5fj1neakniwkdc7b7jhnc",
"type": "check",
"shared": true
}
],
"option_id": "prkvvi54qlp6gfiamxygu5"
},
{
"refs": ["honourMage"],
"options": [
{
"type": "check",
"name": "Asfad Scholar",
"hasOption": ["wizardMaster"],
"cost": 60,
"description": "\tThe model gains <span class=\"textbf\">Channel(1)</span>. The Range of the Wizard's Learned Spells is increased by 6\". Aura spells gain +3\" Range instead, and spells with type Caster are unaffected.<br>",
"option_id": "1m3l1g1sss13v4puohy5yn",
"refs": ["asfal_scholar"],
"armyHasNotOption": [
{
"refs": ["asfal_scholar"],
"amount": 1
}
]
},
{
"type": "check",
"name": "Order of the Fiery Heart",
"refs": ["fiery_order", "tag_Metal Armour"],
"cost": 20,
"description": "\tThe model gains <span class=\"textbf\">Flaming Attacks</span>, Metal Armour, and the model part's Arm is <span class=\"textbf\">set</span> to 2.\t<br>\n\tThe model replaces its available Paths of Magic with Alchemy, Pyromancy, and ignores the Missile, Damage spell types for Learned Spells when targeting units that are Engaged in Combat with the model.<br>",
"option_id": "9jcefl5fu94ha7sdlla6lu",
"armyHasNotOption": [
{
"refs": ["fiery_order"],
"amount": 2
}
]
}
],
"option_id": "2ju9e35cc3bkbl3089a1ug"
},
{
"refs": ["honourPrince", "honourCommander"],
"options": [
{
"type": "check",
"name": "Master of Canreig Tower",
"refs": ["master_canreig", "wizard", "protean_magic"],
"hasOption": [
{
"refs": ["light_troops", "elven_horse_mount", "giant_eagle_mount"],
"amount": 1
}
],
"neverHide": true,
"hasNotOption": ["longbow"],
"magic": {
"amount": 3,
"spells": [
{
"path": "hereditary",
"ref": "favour_meladys"
},
{
"path": "alchemy",
"ref": "molten_copper"
},
{
"path": "cosmology",
"ref": "weal_and_woe"
},
{
"path": "druidism",
"ref": "fountain_of_youth"
},
{
"path": "evocation",
"ref": "whispers_of_the_veil"
},
{
"path": "shamanism",
"ref": "predator's_instinct"
},
{
"path": "witchcraft",
"ref": "evil_eye"
}
]
},
"cost": 150,
"description": "\tThe model gains Master of Spellcrafting, Protean Magic(3), Wizard Apprentice.\t<br><br>\tThe model has these Paths of Magic available: Alchemy, Cosmology, Druidism, Evocation, Shamanism, Witchcraft.<br>",
"armyHasNotOption": [
{
"refs": ["master_canreig"],
"amount": 2
}
],
"option_id": "487iq3ve3wn2o3l9p159wt"
},
{
"type": "check",
"name": "High Warden of the Flame",
"refs": ["high_warden"],
"neverHide": true,
"armyHasNotOption": [
{
"refs": ["high_warden"],
"amount": 2
}
],
"cost": 80,
"description": "\tThe model gains Aegis(4+), Fearless, , Stubborn.<br>",
"option_id": "43askmoaubk7udbo1yf0uy",
"hasOption": [
{
"refs": ["light_troops"],
"amount": 1
},
{
"refs": ["halberd"],
"amount": 1
}
]
},
{
"type": "check",
"name": "Fleet Officer",
"refs": ["fleet_officer"],
"neverHide": true,
"hasOption": [
{
"refs": ["light_troops", "giant_eagle_mount", "griffon_mount", "sky_sloop"],
"amount": 1
}
],
"armyHasNotOption": [
{
"refs": ["fleet_officer"],
"amount": 2
}
],
"cost": 25,
"description": "The model gains Strider(Water), , , Resolute(1). The model part also gains <span class=\"textbf\">Lightning Attacks</span> and, if using a Longbow, <span class=\"textbf\">Stand and Shoot</span>.\t<br><br>\tUnless the model is Shaken, Panic Tests taken by friendly units containing Elf within 12\" of this model are <span class=\"textbf\">Minimised</span>..<br>",
"option_id": "o4fowkum7prxdgs4lpv2ef"
},
{
"type": "check",
"name": "Grandmaster of the Sword",
"refs": ["grandmaster_of_the_sword"],
"neverHide": true,
"armyHasNotOption": [
{
"refs": ["grandmaster_of_the_sword"],
"amount": 2
}
],
"cost": 20,
"description": "\tThe model gains , Lethal Strike, First Strike(+1 Def, +1 Off), Sword Sworn .<br>",
"option_id": "fgsdgg32g32f32fd32gf342gf42",
"hasOption": [
{
"refs": ["light_troops"],
"amount": 1
},
{
"refs": ["great_weapon"],
"amount": 1
}
]
},
{
"type": "check",
"name": "Royal Huntsman",
"refs": ["royal_huntsman"],
"neverHide": true,
"armyHasNotOption": [
{
"refs": ["royal_huntsman"],
"amount": 2
}
],
"cost": 25,
"description": "\tThe model <span class=\"textbf\">must</span> take Great Weapon and cannot take <span class=\"textbf\">Shield</span>.The model gains Lion's Fur, Valiant, and the model part gains <span class=\"textbf\">Multiple Wounds(2, towards Height 4--5)</span>.<br>",
"option_id": "bvzolc1uk9aj534a9xcak",
"hasOption": [
{
"refs": ["light_troops", "lion_chariot_mount"],
"amount": 1
}
],
"override": [
{
"hasOption": [
{
"refs": ["light_troops"],
"amount": 1
}
],
"options": {
"hasOption": [
{
"refs": ["great_weapon"],
"amount": 1
}
]
}
}
]
},
{
"type": "check",
"name": "Queen's Cavalier",
"refs": ["queens_cavalier"],
"neverHide": true,
"armyHasNotOption": [
{
"refs": ["queens_cavalier"],
"amount": 2
}
],
"cost": 25,
"description": "\tThe model part gains <span class=\"textbf\">First Strike(+1 Att, +1 Off)</span>, and the model's unit may reroll failed Charge Range rolls.\t<br><br>\tIf the model has Height 5, Dragons (both Regal and Ancient) replace their Ancient Allies value with <span class=\"textbf\">Ancient Allies(1)</span>, and Phoenixes replace it with <span class=\"textbf\">Ancient Allies(2)</span>.<br>",
"hasOption": [
{
"refs": ["elven_horse_mount", "mountDragon"],
"amount": 1
},
{
"refs": ["lance"],
"amount": 1
}
],
"override": [
{
"hasOption": [
{
"refs": ["mountDragon"],
"amount": 1
}
],
"push": {
"refs": ["dragon_army"]
}
}
],
"option_id": "lqdrb8zvjy89cor4o74uk"
},
{
"type": "check",
"name": "Queen's Companion",
"refs": ["queens_companion", { "ref": "queens_bows", "amount": 4 }],
"neverHide": true,
"cost": 15,
"armyHasNotOption": [
{
"refs": ["queens_companion"],
"amount": 2
}
],
"description": "\tThe model's Longbow Shots are <span class=\"textbf\">set</span> to 3 and the model's unit gains <span class=\"textbf\">Accurate</span>.\t<br><br>\t<span class=\"textbf\">Must</span> choose (one option only):\t<br/> •Fae Miasma, Scout,\n\t<br> Exclusive(Grey Watchers): free\n\t<br/> •Moonlight Arrows: 10\t<br>",
"maxSize": 1,
"minSize": 1,
"optionsLabel": "Options",
"options": [
{
"type": "check",
"cost": 10,
"name": "Moonlight Arrows",
"option_id": "tic7hct2yklxpzyg9zf2b"
},
{
"type": "check",
"cost": 0,
"name": "Fae Miasma, Scout, Exclusive (Grey Watchers)",
"option_id": "95y10nd4l0upmswkgtuv7b"
}
],
"option_id": "2g0ba3yqbxu89ipnxvg56r",
"hasOption": [
{
"refs": ["longbow"],
"amount": 1
},
{
"refs": ["light_troops"],
"amount": 1
}
]
}
],
"option_id": "4drjmnbiweu2aim4rxie94"
}
],
"army": [
{
"name": "Army",
"optionsLabel": "Categories",
"maxCost": 4500,
"armyHasNotOption": [
{
"refs": ["ancient_allies"],
"amount": 1,
"perPoints": 1500
},
{
"refs": ["queens_bows"],
"amount": 10,
"perPoints": 750
},
{
"refs": ["bolt_throwers"],
"amount": 1,
"perPoints": 1500
}
],
"options": [
{
"name": "Characters",
"refs": ["perso"],
"optionsLabel": "Units",
"maxPercent": 0.4,
"options": [
{
"refs": ["prince", "tag_Elf", "tag_Metal Armour"],
"name": "High Prince",
"cost": 210,
"options": [
{
"type": "group",
"option_id": "dfn17dl33ypboq374a6ibj",
"name": "Leadership",
"optionsLabel": "Leadership",
"options": [
{
"type": "check",
"name": "General",
"cost": 0,
"refs": ["army_general"],
"armyHasNotOption": ["army_general"],
"option_id": "1n8o3p6dal1f6yn6uhp6n6"
}
],
"maxSize": 1
},
{
"type": "group",
"optionsLabel": "Honour",
"maxSize": 1,
"collapsible": true,
"options": [],
"optionsDict": ["honourPrince"],
"option_id": "wdvs41bz63bb9baukai6ng"
},
{
"type": "group",
"optionsLabel": "Mount",
"collapsible": true,
"maxSize": 1,
"minSize": 1,
"options": [
{
"name": "Light Troops",
"type": "check",
"option_id": "rief6cnav8lva54tltkaab",
"cost": 0,
"refs": ["light_troops"]
},
{
"type": "check",
"cost": 35,
"name": "Elven Horse",
"refopt": "he_elven_horse_mount",
"option_id": "vh65q7szafggd8pyzop4fk"
},
{
"type": "check",
"name": "Giant Eagle",
"cost": 150,
"refopt": "giant_eagle_mount",
"option_id": "h8v761x74m4uayk1ne4t3"
},
{
"type": "check",
"cost": 35,
"name": "Reaver Chariot",
"refopt": "reaver_chariot_mount",
"option_id": "jw99diqul5kt8ntp2k2ip"
},
{
"type": "check",
"name": "Griffon",
"cost": 270,
"refopt": "griffon_mount",
"option_id": "12t0q6o21yqhawyh7w2ynfl",
"maxUnitCost": 700
},
{
"type": "check",
"name": "Sky Sloop",
"cost": 210,
"options": [],
"refopt": "sky_sloop_mount",
"option_id": "o1r0tqkbbei7k7tocjw7uv",
"maxUnitCost": 700
},
{
"type": "check",
"refopt": "lion_chariot_mount",
"name": "Lion Chariot",
"cost": 130,
"option_id": "47ax1yjehhj9u6kzwvcuyd",
"maxUnitCost": 700
},
{
"type": "check",
"name": "Regal Dragon",
"cost": 400,
"refopt": "regal_dragon_mount",
"option_id": "p2xyb49n7ohcwjgjw32bt",
"maxUnitCost": 800
},
{
"type": "check",
"name": "Ancient Dragon",
"cost": 520,
"refopt": "ancient_dragon_mount",
"option_id": "5elp5t6vp6cd3445m1nse4",
"maxUnitCost": 900
}
],
"option_id": "y6hrcb964h3p7ce0k9fi8"
},
{
"type": "group",
"optionsLabel": "Equipment",
"leafMaxCost": 200,
"collapsible": true,
"options": [
{
"type": "check",
"name": "Shield",
"cost": 5,
"optionsLabel": "Shield Enchant",
"maxSize": 1,
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["shieldEnchant"],
"option_id": "cx4bm7x9orgpyqvxj6p0n",
"hasNotOption": ["high_warden"]
},
{
"type": "check",
"name": "Dragonforged Armour",
"cost": 20,
"options": [],
"option_id": "78hb43fdhnj6ik67p;545gh543",
"ignoreCost": true
},
{
"type": "check",
"name": "Longbow (0+)",
"cost": 5,
"options": [],
"maxSize": 1,
"optionsLabel": "Bow Enchant",
"optionsDict": ["longbowEnchant"],
"option_id": "0600xsz87uuexeee9b3g6pj",
"refs": ["longbow", "queens_bows"]
},
{
"type": "group",
"option_id": "xssg7bnn5l71xllu0b8s",
"optionsLabel": "Armour Enchant",
"optionsDict": ["armourEnchant"],
"maxSize": 1,
"sortOptions": true,
"collapsible": true,
"options": []
},
{
"type": "group",
"name": "Close Combat Weapon",
"collapsible": true,
"optionsLabel": "Close Combat Weapon",
"maxSize": 1,
"options": [
{
"type": "check",
"name": "Light Lance",
"cost": 5,
"maxSize": 1,
"hasOption": ["mount"],
"optionsLabel": "Light Lance Enchant",
"optionsSuffix": " (Light Lance)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant"],
"option_id": "w9dzxbjzlj832fy1bwg0ro"
},
{
"type": "check",
"name": "Paired Weapons",
"cost": 5,
"maxSize": 1,
"optionsLabel": "Paired Weapons Enchant",
"optionsSuffix": " (Paired Weapons)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant", "pairedWeaponsEnchant"],
"option_id": "dwywpwx3f17ebfs5xiyiqp"
},
{
"type": "check",
"name": "Spear",
"refs": ["spear"],
"cost": 15,
"maxSize": 1,
"optionsLabel": "Spear Enchant",
"optionsSuffix": " (Spear)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant", "spearEnchant"],
"option_id": "59zk8ndmkxbbxqvvf6ef1r",
"hasNotOption": ["mount"]
},
{
"type": "check",
"name": "Great Weapon and Elven Finesse",
"cost": 15,
"maxSize": 1,
"refs": ["great_weapon"],
"optionsLabel": "Great Weapon Enchant",
"optionsSuffix": " (Great Weapon)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant", "greatWeaponEnchant"],
"option_id": "qleimm76turar5dqbtvx74"
},
{
"type": "check",
"name": "Halberd",
"refs": ["halberd"],
"cost": 10,
"maxSize": 1,
"optionsLabel": "Halberd Enchant",
"optionsSuffix": " (Halberd)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant", "halberdEnchant"],
"option_id": "nt0k59vitmfamjhk0hivhp"
},
{
"type": "check",
"name": "Lance",
"cost": 15,
"maxSize": 1,
"refs": ["lance"],
"hasOption": ["mount"],
"optionsLabel": "Lance Enchant",
"optionsSuffix": " (Lance)",
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["weaponEnchant", "lanceEnchant"],
"option_id": "jzznf6df8gdtlms6ua5lb"
}
],
"option_id": "hipyuhifxsptqg5ahi5xq"
},
{
"optionsLabel": "Hand Weapon Enchant",
"maxSize": 1,
"sortOptions": true,
"collapsible": true,
"optionsSuffix": " (Hand Weapon)",
"options": [],
"optionsDict": ["weaponEnchant", "handWeaponEnchant"],
"option_id": "6kn6s7zug47yoc3o0kxtq"
},
{
"type": "group",
"optionsLabel": "Artefact",
"maxSize": 1,
"sortOptions": true,
"collapsible": true,
"options": [],
"optionsDict": ["artefact"],
"option_id": "jsvivlxd79bjf3gvpfvjb"
},
{
"type": "group",
"option_id": "t27uxznnndo00zhg24zeo",
"name": "Potions and Scrolls",
"optionsLabel": "Potions and Scrolls",
"options": [],
"optionsDict": ["potions_and_scrolls"],
"maxSize": 1,
"sortOptions": true,
"collapsible": true
}
],
"option_id": "wvzvq73ztoymtr1unvwcb"
}
],
"unit_id": "high_prince",
"option_id": "rydim7dt7hq9rufz2wpn4l",
"logo": "character",
"maxUnitCost": 600
},
{
"refs": ["commander", "tag_Elf", "tag_Metal Armour"],
"name": "Commander",
"cost": 80,
"options": [
{
"type": "group",
"option_id": "hrtc4ijrfuefzgg186bked",
"name": "Leadership",
"optionsLabel": "Leadership",
"options": [
{
"name": "Captain and Attached",
"type": "check",
"cost": 0,
"option_id": "g34g432g43g34dsafewg34g34",
"refs": ["captain"]
},
{
"type": "check",
"name": "General",
"cost": 20,
"refs": ["army_general"],
"armyHasNotOption": ["army_general"],
"option_id": "w670p01oxne9k2pyd4w5w"
},
{
"option_id": "fewf32f32gf23g234g432g43",
"name": "Exclusive",
"type": "check",
"cost": 20,
"refs": ["exclusive"]
},
{
"name": "Battle Standard Bearer",
"type": "check",
"cost": 70,
"option_id": "3fgf32fg32g234g54",
"refs": ["army_bsb"],
"armyHasNotOption": ["army_bsb"]
}
],
"maxSize": 1,
"minSize": 1
},
{
"type": "group",
"optionsLabel": "Honour",
"maxSize": 1,
"collapsible": true,
"options": [],
"optionsDict": ["honourCommander"],
"option_id": "hzl7lmqkqqcglropbcvlpd"
},
{
"type": "group",
"optionsLabel": "Mount",
"collapsible": true,
"maxSize": 1,