forked from BSData/warhammer-age-of-sigmar
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Order - Idoneth Deepkin - Data.cat
4149 lines (4138 loc) · 312 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="70" battleScribeVersion="2.03" authorName="" authorContact="@BSData" authorUrl="https://github.com/BSData/warhammer-age-of-sigmar" library="true" gameSystemId="e51d-b1a3-75fc-dc33" gameSystemRevision="128" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<publications>
<publication id="0d25-2712-pubN65537" name="Order Battletome: Idoneth Deepkin"/>
</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"/>
<categoryEntry id="8cf0-969f-59e6-9e5f" name="AKHELIAN THRALLMASTER" hidden="false"/>
<categoryEntry id="efa8-6c47-3409-b29c" name="Idoneth Deepkin Warscroll Battalion" hidden="false"/>
<categoryEntry id="af1b-cf3b-7b6f-c4c0" name="AELF" hidden="false"/>
<categoryEntry id="0cca-5ca6-fcc8-6965" name="AKHELIAN ALLOPEXES" 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"/>
<condition field="selections" scope="force" value="0.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="8c26-2422-34d3-31a5" 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">In the first battle round, after the players have received their starting comman dpoints but before the start of the first turn, if your army includes any ISHARANN units, you can pick 1 of the following Isharann rituals to influence the ethersea during the battle.</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, friendly IDONETH DEEPKIN units 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, friendly IDONETH DEEPKIN units can run and still shoot or charge in the same turn.</characteristic>
</characteristics>
</profile>
<profile id="5cc1-938b-9772-4969" name="3. High Tide" page="" 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 (core rules, 12.4) applies to friendly IDONETH DEEPKIN units.</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, friendly IDONETH DEEPKIN units can retreat and still shoot or charge in the same turn.</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">A different Tides of Death ability applies to your army in 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">Friendly IDONETH DEEPKIN units can only be picked as the target of a shooting attack if they are the closest eligible target to the attacking model. </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 Creeping Mist" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Friendly IDONETH DEEPKIN units that are affected by the Low Tide ability cannot be picked as the target of a shooting attack unless the attacking model is within 12" of that unit.</characteristic>
</characteristics>
</profile>
<profile id="6507-481a-62a2-637a" name="Ritual of Deep-sight" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Friendly NAMARTI units that are affected by the High Tide ability have a ward of 5+.</characteristic>
</characteristics>
</profile>
<profile id="60dd-e2c2-a7e2-1fa6" name="Ritual of the Surging Stream" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Add 1 to run rolls and charge rolls for friendly IDONETH DEEPKIN units that are affected by the Flood Tide ability.</characteristic>
</characteristics>
</profile>
<profile id="05d5-3006-90d0-dac0" name="Ritual of the Spiteful Riptide" hidden="false" typeId="d2bf-4e28-aa1f-c410" typeName="Isharann Rituals">
<characteristics>
<characteristic name="Effect" typeId="e939-5881-6512-499b">Before a friendly IDONETH DEEPKIN unit that is affected by the Ebb Tide ability retreats, roll a dice for each enemy unit within 3" of that unit. On a 4+, that enemy unit suffers D3 mortal wounds.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
</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="Legacy of Glory" hidden="false" typeId="bdc6-78da-3796-60a3" typeName="Battalion Abilities">
<characteristics>
<characteristic name="Battalion Ability Details" typeId="08e0-9ead-1dbe-c801">You can carry out this heroic action with a frinedly IONRACH AKHELLIAN HERO instaed of any other heroic actions you can carry our with that HERO. If you do so, p ick 1 friendly IONRACH AKHELLIAN unit wholly within 12" of that HERO. Until the end of that turn, you can choose for that unit to be affected by either the Flood Tide or Ebb Tide ability from the Tides of Death table in addition to any other abilities from the Tides of Death table they are affected by.</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="Namarti Savages" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If you take the first turn in the current battle round, in your combat phase, after a friendly DHOM-HAIN NAMARTI unit has fought for the first time in that phase, if there are no enemy units within 3" fo that DHOM-HAIN NAMARTI unit, you can attempt a charge with that unit if it is within 12" fo any enemy units. If that DHOM-HAIN NAMARTI unit finishes that charge move within 1/2" of an enemy unit, you can pick that unit to fight for a second time in that phase when it is your turn to do so. If you take the second turn in the current battle round, when a friendly DHOM-HAIN HERO issues the Redeploy command to a friendly DHOM-HAIN NAMARTI unit, you can pick up to 3 friendly DHOM-HAIN NAMARTI units to receive the command instead of only 1 friendly unit.</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="aaa0-9d13-590f-473b" name="Bloodthirsty Shiver" hidden="false" typeId="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">You can include Bloodthirsty Shivers in your army (pg 96). At the start of the combat phase, you can pick 1 unit from each Bloodthirsty Shiver in your army. If you do so, until the end of that phase, if the unmodified hit roll for an attack made wth that unit's Ferocious Bites is 6, that attack scores 2 hits on the target instead of 1. Make a wound and save roll for each hit. If the attacking unit is within 3" of 1 or more other units from the same Bloodthirsty Shiver, its Feorcious Bites scores 3 hits on an unmodified hit roll of 6 instead.</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="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">If the Lorelight ability of a friendly MOR'PHANN SOULRENDER affects a friendly MOR'PHANN NAMARTI unit, add 3 to the number of slain models that are returned to that unit.</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="Crushing Assault" hidden="false" typeId="84d9-7a5a-fe76-b740" typeName="Monstrous Rampage">
<characteristics>
<characteristic name="Description" typeId="827b-962b-59a3-3b4d">You can carry out this monstrous rampage with a friendly NAUTILAR LEVIADON instead of any other monstrous rampage you can carry out with that LEVIADON. If you do so, change the Rend characteristic of that LEVIADON's Massive Scythed Fins and Crushing Jaws to -3 until the end of the next combat phase.</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="c137-4d1f-9d1a-524d" typeName="Battle Trait">
<characteristics>
<characteristic name="Battle Trait Details" typeId="9fdd-b4b1-5f7a-0970">During Deployment, if you set up a friendly BRIOMDAR SOULSCRYER using the Finder of Ways ability, up to 3 friendly BRIOMDAR IDONETH DEEPKIN units can join that SOULSCRYER instead of up to 2. In addition, when you set up any units that join that SOULSCRYER, you can set up those units wholly within 12" of that SOULSCRYER and more than 9" from all enemy units.</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="true" 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">Add 1 to hit rolls for attacks made with melee weapons by friendly AKHELIAN units (excluding mounts) wholly within 9" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="a86f-7ed9-cd25-7b3f" name="Lord of Tides" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, at the end of your charge phase, you can pick up to D3 different friendly IDONETH DEEPKIN units wholly within 12" of any friendly units with this ability. If you do so, until the end of that turn, the units you picked are affected by the High Tide ability from the Tides of Death table in addition to any other abilities from the Tides of Death table they are affected by.</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">10</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"/>
<categoryLink id="d658-4da3-6ec1-68d7" name="AELF" hidden="false" targetId="af1b-cf3b-7b6f-c4c0" primary="false"/>
</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">3+</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">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">2</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">2+</characteristic>
<characteristic name="Rend" typeId="f578-d2a5-f0d3-b707">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">2</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">This unit's Bladed Polearm has a Rend characteristic of -3 and a Damage characteristic of 3 if this unit 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>
<entryLink id="8c0b-2e93-947b-edb1" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="250.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">D3</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">After thi sunit makes a charge move, you can pick 1 friendly enemy unit within 1" of t his unit and roll a dice. On a 2+, that 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="94e3-089d-9ab1-d60c" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f9a5-71c8-3543-c80a" name="Volturnos, High King of the Deep" 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">Add 1 to hit rolls for attacks made with melee weapons by friendly AKHELIAN units (excluding mounts) wholly within 12" of this unit.</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">Each time this unit is affected by a spell or the abilities of an endless spell, you can roll a dice. On a 3+, ignore the effect of tha tspell or the effects of that endless spell's abilities on this unit.</characteristic>
</characteristics>
</profile>
<profile id="c0d7-c100-8460-42ef" name="Supreme Lord of Tides" page="" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, at the start of the combat phase, you can pick up to 3 different friendly IDONETH DEEPKIN units that are affected by the High Tide ability from the Tides of Death table and are wholly within 12" of this unit. Add 1 to the Attacks characteristic of melee weapons used by the units you picked until the end of that phase.</characteristic>
</characteristics>
</profile>
<profile id="a479-0026-d75e-56fd" name="Volturnos, High King of the Deep" 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">10</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"/>
<categoryLink id="e369-aeef-8866-6365" name="AELF" hidden="false" targetId="af1b-cf3b-7b6f-c4c0" primary="false"/>
<categoryLink id="20c8-7267-9bb8-d76d" name="IONRACH" hidden="false" targetId="7d6b-20c2-e209-d69e" primary="false"/>
<categoryLink id="487b-acec-0f71-94d8" name="AKHELIAN KING" hidden="false" targetId="76e7-bbb5-d24b-008b" 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">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">-2</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">3</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="290.0"/>
</costs>
</selectionEntry>
<selectionEntry id="a470-1bff-9e2f-d5b2" name="Eidolon of Mathlann: Aspect of the Sea" 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 cast, pick 1 friendly IDONETH DEEPKIN unit, or 1 enemy unit, within range and visible to the caster. 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 cast, pick up to D3 enemy units within range and visible to the caster. Subtract 1 from save rolls for attacks made with melee weapons that target that unit until your next hero phase.</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 unit.
If this unit successfully casts any spells in your hero phase, you can heal up to D3 wounds allocated to this unit 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">Friendly IDONETH DEEPKIN units wholly within 18" of this unit have a Bravery characteristic of 10.</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">4+</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">12"</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>
<selectionEntry id="5f52-73ae-e10a-7874" name="Stormshoal" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="014e-b6f6-ec77-ecdc" name="Stormshoal" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<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="Spell Lores" 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"/>
<entryLink id="b7cd-2f23-7bbe-def3" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="325.0"/>
</costs>
</selectionEntry>
<selectionEntry id="647d-029e-80c9-2b44" name="Eidolon of Mathlann: Aspect of the Storm" 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 unit after it makes a charge move.
Add 1 to the Attacks and Damage characteristic of this unit's Sear of Repressed Fury if it made a charge move in the same turn.
This unit can retreat and still charge 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 with melee weapons by friendly IDONETH DEEPKIN units (excluding mounts) that are wholly within 12" of any friendly units 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 unit. Add 1 to hit and wound rolls for attacks made by this unit 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">2</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>
<selectionEntry id="63f4-eb11-ba7d-249f" name="Stormshoal" hidden="false" collective="false" import="true" type="upgrade">
<profiles>
<profile id="5262-385d-4945-90e2" name="Stormshoal" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+.</characteristic>
</characteristics>
</profile>
</profiles>
<costs>
<cost name="pts" typeId="points" value="0.0"/>
</costs>
</selectionEntry>
</selectionEntries>
<entryLinks>
<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"/>
<entryLink id="d7b7-e700-9c0c-1030" 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>
<entryLink id="d985-a0c4-f315-e5ee" name="Incarnate Bonding" hidden="false" collective="false" import="true" targetId="c890-acbd-0c80-55c9" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name="pts" typeId="points" value="355.0"/>
</costs>
</selectionEntry>
<selectionEntry id="02fd-a31c-6926-4378" name="Lotann, Warden of the Soul Ledgers" 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, Warden of the Soul Ledgers" 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">8</characteristic>
<characteristic name="Save" typeId="f8dd-4f2a-8543-4f36">4+</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 wound rolls for attacks made with melee weapons by friendly IDONETH DEEPKIN units wholly within 12" of this unit.</characteristic>
</characteristics>
</profile>
<profile id="4532-c1a4-9294-df54" name="Gifts of the Depths" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">This unit has a ward of 5+.</characteristic>
</characteristics>
</profile>
<profile id="649c-4229-fd8c-ad2c" name="Fount of Willpower" hidden="false" typeId="c924-5a68-471a-2fd5" typeName="Unit Abilities">
<characteristics>
<characteristic name="Ability Details" typeId="d4dc-8e81-bc0e-b8f0">Once per battle, if this unit is on the battlefield at the start of your hero phase, you can pick 1 ritual from the Isharann Rituals table and 1 friendly IDONETH DEEPKIN unit wholly within 12" of this unit. Until your next hero phase, the unit you picked is affected by that ritual in addition to any others it is affected by.</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"/>
<categoryLink id="46a2-f6c0-b60b-0e57" name="AELF" hidden="false" targetId="af1b-cf3b-7b6f-c4c0" primary="false"/>
<categoryLink id="2403-3334-09a8-552f" name="IONRACH" hidden="false" targetId="7d6b-20c2-e209-d69e" 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">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>
<selectionEntry id="eb2c-eab1-e031-7ccf" name="Ochtar's Tentacles and Hand Weapons" 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="8fda-ff7d-bcca-e3ca" type="min"/>
<constraint field="selections" scope="parent" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="6d29-81dc-7484-97c8" type="max"/>
</constraints>
<profiles>
<profile id="cd7d-54ee-10c0-f184" name="Ochtar's Tentacles and Hand Weapons" 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">8</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">-1</characteristic>
<characteristic name="Damage" typeId="b5b6-4cbd-661d-1b70">1</characteristic>