generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Kinshi_Temple.cat
1747 lines (1739 loc) · 122 KB
/
Kinshi_Temple.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="67f3-e3c0-9b54-71fa" name="Kinshi Temple" revision="15" battleScribeVersion="2.03" library="false" gameSystemId="62e4-ab79-1c4c-9ffe" gameSystemRevision="19" xmlns="http://www.battlescribe.net/schema/catalogueSchema">
<selectionEntries>
<selectionEntry id="096c-e1e9-7274-9439" name="Master Shi" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f17f-19a4-6ec3-77dc" type="max"/>
</constraints>
<profiles>
<profile id="d071-4fa1-c204-2e6a" name="Master Shi" 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"/>
<characteristic name="Ranged Pool" typeId="54f1-7472-e609-b4eb">4</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">3</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="4d9b-8089-8db5-9cb9" name="Traits" hidden="false">
<profiles>
<profile id="b9c8-5206-a77e-1ba5" name="Master Shi" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Fearless, Immune [Prone], Kata, Ranged Defence (1), Sixth Sense, Spirit (1)</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fe1b-4cda-0c03-e6e5" name="Fearless" hidden="false" targetId="5d6f-1746-9080-aca5" type="rule"/>
<infoLink id="d4c1-daeb-ecd5-105a" name="Immune" hidden="false" targetId="ea08-b25e-0ea8-af73" type="rule"/>
<infoLink id="5d90-3cdb-1302-aeac" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="b3a5-9e47-3a0f-02f9" name="Ranged Defence " hidden="false" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
<infoLink id="fbbf-7220-eb20-d704" name="Sixth Sense" hidden="false" targetId="ec49-3908-f1d1-8de2" type="rule"/>
<infoLink id="acdd-36f1-afc5-51c0" name="Spirit" hidden="false" targetId="a9ba-9904-7d29-7bcb" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="6ff9-f347-e74f-abe1" name="Melee Weapon" hidden="false">
<profiles>
<profile id="9dd6-9324-8aa2-dd96" name="Satsui Bujutsu" 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">Ki Block</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Combo Attack (0), Sidestep Attack (0), Gokusatsu Attack (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f645-8dde-8193-7009" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
<infoLink id="f26a-f965-c99d-48cd" name="Combo Attack " hidden="false" targetId="78ab-6a94-be24-8f74" type="rule"/>
<infoLink id="6cba-e7d1-8b05-9842" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
<infoLink id="68e9-8d3b-b4a7-af5d" name="Gokusatsu Attack" hidden="false" targetId="9b0a-af20-c3f2-8291" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="b4e4-d9e5-d2f9-da95" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="55ce-8696-7996-0009" name="Ki Vacuum" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">+1</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">3/5/7</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61">Ki Block</characteristic>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef">Combo Attack (0)</characteristic>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="298a-d23b-caec-8399" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
<infoLink id="8a9a-9f51-dcf6-4e03" name="Combo Attack " hidden="false" targetId="78ab-6a94-be24-8f74" type="rule"/>
<infoLink id="d162-30fa-ff2c-0907" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
<infoLink id="3f73-61be-32df-0bed" name="Gokusatsu Attack" hidden="false" targetId="9b0a-af20-c3f2-8291" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="b781-ec89-963e-be0e" name="Unique Effects" hidden="false">
<profiles>
<profile id="e38e-d220-91fa-a24d" name="Starting Phase" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">In the Starting Phase inflict 1 Wound on each Enemy Lesser Kami model within 6".
This model then gains an ability based on the types of Kami Wounded:
• Water Kami: This model Heals 2 Wounds.
• Fire Kami: This model's Weapons gain Fire (2/1).
• Air Kami: This model gains +1 Move and Lightfooted.
• Void Kami: Place 1 Void Counter on the Blessings of the Void Communal Card.
• Metal Kami: This model gains Powerful Attack (0).
• Earth Kami: This model gains Tough (1).
• Other Lesser Kami: This model gains an Activation Counter.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="5aa4-4e10-6b88-e31f" name="Feats" hidden="false">
<infoLinks>
<infoLink id="848b-6480-7944-3cd5" name="Contemplate No Mind" hidden="false" targetId="9821-2235-bd3c-002a" type="infoGroup"/>
<infoLink id="749f-4216-c3bf-0830" name="Touch the Silence" hidden="false" targetId="0783-664e-5eb7-128b" type="infoGroup"/>
<infoLink id="9135-4f4c-ef4e-fb0b" name="Rage Against Time" hidden="false" targetId="7ec4-c6f8-7404-719c" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="737b-8c78-0c16-ddaf" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="185c-129a-77fb-ea40" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="de27-2a1a-8f3b-1d97" name="Master" hidden="false" targetId="7379-3296-315e-62b2" primary="false"/>
<categoryLink id="48b8-7b11-1bfb-4fdc" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="86bc-4dfc-8d98-2b6c" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="e30a-7ec9-2392-d467" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="83e9-11a1-1458-10da" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="a7b2-e896-6d47-324a" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="25.0"/>
</costs>
</selectionEntry>
<selectionEntry id="0fff-5e22-84a2-48d6" name="Maru" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="37cc-62b8-045e-c943" type="max"/>
</constraints>
<profiles>
<profile id="1178-6d3b-dc90-9c2e" name="Maru" 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"/>
<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">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="80d6-9bcd-db3a-6751" name="Traits" hidden="false">
<profiles>
<profile id="f918-bbdb-5b80-4157" name="Maru" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Aware, Bravery, Jump Up, Kata</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="fc2b-246a-602d-465b" name="Durable" hidden="false" targetId="3612-7e19-3cb9-72d0" type="rule"/>
<infoLink id="a330-6942-ffc4-bc8b" name="Intangible" hidden="false" targetId="7f5c-c63d-f96f-65af" type="rule"/>
<infoLink id="1da5-e6d2-5095-356a" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="219d-d05f-c795-f390" name="Slow" hidden="false" targetId="f1c3-4a84-c616-23cd" type="rule"/>
<infoLink id="0711-ad3b-7b1c-ea39" name="Sixth Sense" hidden="false" targetId="ec49-3908-f1d1-8de2" type="rule"/>
<infoLink id="d195-2465-1976-e36b" name="Soulless" hidden="false" targetId="af31-aad0-fcea-9590" type="rule"/>
<infoLink id="d6f2-7c97-53fc-e950" name="Strong" hidden="false" targetId="00b5-3637-d48a-807e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ad84-5fc6-c076-1be8" name="Melee Weapon" hidden="false">
<profiles>
<profile id="ad55-646f-fee8-0032" name="Satsui Bujutsu" 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">Sidestep Attack (0), Forceback Attack (0), Slam Attack (1)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8301-6ff0-9ba1-f0b8" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
<infoLink id="d78e-db46-6354-c267" name="Forceback Attack" hidden="false" targetId="2682-7c66-4163-28f2" type="rule"/>
<infoLink id="f119-abdb-370e-5efb" name="Slam Attack" hidden="false" targetId="5d05-b0ce-d7db-9def" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="2574-39a1-8ac6-58c2" name="Unique Effects" hidden="false">
<profiles>
<profile id="fef9-e8d3-692d-5ec9" name="Starting Phase" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">In the Starting Phase, choose 1 Void Rift within 6" of this model and Place that Void Rift within 1" of its current location.
</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d3ad-e724-5ca1-3295" name="Feats" hidden="false">
<infoLinks>
<infoLink id="2294-62cf-f7ac-1144" name="Forbidden Force" hidden="false" targetId="89ad-5a08-112e-c13d" type="infoGroup"/>
<infoLink id="696b-ca25-ebb9-f038" name="Time Spiral" hidden="false" targetId="9449-6fc1-8166-b6f0" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="2e7f-9f84-229a-1f58" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="80c2-ace3-8f80-4937" name="Kiai" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">Special</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">3/5/7</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61"/>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef"/>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990">This Weapon does no Damage but on a successful Attack, the Target gains a Spirit Block Marker.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="b077-a310-2aae-e61d" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="1671-557f-2c09-1e6e" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="0544-9512-0d7b-0175" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="f425-91fe-86cd-f03c" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="929a-69b0-535c-06f3" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="e7f0-f52f-a3fc-26b3" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="0e97-1a98-1f72-d65b" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3cc6-0c2b-8bbb-8a62" name="Batsu" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4b0e-d998-f3c4-5116" type="max"/>
</constraints>
<profiles>
<profile id="ad84-d55d-1aeb-c846" name="Batsu" 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"/>
<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">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="ff04-276f-db17-0dc7" name="Melee Weapon" hidden="false">
<profiles>
<profile id="35e8-b603-bbf4-f150" name="Satsui Bujutsu" 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">Ki Block</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Sidestep Attack (0), Push Attack (0), Powerful Attack (1)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="5b14-c24a-e1ea-e5d5" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
<infoLink id="beb8-6324-2d1c-6b9e" name="Push Attack" hidden="false" targetId="6c26-94ba-6b96-9e1b" type="rule"/>
<infoLink id="73b4-44c1-dd68-e562" name="Powerful Attack" hidden="false" targetId="d56a-058d-95d9-5b60" type="rule"/>
<infoLink id="dc22-98f7-11be-1a26" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="8e8b-e290-169c-4476" name="Unique Effects" hidden="false">
<profiles>
<profile id="e4d4-d1a7-7f2e-2a9e" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When an Enemy model removes a Death Sentence Marker, you may add 1 Void Counter to the Blessings of the Void Communal Card.
When this model deals Damage in a Melee Exchange, once the activation is complete, you may place this model in BtB contact with a Void Rift.
</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="c83f-e1e2-dc31-4fcf" name="Feats" hidden="false">
<infoLinks>
<infoLink id="2426-915b-8b66-2943" name="Scorch the Earth" hidden="false" targetId="78c4-ecd6-4134-860b" type="infoGroup"/>
<infoLink id="bb36-f4e3-9308-5d9d" name="Forbidden Censure" hidden="false" targetId="6086-d3d6-5abd-757b" type="infoGroup"/>
</infoLinks>
</infoGroup>
<infoGroup id="a7bb-4119-8bc3-a0c5" name="Ranged Weapon" hidden="false">
<profiles>
<profile id="5d84-ad0b-6ede-16f4" name="Kiai" hidden="false" typeId="7e20-258e-bf92-18f9" typeName="Ranged Weapon">
<characteristics>
<characteristic name="Ranged Weapon Strength" typeId="15aa-b6bd-6923-271f">Special</characteristic>
<characteristic name="Range Bands" typeId="be6a-50c6-d691-e2e9">3/5/7</characteristic>
<characteristic name="Traits" typeId="3410-4428-ef91-eb61"/>
<characteristic name="Specials" typeId="cdaf-b6ac-89d4-39ef"/>
<characteristic name="Unique Effects" typeId="3bf8-6525-f003-4990">This Weapon does no Damage but on a successful Attack, the Target gains a Spirit Block Marker.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="9769-0c74-6169-d13d" name="Traits" hidden="false">
<profiles>
<profile id="d020-40eb-f50a-a94e" name="Batsu" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Immune [Fire], Jump Up, Kata, Ranged Defence (1), Vengeance [Monk]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="b66b-4c2a-3481-3b75" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="3957-affc-532d-98de" name="Ranged Defence " hidden="true" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
<infoLink id="5f90-09ae-3358-4577" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="00e5-a237-80ed-d4fb" name="Vengeance" hidden="false" targetId="6779-0aac-2f51-f67e" type="rule"/>
<infoLink id="ecd4-88c9-76bf-9b00" name="Immune" hidden="false" targetId="ea08-b25e-0ea8-af73" type="rule"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="2bb1-90cd-b716-623f" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="0fcf-b2f0-d050-5e0f" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="c657-6efc-772b-39cc" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="9f89-2fac-f835-e485" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="3688-0976-ad08-6811" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="bc47-afcd-3e29-181b" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="d430-1df3-62a0-31cc" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="17.0"/>
</costs>
</selectionEntry>
<selectionEntry id="1d49-ac4f-8aa7-5bf2" name="Hishigata" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="0650-fdeb-023e-3494" type="max"/>
</constraints>
<profiles>
<profile id="16d9-04e7-d857-3727" name="Hishigata" 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">0</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">0</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="5bc7-0bd4-03a3-ac13" name="Traits" hidden="false">
<profiles>
<profile id="0645-a406-3736-edcd" name="Hishigata" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Kata, Ranged Defence (1), Slow, Soulless, Strong</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="d132-fb2a-1c9e-3581" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="4e72-3a0a-3673-5a49" name="Slow" hidden="false" targetId="f1c3-4a84-c616-23cd" type="rule"/>
<infoLink id="822f-2378-b97f-e89e" name="Ranged Defence " hidden="false" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
<infoLink id="d620-feec-fc79-1389" name="Soulless" hidden="false" targetId="af31-aad0-fcea-9590" type="rule"/>
<infoLink id="71fb-5d54-28e0-9dcf" name="Strong" hidden="false" targetId="00b5-3637-d48a-807e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="bd1c-ce01-2273-8f78" name="Melee Weapon" hidden="false">
<profiles>
<profile id="433a-9ec0-5be4-694f" name="Satsui Bujutsu" 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">Ki Block</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="2af9-7cb7-cc8f-f615" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ebf9-66e1-a096-5654" name="Unique Effects" hidden="false">
<profiles>
<profile id="09ca-6b37-69d3-68db" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When this model is Killed, you may choose 1 of the following:
• Replace this model with a Void Rift.
• Replace this model with Kodai.
This can be used to Deploy a Replacing model in BtB or ZoC.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d74c-1fe5-a19d-4035" name="Feats" hidden="false">
<infoLinks>
<infoLink id="4f86-1e8b-26d9-64d4" name="Obscured by Umbra" hidden="false" targetId="2196-6457-6d3b-42fd" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="e3ed-2364-137a-6f8f" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="fabe-b17e-1458-7c96" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="e950-6cb7-ea40-d64f" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="46ff-ba3f-c64c-5089" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="6841-a965-7c34-193d" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="8331-c0fb-ecc7-b328" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="833c-c217-927b-3a77" name="Husk" hidden="false" targetId="46bf-24f2-a055-022c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="f452-6310-95f7-c724" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="3e1b-8c7c-8e22-b3a0" name="Nagashikaku" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3307-2c4d-5d66-2c7a" type="max"/>
</constraints>
<profiles>
<profile id="6f2a-a8d0-71b9-8955" name="Nagashikaku" 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">0</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">0</characteristic>
<characteristic name="Ki Boost" typeId="5b71-1ed7-9aa7-039c"/>
<characteristic name="Ki Cap" typeId="9a7e-38d3-92c5-a672">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">5 OOOOO</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="265a-2b6a-6ddc-172f" name="Traits" hidden="false">
<profiles>
<profile id="2de7-88d6-7005-7771" name="Nagashikaku" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Kata, Ranged Defence (1), Slow, Soulless, Strong</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c8de-15d0-69f2-b160" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="1b2a-9909-97da-b8ac" name="Slow" hidden="false" targetId="f1c3-4a84-c616-23cd" type="rule"/>
<infoLink id="df67-47b7-2601-750c" name="Ranged Defence " hidden="false" targetId="9b8d-9ca9-e25d-3988" type="rule"/>
<infoLink id="ee6a-500f-1c83-48ee" name="Soulless" hidden="false" targetId="af31-aad0-fcea-9590" type="rule"/>
<infoLink id="cc1d-c53c-cf0a-ccb7" name="Strong" hidden="false" targetId="00b5-3637-d48a-807e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="0da8-c467-f3a9-712f" name="Melee Weapon" hidden="false">
<profiles>
<profile id="46f1-8b27-e655-1f03" name="Satsui Bujutsu" 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">Ki Block</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d"/>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3a0f-ef15-dfff-2582" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="02a5-42ae-0fff-d621" name="Unique Effects" hidden="false">
<profiles>
<profile id="9571-0145-7444-8650" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When this model is Killed, you may choose 1 of the following:
• Replace this model with a Void Rift.
• Replace this model with a Lesser Void Kami.
This can be used to Deploy a Replacing model in BtB or ZoC.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d171-be5c-836a-52d3" name="Feats" hidden="false">
<infoLinks>
<infoLink id="788c-e319-a149-f0cc" name="Empower the Void" hidden="false" targetId="e41e-b87e-a0fb-6ee4" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="21b0-0a0c-751f-75aa" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="ca14-05c7-7e86-3a1a" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="4f16-4438-45f9-999a" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="4a34-b7cc-b543-29e1" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="854a-51f3-1dc4-487f" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="4a63-7940-34a3-4a7b" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
<categoryLink id="f8f3-824b-79a7-c72d" name="Husk" hidden="false" targetId="46bf-24f2-a055-022c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="490e-938c-b3af-0f4b" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="10.0"/>
</costs>
</selectionEntry>
<selectionEntry id="95d6-c595-9afe-0e15" name="Ku" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="2b3d-a2af-8332-af02" type="max"/>
</constraints>
<profiles>
<profile id="0c86-60e8-210b-d420" name="Ku" 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"/>
<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">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="8e71-4b27-e5d0-98f1" name="Traits" hidden="false">
<profiles>
<profile id="1353-8af6-39cd-f3ab" name="Ku" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Bravery, Cloudwalk, Dodge (1), Indomitable (1), Jump Up, Kata, Split Attack, Tireless</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="029f-b164-1c27-3d63" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="9e6b-d606-8ef8-dc1c" name="Bravery" hidden="true" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="25d0-e999-79f4-4c72" name="Indomitable " hidden="false" targetId="3beb-6f28-e7c4-a236" type="rule"/>
<infoLink id="efff-b69f-4f36-f5c1" name="Cloudwalk" hidden="false" targetId="538c-1266-626b-fcc9" type="rule"/>
<infoLink id="6539-9d02-0ea6-2bad" name="Tireless" hidden="false" targetId="5829-35f3-dd19-1290" type="rule"/>
<infoLink id="8966-8e20-18f2-7cb8" name="Split Attack" hidden="false" targetId="92d0-d4fe-e58e-7535" type="rule"/>
<infoLink id="e6ca-7340-c6d4-daa2" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
<infoLink id="771a-42c4-16be-8d34" name="Dodge " hidden="false" targetId="14d5-d459-5d8a-c73e" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ff8a-c5b3-a096-7d20" name="Melee Weapon" hidden="false">
<profiles>
<profile id="10ab-aa11-32ee-e766" name="Staff" 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, Ki Block</characteristic>
<characteristic name="Specials" typeId="85a9-0a2b-f966-0c8d">Sidestep Attack (0), Slam Attack (1), Push Defence (0)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="3bbf-1d6c-6182-8242" name="Ki Block" hidden="false" targetId="d134-7fba-38f0-8896" type="rule"/>
<infoLink id="1011-ccfd-0396-3bed" name="Slam Attack" hidden="false" targetId="5d05-b0ce-d7db-9def" type="rule"/>
<infoLink id="c156-d9c6-c604-d606" name="Push Defence" hidden="false" targetId="74fc-a971-d9c2-278c" type="rule"/>
<infoLink id="6923-ee0d-389a-023d" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="791f-b9ce-e949-f86e" name="Unique Effects" hidden="false">
<profiles>
<profile id="5354-aa28-b01d-4a4e" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">The first time this model deals Damage as a result of a Melee Exchange, place 1 Void Counter on the Blessings of the Void Communal Card.
This model treats Master Enos as having the traits Fear (6) and Terror.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="c427-64fa-dc7a-07ae" name="Fear" hidden="false" targetId="3586-4583-7f10-1f31" type="rule"/>
<infoLink id="aae6-aed4-75c0-c19f" name="Terror" hidden="false" targetId="ad7a-5dea-fee4-fb49" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="dff2-bc17-8ce2-8a95" name="Feats" hidden="false">
<infoLinks>
<infoLink id="b314-8c3c-143d-09a7" name="Stronger Than Hate" hidden="false" targetId="0187-2a9e-8401-347e" type="infoGroup"/>
<infoLink id="7e58-db7d-b467-4145" name="Unseen Anger" hidden="false" targetId="5239-f702-e68e-98ee" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="e126-9096-4f53-0d82" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="ed80-db81-764c-64f5" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="65b1-0d4d-de8b-b9a8" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="18d5-f667-d754-0a0c" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="7532-bdb9-1aa9-9627" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="fdfa-4580-bac6-0b9e" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="15bc-7c7e-dca8-072c" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="22.0"/>
</costs>
</selectionEntry>
<selectionEntry id="c943-4b66-5f00-c05b" name="Shikaku" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="e135-6c3a-fb70-1e18" type="max"/>
</constraints>
<profiles>
<profile id="ab6b-3a86-0e55-9246" name="Shikaku" 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"/>
<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">0</characteristic>
<characteristic name="Wounds" typeId="2ee5-ab93-4a78-ea29">6 OOOOO O</characteristic>
<characteristic name="Size & Base" typeId="6cf9-c5fd-3e3c-b35b">30mm Small</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="0932-77f3-0b0f-48d1" name="Traits" hidden="false">
<profiles>
<profile id="1df8-59de-a97c-89c0" name="Shikaku" hidden="false" typeId="b175-cf39-0ab9-4d58" typeName="Character Traits">
<characteristics>
<characteristic name="Traits" typeId="6fb8-4540-ed80-9332">Bravery, Jump Up, Kata, Resistance (1), Steadfast</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="e69f-467c-a5ee-b5a8" name="Kata" hidden="false" targetId="7283-1e6d-cb9c-f1c8" type="rule"/>
<infoLink id="5f0f-e35f-76e6-20c4" name="Bravery" hidden="true" targetId="f9b2-38d2-7cda-de6e" type="rule"/>
<infoLink id="cbab-8b39-878c-c5f4" name="Steadfast" hidden="false" targetId="95e7-3178-c29b-013c" type="rule"/>
<infoLink id="4e29-88a3-d692-2159" name="Resistance " hidden="false" targetId="7e3f-9dc3-cacb-469f" type="rule"/>
<infoLink id="cbbe-49ba-0749-86c2" name="Jump Up" hidden="false" targetId="1575-e12f-4ca3-c557" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="ca92-4eeb-d550-00c7" name="Melee Weapon" hidden="false">
<profiles>
<profile id="9a10-405d-9c5d-66a3" name="Satsui Bujutsu" 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">Combo Attack (1), Sidestep Attack (0), Throw Attack (1)</characteristic>
<characteristic name="Unique Effects" typeId="2561-7ce8-3a17-1289"/>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="240d-131f-b7b9-66dc" name="Slam Attack" hidden="false" targetId="5d05-b0ce-d7db-9def" type="rule"/>
<infoLink id="9097-915e-5b7e-3740" name="Throw Attack" hidden="false" targetId="e4a9-1967-fb91-ce07" type="rule"/>
<infoLink id="bc53-e543-aa5d-3bc7" name="Sidestep Attack " hidden="false" targetId="070d-a69d-0b46-27dc" type="rule"/>
</infoLinks>
</infoGroup>
<infoGroup id="6797-2927-cbc8-4b93" name="Unique Effects" hidden="false">
<profiles>
<profile id="78a1-82b6-7abe-b721" name="Unique Effects" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When this model deals Damage in a Melee Exchange, once the activation is complete, you may Place this model in contact with a Void Rift.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="efda-7626-8730-c13c" name="Feats" hidden="false">
<infoLinks>
<infoLink id="46fe-000f-a69e-cdbb" name="Time Spiral" hidden="false" targetId="9449-6fc1-8166-b6f0" type="infoGroup"/>
<infoLink id="4c08-128d-9011-8d8e" name="The Void Stares Back" hidden="false" targetId="336b-8576-4ad8-0cc6" type="infoGroup"/>
</infoLinks>
</infoGroup>
</infoGroups>
<categoryLinks>
<categoryLink id="db76-e884-1f31-8168" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
<categoryLink id="2ca9-caaa-098a-e132" name="New CategoryLink" hidden="false" targetId="0ca8-2040-37f2-a1e0" primary="true"/>
<categoryLink id="dbea-d95c-e3df-8035" name="Monk" hidden="false" targetId="57a9-2b8a-3729-1ad8" primary="false"/>
<categoryLink id="9d4e-9157-9408-e3f0" name="Satsui" hidden="false" targetId="a94e-8398-e4cc-2fb0" primary="false"/>
<categoryLink id="514b-3629-0f64-1787" name="Element: Void" hidden="false" targetId="18b7-00de-cec4-40ca" primary="false"/>
<categoryLink id="b817-558e-3669-99f2" name="Unique" hidden="false" targetId="afd4-8041-e359-223c" primary="false"/>
</categoryLinks>
<entryLinks>
<entryLink id="d856-c897-41f3-49ed" name="Enhancements" hidden="false" collective="false" import="true" targetId="36b2-5747-21c9-8865" type="selectionEntryGroup"/>
</entryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="16.0"/>
</costs>
</selectionEntry>
<selectionEntry id="f00c-509a-7183-8a02" name="Zenith of the Void" 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.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="f00c-509a-7183-8a02" type="lessThan"/>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="477a-e693-0888-08f7" type="atLeast"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="f450-6a1d-ab80-b985" name="Zenith of the Void" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Before the game, place 3 Void Rift Terrain elements on the table within 6" of the centre point and not within 2" of any Objective.
Permitted [Satsui]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="48ff-cf40-23ab-b761" name="Theme Cards" hidden="false" targetId="477a-e693-0888-08f7" primary="true"/>
<categoryLink id="43bc-d437-c478-80e7" name="Faction: Kinshi Temple" hidden="false" targetId="943d-6b70-d85b-fb7b" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="eca6-be42-ae00-6884" name="Blessings of the Void" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="f054-1565-4a7c-0075" type="max"/>
</constraints>
<profiles>
<profile id="14fd-08fc-5a05-f7be" name="Blessings of the Void" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Some feats have a Rank listed in their cost column.
These Ki Feats may only be used if an effect allows them to be used at no cost.
Friendly Satsui models may use the following feats as if they were on their card:
• Whispers of the Void
• Silence of the Void</characteristic>
</characteristics>
</profile>
<profile id="efbe-9c2e-ec6d-7cf0" name="01" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">1 Void Counter</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">0</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">When a Satsui & Monk model is Killed, you may add 1 Void Counter to this Communal Card.</characteristic>
</characteristics>
</profile>
<profile id="7826-81c9-c379-bde3" name="02" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">2 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">0</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Satsui models entering BtB with a Void Rift may be placed in BtB with any other Void Rift by the Active Player and continue its movement (if any) from there.</characteristic>
</characteristics>
</profile>
<profile id="3845-b894-16ba-beb0" name="03" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">3 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">0</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">When a Satsui & Monk model performs a Focus Action, you may add 1 Void Counter to this Communal Card.</characteristic>
</characteristics>
</profile>
<profile id="ba60-8b6f-bca8-479b" name="04" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">4 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Whispers of the Void feat.
Satsui models may use Rank 1 feats at no cost.</characteristic>
</characteristics>
</profile>
<profile id="1a5a-d08d-a62c-4e9f" name="05" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">5 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">A Satsui model in BtB contact with Destructible Terrain and not in an Enemy ZoC can declare a Wait Action to remove it from the table.</characteristic>
</characteristics>
</profile>
<profile id="cdb0-6b7a-c427-1f4b" name="06" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">6 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">When a Satsui model fails an Opposed Ki Test, add 1 Void Counter to this Communal Card.</characteristic>
</characteristics>
</profile>
<profile id="86fa-c3ef-6ec8-fd4b" name="08" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">12 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">3</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Silence of the Void feat.
Satsui models may use Rank 3 feats at no cost.</characteristic>
</characteristics>
</profile>
<profile id="31f2-7c0e-eb06-241b" name="07" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f">8 Void Counters</characteristic>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">2</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Blessings of the Void</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Satsui models may use Rank 2 feats at no cost.</characteristic>
</characteristics>
</profile>
<profile id="ec69-6ebe-e9a1-076a" name="04 Hishigata" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1d49-ac4f-8aa7-5bf2" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Hishigata</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Obscured by Umbra feat.</characteristic>
</characteristics>
</profile>
<profile id="a10f-4df0-0c7c-801b" name="04 Kodai" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1c52-10dc-2bf8-938b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Kodai</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Dark from Light feat.</characteristic>
</characteristics>
</profile>
<profile id="6ab7-cb4b-9009-b3b2" name="04 Nagashikaku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3e1b-8c7c-8e22-b3a0" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Nagashikaku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Empower the Void feat.</characteristic>
</characteristics>
</profile>
<profile id="683a-87ce-16c1-8fec" name="08 Sangaku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="00a8-4002-0c62-9fbf" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">3</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Sangaku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Time Splice feat.</characteristic>
</characteristics>
</profile>
<profile id="a749-4df3-115d-c0ea" name="04 Batsu" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="3cc6-0c2b-8bbb-8a62" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Batsu</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Scorch the Earth feat.
Forbidden Censure feat.</characteristic>
</characteristics>
</profile>
</profiles>
<infoGroups>
<infoGroup id="4af8-3613-4da2-8287" name="Shikaku" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="c943-4b66-5f00-c05b" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="1f99-6da4-cc72-302b" name="04 Shikaku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Shikaku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">The Void Stares Back feat.</characteristic>
</characteristics>
</profile>
<profile id="1303-dbf0-6022-cb10" name="07 Shikaku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">2</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Shikaku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Time Spiral feat.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="c438-1a9f-8d17-1206" name="Master Shi" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="096c-e1e9-7274-9439" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="2566-af32-e21d-02c8" name="08 Master Shi" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">3</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Master Shi</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Rage Against Time feat.</characteristic>
</characteristics>
</profile>
<profile id="6abe-8c60-fe5f-5ecb" name="04 Master Shi" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Master Shi</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Contemplate No Mind feat.
Touch the Silence feat.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="2cd1-fdba-4cdb-b5b3" name="Ku" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="95d6-c595-9afe-0e15" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="66f9-71ef-64fa-cf64" name="04 Ku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Ku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Stronger than Hate feat.</characteristic>
</characteristics>
</profile>
<profile id="8631-357b-28cd-d3ea" name="07 Ku" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">2</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Ku</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Unseen Anger feat.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
<infoGroup id="d878-3078-b2cd-f948" name="Maru" hidden="false">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0fff-5e22-84a2-48d6" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<profiles>
<profile id="afa6-9c19-40fa-5e15" name="04 Maru" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">1</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Maru</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Forbidden Force feat.</characteristic>
</characteristics>
</profile>
<profile id="bd06-446a-67ee-779c" name="07 Maru" hidden="false" typeId="1c8a-f738-1536-a08c" typeName="Escalation">
<characteristics>
<characteristic name="Required" typeId="f608-9700-ffa5-0c3f"/>
<characteristic name="Rank" typeId="84f7-58d8-a0a5-4d78">2</characteristic>
<characteristic name="Card" typeId="d361-6342-4942-70a7">Maru</characteristic>
<characteristic name="Benefit" typeId="a962-35b8-ac0c-8018">Time Spiral feat.</characteristic>
</characteristics>
</profile>
</profiles>
</infoGroup>
</infoGroups>
<infoLinks>
<infoLink id="c990-8e86-b904-63da" name="Whispers of the Void" hidden="false" targetId="c2ac-64c1-ba24-4db6" type="infoGroup"/>
<infoLink id="2545-297c-7a71-705a" name="Silence of the Void" hidden="false" targetId="f081-f873-d8fe-904c" type="infoGroup"/>
</infoLinks>
<categoryLinks>
<categoryLink id="ab18-4994-e793-c5f3" name="Communal" hidden="false" targetId="69a2-397e-9d7b-a47d" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0.0"/>
</costs>
</selectionEntry>
<selectionEntry id="fb62-b83c-5d3b-d3d8" name="Moment of Perfection" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1.0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="5f53-fe8f-28d7-0d8b" type="max"/>
</constraints>
<profiles>
<profile id="747a-a6da-c80e-8ffb" name="Moment of Perfection" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play only in the Main Phase.
If no models in play have Ki Tokens, add an Activation Counter to up to 2 Satsui models.</characteristic>