generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Prefecture_of_Ryu.cat
6128 lines (6122 loc) · 412 KB
/
Prefecture_of_Ryu.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="0cac-b8ad-fb7f-ef84" name="Prefecture of Ryu" revision="34" battleScribeVersion="2.03" library="false" gameSystemId="62e4-ab79-1c4c-9ffe" gameSystemRevision="19" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<categoryEntries>
<categoryEntry id="8688-cd6e-bcbe-2cbb" name="Ima" hidden="false"/>
<categoryEntry id="65a8-4392-a95b-115b" name="Takashi" hidden="false"/>
</categoryEntries>
<selectionEntries>
<selectionEntry id="5048-3a52-5689-6d0b" name="Heroic Stand" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="83c8-9fcd-9b27-a489" type="max"/>
</constraints>
<profiles>
<profile id="f2b0-1db3-b784-7215" name="Heroic Stand" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play in the Starting Phase.
Until the End Phase, Friendly Prefecture models gain Immune [Frightened].</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="df9d-09e0-1f5c-07be" name="Immune" hidden="false" targetId="ea08-b25e-0ea8-af73" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0537-13cd-ff3a-7baa" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="31b6-4f0e-9045-9bdf" name="Inspiring Words" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="af8c-fa47-b028-3fb3" type="max"/>
</constraints>
<profiles>
<profile id="572a-1ed5-100c-66bd" name="Inspiring Words" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play when a Prefecture model with Leadership activates.
Each model in that model's Leadership Ranged gains 1 Ki Token.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="6af4-caee-8a9a-99eb" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="9557-6330-eee6-b57e" name="Battlefield Manoeuvres" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="65b6-a9a5-a28e-adc2" type="max"/>
</constraints>
<profiles>
<profile id="0bf1-5e06-951e-7d1c" name="Battlefield Manoeuvres" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play before Deployment.
Until the end of the game, whenever you win a Tactical Test, choose 2 Prefecture Ashigaru cards to gain Co-ordinated Attack [Ashigaru].</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c15f-aa3c-6e72-c9e7" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="a0c8-978b-b9d0-516f" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="37bb-455b-3c0c-ab1c" name="Vanguard" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="b51f-4f13-69c7-45a3" value="0">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="396c-dee3-9e8f-fff6" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="7342-bebc-c6cd-8cb7" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b51f-4f13-69c7-45a3" type="max"/>
</constraints>
<profiles>
<profile id="688d-5d5c-44ee-238b" name="Vanguard" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Before Deployment, X Ashigaru models gain Scout (0/4").</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c459-f890-1cee-f607" name="Scout" hidden="false" targetId="8c82-d05a-f63b-1841" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b0fe-d1de-be58-b26a" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="2c71-0293-9875-0ed6" name="Ashigaru models" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="a72d-200a-465e-1636" type="min"/>
</constraints>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="1c4e-2aa6-2d32-f0d4" name="Blood of the Dragon" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="0d40-cf68-b4b9-91f4" name="Blood of the Dragon" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• Friendly models gain double Ki during the first turn's Ki Generation step
• If a Friendly model fails a Fear Test, after the activation ends, it gains Fearless until the End Phase
• Friendly models reduce the dice cost of Critical Attack by 1 (to a minimum of 0)</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="ef07-1d09-dfbb-104a" name="Faction Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="d5a3-42bc-c296-969a" name="Claws of the Dragon" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d5a3-42bc-c296-969a" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="e40c-44f9-2ebc-f295" name="Claws of the Dragon" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• During each Starting Phase, choose 1 Ashigaru. That model gains Co-ordinated Attack [Ashigaru] until the End Phase
• Friendly Ashigaru models gain Scout (+0/+2")
• Once per game, in the Starting Phase, all Ashigaru gain Tough (1) until the End Phase</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="712f-24a9-e094-183a" name="Tough" hidden="false" targetId="5613-a6cf-495a-229f" type="rule"/>
<infoLink id="f571-ccac-ad4b-99e3" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
<infoLink id="a8c4-2065-fdac-9796" name="Scout" hidden="false" targetId="8c82-d05a-f63b-1841" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="0b1f-cde8-8d2f-19b5" name="Faction Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="07e0-41f1-b800-70ad" name="Prefecture Patrol" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="and">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="07e0-41f1-b800-70ad" type="lessThan"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="7a3b-4372-c5fc-adcb" name="Prefecture Patrol" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• Models with Leadership gain Leadership (+0/+2")
• In the Starting Phase, gain a Pass Token for each Friendly model that was recruited into the Warband that is currently removed from play</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="1660-4434-a0af-d8b8" name="Faction Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="9212-6a6f-63a7-3981" name="Steady the Line" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f87c-37e9-6181-8eed" type="max"/>
</constraints>
<profiles>
<profile id="f299-9167-4136-7d2a" name="Steady the Line" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Remove all Frightened Markers from all Ashigaru within 3" of any Gunso model or 6" of Hiromasa.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7135-2a47-2433-0615" name="Faction Event Cards" hidden="false" targetId="d360-71aa-ca22-ba3c" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="bc27-201d-52bf-7a00" name="Ima" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5027-3e70-5d47-e9f8" type="max"/>
</constraints>
<profiles>
<profile id="b2f8-5414-2ba2-fb53" name="Ima" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">1</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
<profile id="8667-d3cd-a7b6-d2d4" name="Ima" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">This model cannot declare Disengage actions.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="0b25-1746-fbc6-0bb8" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="2af8-57a2-94be-75dd" name="Genki" hidden="false" targetId="1222-9d02-e07a-da02" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="7dd2-b245-cd0f-c282" name="Traits" hidden="false">
<profiles>
<profile id="cab8-d806-982d-1424" name="Ima" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Bravery</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d3b3-5982-a641-24f2" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="6883-4e8b-a2fd-2716" name="Melee Weapon" hidden="false">
<profiles>
<profile id="716c-8bf7-a5b1-f84f" name="Training Spear" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="92ec-9560-0de4-4e62" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="e7c3-c23f-58f9-12f4" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="646b-f4a5-1167-834b" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="c3b9-ae80-a0b8-88fd" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="91d0-a403-7ca9-98b8" name="Ima" hidden="false" targetId="8688-cd6e-bcbe-2cbb" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="5910-5830-faab-7e75" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="6"/>
</costs>
</selectionEntry>
<selectionEntry id="441b-7ddf-7abe-7623" name="Hiromasa" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="be5e-6a13-2cd1-36d2" type="max"/>
</constraints>
<profiles>
<profile id="e3ec-1958-b985-8929" name="Hiromasa" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974"/>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="16b7-ecc2-8314-c4db" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="e6c3-ec8d-f3cd-679a" name="Veteran" hidden="false" targetId="f386-e304-3104-3952" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="21aa-d542-1c58-af21" name="Traits" hidden="false">
<profiles>
<profile id="52f1-75c7-c37c-b216" name="Hiromasa" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (2), Bravery, Leadership [Ashigaru](1/6")</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="036d-5739-16c8-be40" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="4627-cb63-5376-79f0" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="776b-e35b-5912-2cc0" name="Leadership" hidden="false" targetId="8ec4-bfdc-8c03-f631" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="e9a1-3692-b848-fc1c" name="Unique Effects" hidden="false">
<profiles>
<profile id="7b08-ca89-c949-76ac" name="Hiromasa" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">While in BtB with this model, Friendly Ashigaru gain Steadfast.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1dec-ab62-b495-4ed9" name="Steadfast" hidden="false" targetId="95e7-3178-c29b-013c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="1b29-9340-c742-b123" name="Melee Weapon" hidden="false">
<profiles>
<profile id="bb49-c566-f854-c9bd" name="Yari" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Reach</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Push Attack (0), Powerful Attack (1)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e271-b8fb-98a3-a600" name="Reach" hidden="false" targetId="e28e-d5dd-a262-1101" type="rule"/>
<infoLink id="cc24-1840-34a9-60d7" name="Push Attack" hidden="false" targetId="6c26-94ba-6b96-9e1b" type="rule"/>
<infoLink id="f803-bfb6-5259-f2e7" name="Powerful Attack" hidden="false" targetId="d56a-058d-95d9-5b60" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="d77a-854e-d94d-033f" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="1f80-a263-4da9-c636" name="Pistol" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">+2</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">3/6/9</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61">Pierce (2), Reload (2)</characteristic>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef"/>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="6136-99c9-7a1f-f8fa" name="Pierce " hidden="false" targetId="39e4-14d7-5533-6e67" type="rule"/>
<infoLink id="1017-9add-2f48-f1c1" name="Reload" hidden="false" targetId="9736-df56-0b62-b1a8" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="5e8d-234b-8bfe-9308" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="be3e-3c63-14c5-8ff5" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="c122-4b17-c5d6-6314" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="1a68-f528-aba2-adc0" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="b49c-adc7-3f36-8ea6" name="Gunso" hidden="false" targetId="90e9-830c-e4e0-dcde" primary="false"/>
<categoryLink id="c0a2-58ee-0818-ef80" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="1952-b72c-f072-b811" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="16"/>
</costs>
</selectionEntry>
<selectionEntry id="c4ff-605f-469a-7ee4" name="Takashi Akira" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d5a3-42bc-c296-969a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f0d4-0f4e-b4f3-d4c8" type="max"/>
</constraints>
<profiles>
<profile id="9dc3-c17f-cbd0-4561" name="Takashi Akira" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">4</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">3</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">8</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="98f1-5e1c-6a24-ff2d" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="5fa2-cd2b-92e0-9bcc" name="Do-Kote" hidden="false" targetId="7c80-7e85-fc45-381a" type="infoGroup"/>
<infoLink id="27c8-5383-d3ea-620c" name="Hack" hidden="false" targetId="4b42-aa02-ccb3-cfd8" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="87d7-92ff-3adc-0d24" name="Traits" hidden="false">
<profiles>
<profile id="74bc-e573-0a19-063b" name="Takashi Akira" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (3), Bravery, Resistance (1), Prowess [Melee](1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1990-d419-9472-4dbd" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="351f-b887-eb95-cfe3" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="50c9-b050-b0e3-d716" name="Resistance " hidden="false" targetId="7e3f-9dc3-cacb-469f" type="rule"/>
<infoLink id="660a-bf33-b020-ebe9" name="Prowess " hidden="false" targetId="75ef-327a-cd08-a248" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="7abf-769c-f68c-ada2" name="Melee Weapon" hidden="false">
<profiles>
<profile id="aaa2-8269-701f-d50e" name="Katana" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Critical Attack (0), Push Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a3b1-96cb-57f3-2a9e" name="Push Defence" hidden="false" targetId="74fc-a971-d9c2-278c" type="rule"/>
<infoLink id="9a4b-3553-7a04-f054" name="Critical Attack" hidden="false" targetId="7ec7-56ae-79e3-423e" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="8737-d83e-36df-6c27" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="3599-68ca-0fcd-058d" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="cca4-b299-ee64-2150" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="24c5-ccd3-486a-9d96" name="Samurai" hidden="false" targetId="e12a-f782-3281-7444" primary="false"/>
<categoryLink id="082f-3f19-4d56-1133" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
<categoryLink id="8e65-1454-e4d2-42fa" name="Takashi" hidden="false" targetId="65a8-4392-a95b-115b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="c8b6-cccc-15a8-cf43" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="18"/>
</costs>
</selectionEntry>
<selectionEntry id="a995-3b9f-9148-2dfc" name="Takashi Tetsuya" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d5a3-42bc-c296-969a" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e7d4-9288-1484-e179" type="max"/>
</constraints>
<profiles>
<profile id="45b5-3509-3ed7-f772" name="Takashi Tetsuya" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="5689-57f2-0a84-09c2" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="8c41-36ff-20aa-9512" name="Iaijutsu" hidden="false" targetId="ba0c-49f7-cee1-9585" type="infoGroup"/>
<infoLink id="678d-dfd9-53b9-9c17" name="Takashi Koryu" hidden="false" targetId="68e1-0df2-ee7d-84b2" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="090c-5a31-499d-c4f6" name="Traits" hidden="false">
<profiles>
<profile id="dd7a-da95-9e62-3338" name="Takashi Tetsuya" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Bravery, Feint (1), Prowess [Melee](1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a016-c967-b136-eeb9" name="Prowess " hidden="false" targetId="75ef-327a-cd08-a248" type="rule"/>
<infoLink id="9979-5757-31fd-bbcc" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="803f-5ba7-7347-57db" name="Feint" hidden="false" targetId="38b0-4d97-3c4c-8d96" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="1f29-8778-c8b9-760d" name="Melee Weapon" hidden="false">
<profiles>
<profile id="732f-afed-8123-1a18" name="Katana" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Forceback Attack (0), Push Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c816-9a49-d3e9-1aa8" name="Push Defence" hidden="false" targetId="74fc-a971-d9c2-278c" type="rule"/>
<infoLink id="4990-ed85-9bd1-71d7" name="Forceback Attack" hidden="false" targetId="2682-7c66-4163-28f2" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="5714-7650-08ee-58e3" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="571a-0315-5d31-f95b" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="bfc7-36fc-9713-72f5" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="845c-dcd9-1a49-8f29" name="Samurai" hidden="false" targetId="e12a-f782-3281-7444" primary="false"/>
<categoryLink id="feb9-c539-b476-03af" name="Takashi" hidden="false" targetId="65a8-4392-a95b-115b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0cc1-c9a3-6120-36a7" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="15"/>
</costs>
</selectionEntry>
<selectionEntry id="1cc3-1799-4d65-16cf" name="Atsushi" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="b4d8-db75-28f9-6727" type="max"/>
</constraints>
<profiles>
<profile id="5982-2622-6d7c-5e2e" name="Atsushi" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">3</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="359a-3550-522e-9475" name="Traits" hidden="false">
<profiles>
<profile id="aae2-4b77-582d-131c" name="Atsushi" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (1), Bravery, Co-ordinated Attack [Dog], Lightfooted, Scout (1/4"), Strategy [+1 Pass Token]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0a40-0859-a680-832f" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="74ed-4852-441d-bbea" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
<infoLink id="75c9-f0c3-c36e-e206" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="37fa-1ffb-1193-22b1" name="Lightfooted" hidden="false" targetId="57d2-cd57-07f9-addf" type="rule"/>
<infoLink id="8d5e-2e40-0b35-b28e" name="Scout" hidden="false" targetId="8c82-d05a-f63b-1841" type="rule"/>
<infoLink id="3323-8fd0-2ef4-c03e" name="Strategy" hidden="false" targetId="7c36-9814-c78f-f9d8" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="4d71-b300-c1bf-fb94" name="Melee Weapon" hidden="false">
<profiles>
<profile id="42fa-9f5a-36bc-cac8" name="Tachi" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="50e9-cbe8-cd7f-03c8" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="26f5-ea5c-6d3a-c6ca" name="Sick Em!" hidden="false" targetId="a564-547f-ddc6-267d" type="infoGroup"/>
<infoLink id="4c93-078e-ddbf-fb84" name="Here Boy!" hidden="false" targetId="7aba-c41f-5c7c-474c" type="infoGroup"/>
<infoLink id="9e81-e993-fab1-f918" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="0220-92c9-321e-1dfd" name="Co-ordinated Attack" hidden="false" targetId="2337-7bcc-c1f2-f2bd" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="bf32-8cda-4542-7857" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="f943-6a26-1578-f986" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="9b37-febc-1ce7-34b8" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="d2f3-046c-f1db-fa53" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="8482-d905-5115-f7d0" name="Hare" hidden="false" targetId="d92a-e581-2239-157e" primary="false"/>
<categoryLink id="2ea8-d106-284b-d7f9" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="893b-eb7f-1c5a-8524" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="14"/>
</costs>
</selectionEntry>
<selectionEntry id="2c43-43d3-410e-c1b6" name="Daisuke" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="07e0-41f1-b800-70ad" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e0e9-d5ca-dcbe-d45e" type="max"/>
</constraints>
<profiles>
<profile id="3e38-30b1-6bdc-3194" name="Daisuke" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277"/>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">1</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">2</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="20c7-e187-da68-64f5" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="cd77-2bdd-e6bb-f47f" name="Prayer of Healing" hidden="false" targetId="bae6-9b07-d5bf-ea82" type="infoGroup"/>
<infoLink id="d64d-9664-2912-5e16" name="Prayer of Purification" hidden="false" targetId="8f32-fe38-c07d-9b0e" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="d6e0-a1af-6991-4b10" name="Traits" hidden="false">
<profiles>
<profile id="27d8-a703-4914-3b94" name="Daisuke" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Heal (2)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a6b3-556f-cb7c-7de9" name="Heal" hidden="false" targetId="bd98-52d2-3a66-08e7" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="0033-c20c-d763-2012" name="Melee Weapon" hidden="false">
<profiles>
<profile id="e128-060e-fc74-f7f9" name="Staff" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">-2</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Reach</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c336-7bd3-8808-ba2f" name="Reach" hidden="false" targetId="e28e-d5dd-a262-1101" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="34b1-e389-d4f8-1ec6" name="Unique Effects" hidden="false">
<profiles>
<profile id="db87-4480-4280-46c0" name="Virtue" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">While this model is in play, when a Friendly Prefecture model spends a Virtue Token you may choose 1 of the following effects:
• This model gains Courage (1) until the end of the current activation.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ff18-fa23-284e-0a9f" name="Courage" hidden="false" targetId="2c5f-d52f-24ba-7927" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="2411-d019-48ff-13ca" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="e615-0123-514d-f81c" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="b78a-7efe-98e8-d041" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="24c5-f676-0524-737e" name="Shisai" hidden="false" targetId="a485-b6b0-b58e-a3a1" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="cf39-53ce-7425-7edd" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="8"/>
</costs>
</selectionEntry>
<selectionEntry id="f784-2aad-a4e3-319c" name="Fujitaka" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="875c-2b4f-6a27-832d" type="max"/>
</constraints>
<profiles>
<profile id="5844-928e-4704-ec7b" name="Fujitaka" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">3</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="5eae-c63a-80ad-4eef" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="1fde-a321-2d52-4aeb" name="Rally" hidden="false" targetId="d11a-2a0d-5984-5688" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="fe6d-8ee2-c9f7-3891" name="Traits" hidden="false">
<profiles>
<profile id="dbba-4265-165a-b59d" name="Fujitaka" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (2), Bravery, Channel (6/6"), Leadership [Ashigaru, Samurai](1/8")</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3af5-2cd5-e25a-ffde" name="Channel" hidden="false" targetId="69af-3098-e21e-7734" type="rule"/>
<infoLink id="936b-bdd3-ef62-922e" name="Bravery" hidden="false" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="0d01-d6e9-f5e5-48f8" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
<infoLink id="05f3-ac51-e672-53cb" name="Leadership" hidden="false" targetId="8ec4-bfdc-8c03-f631" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="6b5e-1f54-247d-9f88" name="Melee Weapon" hidden="false">
<profiles>
<profile id="a85f-9ff9-6da4-8ca5" name="Tachi" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Push Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a0ab-4e3e-7ae1-213e" name="Push Defence" hidden="false" targetId="74fc-a971-d9c2-278c" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="9288-12c4-628a-2164" name="Unique Effects" hidden="false">
<profiles>
<profile id="9863-cdc8-1821-d5cf" name="Channel" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">This model can only Channel to Friendly Ashigaru models.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="9ddb-7bac-9fd9-d6f4" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="cb5f-a790-de51-0983" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="c8e3-fb86-e638-5579" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="e499-ff5e-f3a1-658f" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="3a20-aa1a-f93a-0124" name="Armour" hidden="false" targetId="f322-702a-ff62-b37e" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f551-c6c3-33e4-98ce" name="Enhancements" hidden="false" collective="false" import="true" targetId="3dad-1423-9b3c-86a7" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="11"/>
</costs>
</selectionEntry>
<selectionEntry id="3061-b136-75ec-6e54" name="Goshi" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0bfd-c0eb-999a-79f0" type="max"/>
</constraints>
<infoGroups>
<infoGroup id="88cb-a542-ddb2-3565" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="75da-12c5-8382-0f8b" name="Military Training" hidden="false" targetId="308c-6600-0817-c51e" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="de9a-1a97-91f3-57e8" name="Melee Weapon" hidden="false">
<profiles>
<profile id="16ce-5218-dd27-312e" name="Yari" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">-1</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e">Reach</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="ec12-0050-1b97-17f7" name="Reach" hidden="false" targetId="e28e-d5dd-a262-1101" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="df15-17a0-348c-1e81" name="Ashigaru" hidden="false" targetId="f434-17e6-174c-b4f6" primary="false"/>
<categoryLink id="b8d9-c198-22e4-8ee9" name="Faction: Prefecture of Ryu" hidden="false" targetId="7532-4f60-381d-2941" primary="false"/>
<categoryLink id="c705-1e1f-f29a-98a6" name="Faction Profile Cards" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="8171-f9d9-839a-158b" name="Non-Unique" hidden="false" targetId="d181-219d-3add-d47b" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="257b-b6b7-98a9-75b4" name="Goshi" hidden="false" collective="false" import="true" targetId="7bcc-0d8c-21be-efd3" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="A"/>
</modifiers>
<constraints>
<constraint field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0551-53b5-efac-048e" type="min"/>
</constraints>
<profiles>
<profile id="4a5b-8391-b186-8ff7" name="Goshi A" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
<entryLink id="c573-e5f8-231c-9139" name="Goshi" hidden="false" collective="false" import="true" targetId="7bcc-0d8c-21be-efd3" type="selectionEntry">
<modifiers>
<modifier type="append" field="name" value="B"/>
</modifiers>
<profiles>
<profile id="e3a7-e7f8-2cd5-77c5" name="Goshi B" hidden="false" typeId="08e8-3cf2-6d1d-b8f0" typeName="Character Profile">
<characteristics>
<characteristic name="Melee Pool" typeId="eea0-d5a3-2540-a974">2</characteristic>
<characteristic name="Melee Boost" typeId="4d43-9498-6fa0-8277">3</characteristic>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">2</characteristic>
<characteristic name="Ranged Boost" typeId="5454-b765-a65d-8a33"/>
<characteristic name="Move" typeId="91b7-833e-fd8e-a620">4</characteristic>
<characteristic name="Move Boost" typeId="f168-6d2b-e60e-28ac"/>
<characteristic name="Ki" typeId="3969-9568-a914-6854">1</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">6</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">Small 30mm</characteristic>
</characteristics>
</profile>
</profiles>
</entryLink>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ab36-dbe0-7a54-bada" name="Guardsmen of Ryu" hidden="false" collective="false" import="true" type="unit">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c4e-2aa6-2d32-f0d4" type="equalTo"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4979-e7ce-6507-97ee" type="max"/>
</constraints>
<infoGroups>
<infoGroup id="d690-15dc-7664-318d" name="Ki Feats" hidden="false">
<infoLinks>
<infoLink id="1182-b816-6a9a-8855" name="Military Training" hidden="false" targetId="308c-6600-0817-c51e" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="85eb-8a50-6400-8b53" name="Traits" hidden="false">
<profiles>
<profile id="f770-6154-082e-f2fd" name="Guardsman of Ryu" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Armour (2)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="0dee-6251-41ba-c89d" name="Armour" hidden="false" targetId="8615-1c63-2242-5746" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="3be6-a79d-44d7-27bb" name="Melee Weapon" hidden="false">
<profiles>
<profile id="703c-4e36-1548-eca9" name="Tachi" hidden="false" typeId="2b50-015d-0ea9-d9aa" typeName="Melee Weapon">
<characteristics>
<characteristic name="Melee Weapon Strength" typeId="98e7-55ef-7ced-d4ba">+0</characteristic>
<characteristic name="Traits" typeId="39e3-f945-7956-ad4e"/>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>