forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOrder - Idoneth Deepkin - Data.cat
4333 lines (4328 loc) · 326 KB
/
Order - Idoneth Deepkin - Data.cat
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
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<catalogue id="b713-a274-2a46-fe02" name="Order - Idoneth Deepkin - Data" revision="59" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="113" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="0d25-2712-pubN65537" name="Order Battletome: Idoneth Deepkin"/>
<publication id="0d25-2712-pubN70885" name="GHB 2018 Errata, June 2018"/>
<publication id="0d25-2712-pubN77739" name="Battletome: ID Errata, June 2018"/>
<publication id="6737-0704-4a9d-8642" name="Battletome: Idoneth Deepkin Errata, July 2021"/>
</publications>
<profileTypes>
<profileType id="7534-9548-748f-9dcc" name="Leviadon Wounds">
<characteristicTypes>
<characteristicType id="db5c-69fe-9522-dcf5" name="Save"/>
<characteristicType id="4b7c-1211-95ee-17e8" name="Massive Scythed Fins"/>
<characteristicType id="92f7-df61-7c82-3206" name="Crushing Jaws"/>
</characteristicTypes>
</profileType>
<profileType id="ac0f-3fba-b82e-a9e8" name="Tides of Death">
<characteristicTypes>
<characteristicType id="41bf-1d9a-c900-4a55" name="Turn"/>
<characteristicType id="d0a7-be18-7209-6a57" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="d2bf-4e28-aa1f-c410" name="Isharann Rituals">
<characteristicTypes>
<characteristicType id="e939-5881-6512-499b" name="Effect"/>
</characteristicTypes>
</profileType>
<profileType id="af55-be3c-69fd-b6f5" name="Kraken Tooth - D6 Roll">
<characteristicTypes>
<characteristicType id="9878-bea0-9436-4b49" name="Effect"/>
</characteristicTypes>
</profileType>
</profileTypes>
<categoryEntries>
<categoryEntry id="8655-c77a-3e2c-77c2" name="LEVIADON" hidden="false"/>
<categoryEntry id="c354-2c53-977f-52c9" name="ALLOPEXES" hidden="false"/>
<categoryEntry id="25f7-abcc-9968-7f68" name="ISHLAEN GUARD" hidden="false"/>
<categoryEntry id="81ea-0a9d-661c-3b06" name="ASPECT OF THE STORM" hidden="false"/>
<categoryEntry id="76e7-bbb5-d24b-008b" name="AKHELIAN KING" hidden="false"/>
<categoryEntry id="c56e-7bfd-cd94-a349" name="ASPECT OF THE SEA" hidden="false"/>
<categoryEntry id="67e8-3fec-ae2e-387a" name="SOULRENDER" hidden="false"/>
<categoryEntry id="813c-f5d5-7de1-1313" name="SOULSCRYER" hidden="false"/>
<categoryEntry id="279a-89b7-13df-955c" name="TIDECASTER" hidden="false"/>
<categoryEntry id="4aa3-ffb5-6bf8-1425" name="LOTANN" hidden="false"/>
<categoryEntry id="c998-d992-b4d6-7540" name="REAVERS" hidden="false"/>
<categoryEntry id="4af9-6109-7e16-3228" name="THRALLS" hidden="false"/>
<categoryEntry id="2078-ffce-df80-59e3" name="VOLTURNOS" hidden="false"/>
<categoryEntry id="a9d6-dedd-e006-926c" name="MORRSARR GUARD" hidden="false"/>
<categoryEntry id="aff8-5fd2-754c-468d" name="EIDOLON" hidden="false"/>
<categoryEntry id="7308-657f-ed3f-68f4" name="AKHELIAN" hidden="false"/>
<categoryEntry id="d297-61a8-974f-1e19" name="ISHARANN" hidden="false"/>
<categoryEntry id="cd40-6b49-cd94-3021" name="NAMARTI" hidden="false"/>
<categoryEntry id="ebae-8e2f-a19d-2b0e" name="SOUL WARDEN" hidden="false"/>
<categoryEntry id="8ddf-086e-bbc7-590a" name="AKHELIAN GUARD" hidden="false"/>
<categoryEntry id="02c4-6611-d9d3-6737" name="GLOOMTIDE SHIPWRECK" hidden="false"/>
<categoryEntry id="94bd-d303-cdb6-9985" name="BRIOMIDAR" hidden="false"/>
<categoryEntry id="37d3-78e6-a763-e8e4" name="DHOM-HAIN" hidden="false"/>
<categoryEntry id="036d-0eb0-7b5f-1e33" name="FUETHAN" hidden="false"/>
<categoryEntry id="7d6b-20c2-e209-d69e" name="IONRACH" hidden="false"/>
<categoryEntry id="2900-4cc3-0ac7-2afb" name="MOR'PHAN" hidden="false"/>
<categoryEntry id="c131-28a2-ee27-cc6e" name="NAUTILAR" hidden="false"/>
<categoryEntry id="af9f-f5e0-1ae5-9c03" name="DRYAD" hidden="false"/>
<categoryEntry id="d068-980d-1c72-ce5d" name="TREELORD ANCIENT" hidden="false"/>
<categoryEntry id="4fc4-6477-589d-8faf" name="BRANCHWYCH" hidden="false"/>
<categoryEntry id="1d48-f95f-3dbd-95c4" name="ELATHAIN ILL-FATED" hidden="false"/>
<categoryEntry id="38c6-f2ff-618f-807b" name="ELATHAIN'S SOULRAID" hidden="false"/>
</categoryEntries>
<sharedSelectionEntries>
<selectionEntry id="e2ee-2634-4e4c-6340" name="Allegiance" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="0bf4-2758-5f9d-84ad" value="0.0">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d4ef-da99-a436-99bc" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="0bf4-2758-5f9d-84ad" type="min"/>
</constraints>
<selectionEntryGroups>
<selectionEntryGroup id="3d08-1ef7-fa6e-41e3" name="Allegiance" hidden="false" collective="false" import="true" defaultSelectionEntryId="488b-4b28-f4b7-0557">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1ed7-6b7c-3485-c313" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1e05-803f-acb1-26a4" type="min"/>
</constraints>
<selectionEntries>
<selectionEntry id="488b-4b28-f4b7-0557" name="Idoneth Deepkin" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="6414-7a4a-1169-ee80" name="Isharann Rituals" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">ISHARANN HEROES from an Idoneth Deepkin army can perform the following Isharann rituals in your hero phase. A maximum of one Isharann ritual can be performed in each hero phase. In order to perform a ritual, at the start of your hero phase, say which ritual is being performed and then pick one ISHARANN HERO from your army that is more than 9" from any enemy models. Then roll 2D6. Add 1 to the roll if the HERO performing the ritual is within 1" of a Gloomtide Shipwreck, and add a further 1 to the roll if they are a PRIEST. In addition, add 1 to the roll for each other friendly ISHARANN HERO that is within 3" of the model performing the ritual (add 2 instead for each HERO within 3" that is a PRIEST). On a 10+ the ritual is successfully performed. On any other result, the ritual fails and nothing happens.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="929e-b31f-f7a8-99c6" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
</categoryLinks>
<selectionEntryGroups>
<selectionEntryGroup id="c50c-2062-348a-c4c5" name="Additional Rules" hidden="false" collective="false" import="true">
<selectionEntries>
<selectionEntry id="ec5b-e29c-af19-a2c5" name="Tides of Death" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3d0b-f6de-94ac-721a" type="max"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="eb5d-41fa-96ea-06ff" type="min"/>
</constraints>
<profiles>
<profile id="84ee-bb65-e768-7b11" name="1. Low Tide" hidden="false" typeId="ac0f-3fba-b82e-a9e8" typeName="Tides of Death">
<characteristics>
<characteristic name="Turn" typeId="41bf-1d9a-c900-4a55">1/5</characteristic>
<characteristic name="Effect" typeId="d0a7-be18-7209-6a57">In this battle round, all units with the Tides of Death battle trait are treated as being in cover</characteristic>
</characteristics>
</profile>
<profile id="c5e0-a103-30da-373a" name="2. Flooding Tide" hidden="false" typeId="ac0f-3fba-b82e-a9e8" typeName="Tides of Death">
<characteristics>
<characteristic name="Turn" typeId="41bf-1d9a-c900-4a55">2/6</characteristic>
<characteristic name="Effect" typeId="d0a7-be18-7209-6a57">In this battle round, all units with the Tides of Death battle trait that run can still either shoot or charge in the same turn (but not both).</characteristic>
</characteristics>
</profile>
<profile id="5cc1-938b-9772-4969" name="3. High Tide" publicationId="6737-0704-4a9d-8642" page="1" hidden="false" typeId="ac0f-3fba-b82e-a9e8" typeName="Tides of Death">
<characteristics>
<characteristic name="Turn" typeId="41bf-1d9a-c900-4a55">3/7</characteristic>
<characteristic name="Effect" typeId="d0a7-be18-7209-6a57">In this battle round, the strike-first effect applies to units with the Tides of Death battle trait.</characteristic>
</characteristics>
</profile>
<profile id="0731-1abb-e855-bc96" name="4. Ebbing Tide" hidden="false" typeId="ac0f-3fba-b82e-a9e8" typeName="Tides of Death">
<characteristics>
<characteristic name="Turn" typeId="41bf-1d9a-c900-4a55">4/8</characteristic>
<characteristic name="Effect" typeId="d0a7-be18-7209-6a57">In this battle round, all units with the Tides of Death battle trait that retreat can still either shoot or charge in the same turn (but not both).</characteristic>
</characteristics>
</profile>
<profile id="b7a9-6b4d-1fb1-46db" name="-" hidden="false" typeId="ac0f-3fba-b82e-a9e8" typeName="Tides of Death">
<characteristics>
<characteristic name="Turn" typeId="41bf-1d9a-c900-4a55"/>
<characteristic name="Effect" typeId="d0a7-be18-7209-6a57">IDONETH DEEPKIN units with this battle trait have a different Tides of Death ability each battle round, as shown on the Tides of Death table below.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f2b8-c3db-2bce-58cf" name="Forgotten Nightmares" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5b49-fb57-5f34-f0f3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ffb8-df7d-2fc4-07b0" type="max"/>
</constraints>
<profiles>
<profile id="2864-e51c-62b6-a66f" name="Forgotten Nightmares" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">Missile weapons can only be used to target an Idoneth Deepkin with this battle trait if it is the closest visible enemy unit</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="d429-3f80-b787-f9fc" name="Isharann Rituals" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="afda-2f25-43d4-f139" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2884-4550-504a-ebb5" type="max"/>
</constraints>
<profiles>
<profile id="92a0-ef25-7725-7160" name="Ritual of Erosion" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Until your next hero phase, enemy units do not receive any benefit for being in cover.</characteristic>
</characteristics>
</profile>
<profile id="6507-481a-62a2-637a" name="Ritual of Rousing" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Heal 1 wound allocated to each friendly EIDOLON on the battlefield. In addition, you can re-roll failed hit rolls and casting rolls for friendly EIDOLONS until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="60dd-e2c2-a7e2-1fa6" name="Ritual of the Tempest" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Until your next hero phase, enemy models cannot fly.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
<selectionEntryGroup id="dbe2-7790-73a5-eee3" name="Etheric Vortex Terrain" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8bb8-18d7-24e6-819e" type="min"/>
<constraint field="selections" scope="parent" value="2.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="9233-7ca0-a2ac-580e" type="max"/>
</constraints>
<entryLinks>
<entryLink id="b17b-bca6-eee1-a615" name="Gloomtide Shipwreck" hidden="false" collective="false" import="true" targetId="4d3b-7511-4e6b-c62a" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="cb1e-981c-81d2-d718" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed26-0de6-40f3-34f0" type="max"/>
</constraints>
</entryLink>
</entryLinks>
</selectionEntryGroup>
<selectionEntryGroup id="e3c8-b285-d21a-04c9" name="Enclaves" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aa62-240c-724c-84d3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2031-9a56-2c0d-ba3e" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="1f20-e3d6-a454-7a0e" name="Ionrach" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="551c-98b3-b03e-c2ec" name="Strong in Magic" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Add 1 to casting and unbinding rolls for Ionrach WIZARDS.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a070-1e93-9d3e-d183" name="New CategoryLink" hidden="false" targetId="7d6b-20c2-e209-d69e" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1d48-183a-c16d-fad8" name="Dhom-hain" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="eae7-e5f3-8f14-c9ec" name="Savage Fighters" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In your combat phase, re-roll hit rolls of 1 for Dhom-hain AKHELIAN and Dhom-hain NAMARTI units that made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="6a77-275a-5e73-718f" name="Deep Questors" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll failed wound rolls for Dhom-hain AKHELIAN units if the target is a MONSTER.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4ead-a959-18c5-24d1" name="New CategoryLink" hidden="false" targetId="37d3-78e6-a763-e8e4" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ecff-0f1b-c90f-b748" name="Fuethán" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="339f-695a-995f-8206" name="Revel in Slaughter" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll hit rolls of 1 for Fuethán units that are affected by the Flood Tide ability from the Tides of Death table (pg 86). In addition, whenever a Fuethán unit would be affected by the Ebb Tide ability from the Tides of Death table, they are instead affected by the Flood Tide ability from the same table.</characteristic>
</characteristics>
</profile>
<profile id="aaa0-9d13-590f-473b" name="Fiercest of Creatures" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">In the combat phase, re-roll wound rolls of 1 for Fuethán mounts.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="0e2d-1480-2bb4-5c1e" name="New CategoryLink" hidden="false" targetId="036d-0eb0-7b5f-1e33" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="67e1-282d-3244-fdef" name="Mor'phan" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="0126-8b33-4caf-4cd2" name="Soul Magic Adepts" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">When a Mor’phann Isharann Soulrender uses their Lurelight ability, add 3 to the number of models that are returned.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f81d-8b18-e52b-9e43" name="New CategoryLink" hidden="false" targetId="2900-4cc3-0ac7-2afb" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="cf71-e2de-6231-5064" name="Nautilar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="a951-0ab9-a711-ffbf" name="Consummate Defenders" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can re-roll failed hit rolls for Nautilar units in the combat phase if the target made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="3742-d02b-4415-195e" name="New CategoryLink" hidden="false" targetId="c131-28a2-ee27-cc6e" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="809b-7596-3e87-f78e" name="Briomidar" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="7135-5233-03ae-e8f0" name="Supreme Soulscryers" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">If a Briomdar Soulscryer uses their Finder ofWays ability, up to three friendly Briomdar units can join them instead of only two. In addition, you can set up the units that join a Briomdar Soulscryer wholly within 18"of the Soulscryer instead of wholly within 12"of the Soulscryer.</characteristic>
</characteristics>
</profile>
<profile id="0c43-9c6c-6a09-1392" name="Unstopable Raiders" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">Briomdar units that cannot normally flyignore terrain features when they move, as if they could fly. Note that this does not allow them to ignore enemy models when they move.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a77c-21aa-2e03-4d59" name="New CategoryLink" hidden="false" targetId="94bd-d303-cdb6-9985" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="5ab6-9d8a-e607-0bc3" name="Order" hidden="false" collective="false" import="true" type="upgrade">
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ea78-2738-9e0a-b540" name="Akhelian King" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="2586-b8c2-4e1c-da3d" name="Akhelian Paragon" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll hit rolls of 1 for friendly AKHELIAN units while they are wholly within 12" of this model.</characteristic>
</characteristics>
</profile>
<profile id="5bce-6c9d-71d8-12cb" name="Storm of Blows" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the combat phase, you can say that this model will draw their Falchion. If you do so, subtract 1 from save rolls for this model in that combat phase, but this model can attack with its Falchion in that combat phase. If you do not do so, this model cannot attack with its Falchion in that combat phase.</characteristic>
</characteristics>
</profile>
<profile id="a86f-7ed9-cd25-7b3f" name="Lord of Tides" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can use this command ability if this model is your general and the High Tide ability from the Tides of Death table applies for the battle round. If you do so, pick a friendly IDONETH DEEPKIN unit wholly within 12" of your general. Add 1 to the Attacks characteristic of melee weapons used by that unit until your next hero phase. </characteristic>
</characteristics>
</profile>
<profile id="54a5-a674-ce5b-e284" name="Akhelian King" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">7</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ec11-aa5a-012a-d1a2" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="003b-7f42-8b8d-d608" name="New CategoryLink" hidden="false" targetId="76e7-bbb5-d24b-008b" primary="false"/>
<categoryLink id="1cb1-9751-b59f-e729" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="c2ea-8df1-0c07-46ec" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="9c23-5a8f-edac-3de5" name="New CategoryLink" hidden="false" targetId="7308-657f-ed3f-68f4" primary="false"/>
<categoryLink id="eef7-5198-2082-968e" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
<categoryLink id="87bb-67ba-711c-942d" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="0864-df6f-b225-b643" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="fc79-d84b-549b-1831" name="Falchion" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b69-9425-8827-0eae" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8853-77eb-2809-7c6d" type="max"/>
</constraints>
<profiles>
<profile id="b430-e0ba-c963-c3d1" name="Falchion" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<selectionEntryGroups>
<selectionEntryGroup id="fb59-9f25-5f5a-56dc" name="Melee Weapon" hidden="false" collective="false" import="true">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11e5-9527-54c5-a2e6" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="01bf-23ee-3fda-33fc" type="max"/>
</constraints>
<selectionEntries>
<selectionEntry id="ae50-a366-e1a6-63df" name="Greatsword" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="766f-6d9e-011a-48bd" name="Greatsword" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4342-d9e3-4717-568a" name="Bladed Polearm" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="24ef-524e-090a-6046" name="Bladed Polearm" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="a210-46fe-6141-f9ab" name="Wave Rider" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">In the combat phase, this model’s Bladed Polearm has a Damage characteristic of 3 if the model made a charge move in the same turn.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</selectionEntryGroup>
</selectionEntryGroups>
<entryLinks>
<entryLink id="7eeb-7abc-44e0-3b38" name=" General" hidden="false" collective="false" import="true" targetId="e67f-735c-9874-ba8c" type="selectionEntryGroup"/>
<entryLink id="6852-61ae-50f2-3ab3" name="Deepmare Mount" hidden="false" collective="false" import="true" targetId="6c31-939f-9e1c-f83e" type="selectionEntry"/>
<entryLink id="56da-e0fc-38f2-5050" name="Command Traits" hidden="false" collective="false" import="true" targetId="0879-c394-8274-958b" type="selectionEntryGroup"/>
<entryLink id="5dbb-9676-d714-5512" name="Artefacts" hidden="false" collective="false" import="true" targetId="0740-e91a-e615-4ac9" type="selectionEntryGroup"/>
<entryLink id="9441-c86f-8d42-ba4f" name="Battalions" hidden="false" collective="false" import="true" targetId="5666-66dd-34a9-6beb" type="selectionEntryGroup"/>
<entryLink id="021a-00c1-49c8-dd60" name="Spell Lores" hidden="true" collective="false" import="true" targetId="ae84-c2fb-c58c-9d9b" type="selectionEntryGroup">
<modifiers>
<modifier type="set" field="hidden" value="false">
<conditions>
<condition field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="9918-5a46-2468-35e2" type="equalTo"/>
</conditions>
</modifier>
</modifiers>
</entryLink>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="230.0"/>
</costs>
</selectionEntry>
<selectionEntry id="4dc9-5604-2e81-ef8a" name="General" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8af4-649e-9ee2-22ee" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="5c1d-d0be-e5cf-9fe3" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="88f2-a5fd-1371-927b" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="78f3-8a59-699a-61e8" type="instanceOf"/>
<condition field="selections" scope="ancestor" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="24d6-500b-7e3f-1470" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dcf5-50d1-b987-c584" type="max"/>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="5f21-e4cb-e139-83f3" type="max"/>
</constraints>
<categoryLinks>
<categoryLink id="6b5e-01ef-a04b-7fec" name="New CategoryLink" hidden="false" targetId="b745-17c4-8fbf-8b04" primary="false"/>
</categoryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="6c31-939f-9e1c-f83e" name="Deepmare Mount" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f66-a75f-e523-b1f3" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="dbfc-41d6-dc4b-9378" type="max"/>
</constraints>
<profiles>
<profile id="5c01-e560-3dbf-3a5f" name="Deepmare's Fanged Jaw and Talon's" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
<profile id="8015-2b6c-601e-6433" name="Deepmare's Lashing Tails" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
<profile id="bb18-04c2-33ae-877b" name="Deepmare Horn" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice if this model ends a charge move within 1" of any enemy units. On a 2+, the nearest enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<entryLinks>
<entryLink id="b33e-37e0-e2d9-6bca" name="Mount Traits" hidden="false" collective="false" import="true" targetId="2a28-0efb-d4c4-6021" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f9a5-71c8-3543-c80a" name="Volturnos" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="d051-0076-d4a7-9061" type="max"/>
</constraints>
<profiles>
<profile id="8ccb-1cb9-d772-f42d" name="First Among Akhelians" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Re-roll hit rolls of 1 for friendly AKHELIAN units while they are wholly within 18" of this model. </characteristic>
</characteristics>
</profile>
<profile id="d2c3-57a5-fbe4-ea75" name="The Crest of the High Kings" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Bravery characteristic of friendly IDONETH DEEPKIN units while they are wholly within 18" of this model.</characteristic>
</characteristics>
</profile>
<profile id="9b98-42fc-9bb1-0e65" name="Cealith, the High King’s Shield" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can roll a dice if this model is affected by a spell. If you do so, on a 3+ the spell has no effect on this model (other units will be affected by the spell normally).</characteristic>
</characteristics>
</profile>
<profile id="c0d7-c100-8460-42ef" name="Supreme Lord of Tides" publicationId="6737-0704-4a9d-8642" page="2" hidden="false" typeId="c749-bae4-71a8-0c36" typeName="Command Trait">
<characteristics>
<characteristic name="Command Trait Details" typeId="ee96-6f3a-e5ca-2350">You can use this command ability if a friendly Volturnos is on the battlefield and the High Tide ability from the Tides of Death table applies for the battle round. If you do so, pick up to 3 different friendly IDONETH DEEPKIN units wholly within 18" of that friendly VOLTURNOS. Add 1 to the Attacks characteristic of melee weapons used by those units until your next hero phase.</characteristic>
</characteristics>
</profile>
<profile id="a479-0026-d75e-56fd" name="Volturnos" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">14"</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">8</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="108d-b2dc-8958-f0ab" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="c17b-92c3-b417-cb73" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="431e-8325-9896-d438" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="b809-46ac-3f22-ec59" name="New CategoryLink" hidden="false" targetId="2078-ffce-df80-59e3" primary="false"/>
<categoryLink id="5f8a-a4d4-a4f5-7325" name="New CategoryLink" hidden="false" targetId="7308-657f-ed3f-68f4" primary="false"/>
<categoryLink id="7b80-103c-88ba-8efb" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
<categoryLink id="36b1-ab9c-7e80-6422" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="4c77-fa8d-894f-7c9a" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="a36a-cdeb-1142-4c1c" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="323b-d32c-92f0-d371" name="The Astra Solus" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6888-d881-1706-af4b" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d5de-2e4f-1390-dfe9" type="max"/>
</constraints>
<profiles>
<profile id="6f50-9a9b-a7d6-517b" name="The Astra Solus" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">5</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">D3</characteristic>
</characteristics>
</profile>
<profile id="bf31-4254-e3ff-bd61" name="The Astra Solus" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">If a hit roll for the Astra Solus is 6+, that attack has a Rend characteristic of -5 instead of -1.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="0a1b-bed0-c78a-e17e" name="General - Akhelian" hidden="false" collective="false" import="true" targetId="f3e4-d800-16f7-c5ab" type="selectionEntry">
<categoryLinks>
<categoryLink id="1bfc-7f47-7f69-4f43" name="Unique General" hidden="false" targetId="fe3f-d230-7e2c-fba2" primary="false"/>
</categoryLinks>
</entryLink>
<entryLink id="1fff-c7dc-2cb7-e4cf" name="Deepmare Mount" hidden="false" collective="false" import="true" targetId="6c31-939f-9e1c-f83e" type="selectionEntry"/>
<entryLink id="9b1e-a9fd-db06-4dbf" name="Battalions" hidden="false" collective="false" import="true" targetId="5666-66dd-34a9-6beb" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="260.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a470-1bff-9e2f-d5b2" name="Eidolon of Mathlann: Aspect of the Sea" publicationId="0d25-2712-pubN70885" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="e02b-e11a-c43e-67d1" name="Cloying Sea Mists" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">6</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick 1 friendly IDONETH DEEPKIN unit, or 1 enemy unit, within 12" of the caster and visible to them. If you picked a friendly IDONETH DEEPKIN unit, heal up to D3 wounds allocated to that unit. If you picked an enemy unit, that unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
<profile id="71a6-b170-4bfd-c94f" name="Tsunami of Terror" hidden="false" typeId="2e81-5e22-c6e1-73cb" typeName="Spell">
<characteristics>
<characteristic name="Casting Value" typeId="2508-b604-1258-a920">7</characteristic>
<characteristic name="Range" typeId="5b5c-1fd1-4c0f-5705">12"</characteristic>
<characteristic name="Description" typeId="76ff-781d-b8e6-5f27">If successfully cast, pick up to D6 enemy units within 12" of the caster and visible to them. Until
your next hero phase, subtract 1 from hit rolls for attacks made by those units, and subtract 1 from the Bravery characteristic of those units.</characteristic>
</characteristics>
</profile>
<profile id="7937-0633-c06d-47fc" name="Dormant Energies" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can re-roll casting, dispelling and unbinding rolls for this model. If you do not re-roll any casting or dispelling rolls for this model in your hero phase, you can heal up to D3 wounds allocated to this model at the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="a08c-29c7-df61-f8f0" name="Tranquility of the Abyss" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 3 to the Bravery characteristic of friendly IDONETH DEEPKIN units while they are wholly within 18" of any friendly models with this ability.</characteristic>
</characteristics>
</profile>
<profile id="229c-91ea-bcbc-979c" name="Eidolon: Aspect of the Sea" hidden="false" typeId="f55d-ee3a-1597-110f" typeName="Magic">
<characteristics>
<characteristic name="Cast/Unbind" typeId="8294-f605-2c0f-8f92">2/2</characteristic>
<characteristic name="Spells Known" typeId="dc9c-47d3-6931-859c">Arcane Bolt, Mystic Shield, Cloying Sea Mists, and Tsunami of Terror</characteristic>
</characteristics>
</profile>
<profile id="3286-3616-13c8-4265" name="Eidolon of Mathlann: Aspect of the Sea" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">10</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">12</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3e86-4bd1-b1dc-c283" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
<infoLink id="59b3-1f20-4c51-036f" name="Mystic Shield" hidden="false" targetId="b41f-f1ce-7aa5-4f81" type="profile"/>
<infoLink id="28e8-0023-d577-017f" name="Arcane Bolt" hidden="false" targetId="ae02-a84f-a903-1ff8" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="9c45-e680-97e6-a9c2" name="New CategoryLink" hidden="false" targetId="c56e-7bfd-cd94-a349" primary="false"/>
<categoryLink id="bbe6-fd3e-fe65-cd8f" name="New CategoryLink" hidden="false" targetId="aff8-5fd2-754c-468d" primary="false"/>
<categoryLink id="aedb-5e38-a515-b838" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="b3e2-ea5d-2235-6237" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="4909-d374-4086-cd0d" name="New CategoryLink" hidden="false" targetId="4f53-8230-2f02-9639" primary="false"/>
<categoryLink id="da3d-2146-63e2-cab8" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
<categoryLink id="bcd9-690c-b289-2382" name="AELF" hidden="false" targetId="7fe9-bc03-2c82-0a00" primary="false"/>
<categoryLink id="6e92-fe62-bac4-532e" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="eec9-b5c6-54d2-2bc7" name="Psi-trident" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="696b-c313-3095-7665" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c9f9-881e-558a-43a4" type="max"/>
</constraints>
<profiles>
<profile id="99ac-1f63-3e9c-43fc" name="Psi-trident" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="ac48-84f9-9a18-050e" name="Deep-sea Sceptre" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="451f-05c3-31e0-4428" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fb85-9150-1f14-c6e4" type="max"/>
</constraints>
<profiles>
<profile id="20ef-8179-19b6-75a7" name="Deep-sea Sceptre" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eae6-5af3-88fe-0f1e" name="Blasts of Abyssal Energy" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="11f6-c355-1e98-eb3a" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="746c-e687-797b-ddef" type="max"/>
</constraints>
<profiles>
<profile id="5ce8-e450-ba59-9e29" name="Blasts of Abyssal Energy" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Missile</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">15"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">D3</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">3+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f969-7876-2ec5-07b5" name="Sharp Fangs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="917f-9347-d105-bcab" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ceac-c338-367d-8ee3" type="max"/>
</constraints>
<profiles>
<profile id="3581-9770-ab07-d74e" name="Sharp Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="27ac-794d-b2ee-8d54" name="Stormshoal" hidden="false" collective="false" import="true" targetId="fd47-67fa-0f30-b7eb" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0d4e-92b6-6ce2-e099" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a226-3bb1-ebe0-188b" type="max"/>
</constraints>
</entryLink>
<entryLink id="c0f2-5e1d-b7fd-4cb6" name="General" hidden="false" collective="false" import="true" targetId="e67f-735c-9874-ba8c" type="selectionEntryGroup"/>
<entryLink id="bf76-2a4a-5059-1bd3" name="Command Traits" hidden="false" collective="false" import="true" targetId="0879-c394-8274-958b" type="selectionEntryGroup"/>
<entryLink id="95f9-40e2-d85c-8d15" name="Artefacts" hidden="false" collective="false" import="true" targetId="0740-e91a-e615-4ac9" type="selectionEntryGroup"/>
<entryLink id="ba0b-415e-5c6c-f852" name="Spells" hidden="false" collective="false" import="true" targetId="ae84-c2fb-c58c-9d9b" type="selectionEntryGroup"/>
<entryLink id="147e-c82e-1d3c-c733" name="Battalions" hidden="false" collective="false" import="true" targetId="5666-66dd-34a9-6beb" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="355.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fd47-67fa-0f30-b7eb" name="Stormshoal" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="6958-f443-6e6b-3c5e" name="Stormshoal" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time you allocate a wound or mortal wound to this model. On a 5+, that wound or mortal wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="647d-029e-80c9-2b44" name="Eidolon of Mathlann: Aspect of the Storm" publicationId="0d25-2712-pubN70885" hidden="false" collective="false" import="true" type="unit">
<profiles>
<profile id="6289-4bb4-195a-5a45" name="Crashing Upon the Foe" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">You can heal up to D3 wounds allocated to this model after it makes a charge move.
Add 1 to the Attacks and Damage characteristics of this model’s Spear of Repressed Fury if it made a charge move in the same turn.
This model can retreat and still charge later in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="e798-8fd5-e312-e83d" name="Drench with Hate" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to wound rolls for attacks made by friendly IDONETH DEEPKIN units that are wholly within 18" of any friendly models with this ability.</characteristic>
</characteristics>
</profile>
<profile id="a6a6-b03f-8e71-dad2" name="Pulled into the depths" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">At the start of the combat phase, you can pick 1 enemy HERO with a Wounds characteristic of 8 or less that is within 3" of this model. Add 1 to hit rolls for attacks made by this model that target that HERO in that phase.</characteristic>
</characteristics>
</profile>
<profile id="9d64-a7c7-f46f-b249" name="Eidolon of Mathlann: Aspect of the Storm" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">12</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">12</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">10</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">3+</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8f7e-a9a3-9927-b741" name="Fly" hidden="false" targetId="8e0c-cbe4-27be-8a30" type="profile"/>
</infoLinks>
<categoryLinks>
<categoryLink id="04f7-08bb-b5e0-bde3" name="New CategoryLink" hidden="false" targetId="aff8-5fd2-754c-468d" primary="false"/>
<categoryLink id="5370-3a69-84a5-74d6" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="257b-49fe-aedc-f68c" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="4f45-7230-52a7-de6a" name="New CategoryLink" hidden="false" targetId="81ea-0a9d-661c-3b06" primary="false"/>
<categoryLink id="763d-ac66-0a1b-7ca4" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
<categoryLink id="cd77-d703-5361-5c2a" name="AELF" hidden="false" targetId="7fe9-bc03-2c82-0a00" primary="false"/>
<categoryLink id="caf9-3826-cd7f-0e20" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="40b1-e32e-a6f5-3b2e" name="Crulhook" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="8a09-88bc-e7a0-1edf" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ed73-ccdb-bd57-47ce" type="max"/>
</constraints>
<profiles>
<profile id="3e36-e67e-913d-dea3" name="Crulhook" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="20dd-87f3-b52c-2240" name="Spear of Repressed Fury" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ea37-10ed-d36d-6f43" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a23e-b191-7a06-a960" type="max"/>
</constraints>
<profiles>
<profile id="0fcf-3585-60b3-2f4f" name="Spear of Repressed Fury" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">2"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">4</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="332a-9be3-9463-313c" name="Sharp Fangs" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="ba6e-c311-deb0-e9d9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be77-1dff-9ac8-2ed0" type="max"/>
</constraints>
<profiles>
<profile id="a9d0-a620-d1b1-7235" name="Sharp Fangs" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">3"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">2D6</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">4+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">4+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<entryLink id="d7e5-26a3-8b43-ff46" name="Stormshoal" hidden="false" collective="false" import="true" targetId="fd47-67fa-0f30-b7eb" type="selectionEntry">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="d969-27f8-1f6d-a2b9" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e079-d586-7e7d-2b20" type="max"/>
</constraints>
</entryLink>
<entryLink id="1f4a-6b05-ec42-ecc3" name="General" hidden="false" collective="false" import="true" targetId="e67f-735c-9874-ba8c" type="selectionEntryGroup"/>
<entryLink id="4b4f-44cf-02a3-052c" name="Command Traits" hidden="false" collective="false" import="true" targetId="0879-c394-8274-958b" type="selectionEntryGroup"/>
<entryLink id="ab62-ba5e-36ce-c6b7" name="Artefacts" hidden="false" collective="false" import="true" targetId="0740-e91a-e615-4ac9" type="selectionEntryGroup"/>
<entryLink id="ffcf-d2cb-7c86-ff3b" name="Battalions" hidden="false" collective="false" import="true" targetId="5666-66dd-34a9-6beb" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="330.0"/>
</costs>
</selectionEntry>
<selectionEntry id="02fd-a31c-6926-4378" name="Lotann" hidden="false" collective="false" import="true" type="unit">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" id="6c6c-f6de-0893-8f01" type="max"/>
</constraints>
<profiles>
<profile id="96ba-ea36-f116-a3d2" name="Lotann" hidden="false" typeId="1960-ca8e-67ce-2014" typeName="Unit">
<characteristics>
<characteristic name="Move" typeId="8655-6213-2824-1752">6</characteristic>
<characteristic name="Wounds" typeId="cd0e-fea6-411f-904d">5</characteristic>
<characteristic name="Bravery" typeId="0c85-bf79-836b-759e">7</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">6+</characteristic>
</characteristics>
</profile>
<profile id="a5b4-94ea-f4f2-3103" name="Catalogue of Souls" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Add 1 to the Bravery characteristic of friendly IDONETH DEEPKIN units while they are wholly within 12" of this model. In addition, re-roll hit rolls of 1 for friendly NAMARTI units while they are wholly within 12" of this model. </characteristic>
</characteristics>
</profile>
<profile id="f1b7-f38c-2242-bbfe" name="Writhing Tentacles" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Roll a dice each time you allocate a wound or mortal wound to this model. On a 5+, the wound is negated.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ce29-2af6-37dc-0173" name="New CategoryLink" hidden="false" targetId="4e0e-664d-51ea-0929" primary="false"/>
<categoryLink id="2db4-1ab0-c322-4149" name="New CategoryLink" hidden="false" targetId="d297-61a8-974f-1e19" primary="false"/>
<categoryLink id="84f6-0e97-ab19-0efe" name="New CategoryLink" hidden="false" targetId="4aa3-ffb5-6bf8-1425" primary="false"/>
<categoryLink id="8c5f-a5ba-bf2f-0ab8" name="New CategoryLink" hidden="false" targetId="b970-b3bf-e1a4-a6fc" primary="false"/>
<categoryLink id="6af3-f7d4-770b-17ee" name="New CategoryLink" hidden="false" targetId="ebae-8e2f-a19d-2b0e" primary="false"/>
<categoryLink id="f853-7eb6-749c-443a" name="New CategoryLink" hidden="false" targetId="6ec4-4931-4d7f-006b" primary="false"/>
<categoryLink id="6adc-361f-63a2-0301" name="9 or less wounds Leader" hidden="false" targetId="a8ed-ca35-24e0-cf2e" primary="false"/>
<categoryLink id="64c6-cd34-c1a7-8742" name="New CategoryLink" hidden="false" targetId="6c6b-e787-f9b8-a510" primary="true"/>
<categoryLink id="1ec2-88fe-bc75-53b5" name="Unique" hidden="false" targetId="088b-3a27-03f7-8249" primary="false"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="8432-ab98-884d-09b7" name="Bone Quill" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="aeff-f767-5ee8-d77f" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="fca9-1313-5c5d-8c40" type="max"/>
</constraints>
<profiles>
<profile id="a484-43d5-4102-ea29" name="Bone Quill" hidden="false" typeId="96df-ab28-5d72-bbb3" typeName="Weapon">
<characteristics>
<characteristic name="Type" typeId="655c-362e-a663-3e50">Melee</characteristic>
<characteristic name="Range" typeId="ee32-7f8e-ccd7-b7b0">1"</characteristic>
<characteristic name="Attacks" typeId="0bd7-bded-a0e0-19a0">1</characteristic>
<characteristic name="To Hit" typeId="87f2-fb99-33f9-7269">3+</characteristic>
<characteristic name="To Wound" typeId="8842-17f1-9794-4efc">5+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="9fb8-3f9b-b4c7-b9e6" name="Ochtar's Cudgel" hidden="false" collective="false" import="true" type="upgrade">
<constraints>