generated from BSData/TemplateDataRepo
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathLibrary-Ronin.cat
9903 lines (9864 loc) · 679 KB
/
Library-Ronin.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="b489-b304-948d-52d0" name="Library-Ronin" revision="43" battleScribeVersion="2.03" library="true" gameSystemId="62e4-ab79-1c4c-9ffe" gameSystemRevision="18" xmlns="http://www.battlescribe.net/schema/catalogueSchema" type="catalogue">
<selectionEntries>
<selectionEntry id="4e24-3a7e-77bc-dfed" name="Balance" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="97ad-246e-7816-2c15" type="max"/>
</constraints>
<profiles>
<profile id="5efd-bd86-b1c1-dc2d" name="Balance" 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, Players may not re-roll dice.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fd8a-5fd2-4a75-129c" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="1497-01ec-b4f2-4f98" name="Grace of the Kami" 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="d886-7190-7594-8498" type="max"/>
</constraints>
<profiles>
<profile id="24df-867f-3a17-b7dd" name="Grace of the Kami" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play before rolling dice for any test. For this test, results of 1 are not discarded. They have a value of 1 and count towards the result, as well as any tie breaks.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="44f7-9a65-8121-97c7" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="293b-d99a-c5a3-1823" name="Preordain" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="af54-3c20-7a48-19ae" type="max"/>
</constraints>
<profiles>
<profile id="806c-4c28-89dc-2bf1" name="Preordain" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Before Deployment, roll 2D6 and note down their values.
At any point in the game when either Player makes a roll, before the dice are rolles, you may substitute 1 of the D6. The value is set and cannot be re-rolled or substituted again. Then delete the number used. Any other dice are rolled, re-rolled, and substituted by other effects as normal.
Once both numbers have been used, Discard this card.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b550-4fc4-1a5a-28dd" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="9400-6b98-97ac-197d" name="Rice Bale Barricades" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="name" value="Delicious Rice Ball Barricades">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac91-73ee-4cc8-f014" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2443-ee40-5361-1a2e" type="max"/>
</constraints>
<profiles>
<profile id="f96f-88eb-97eb-1931" name="Rice Bale Barricades" hidden="false" typeId="6fa2-988d-fc04-c751" typeName="Special Card (Terrain)">
<modifiers>
<modifier type="set" field="name" value="Delicious Rice Ball Barricades">
<conditions>
<condition field="selections" scope="parent" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="false" childId="ac91-73ee-4cc8-f014" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<characteristics>
<characteristic name="Base" typeId="c40b-3106-986d-4db5">50mm</characteristic>
<characteristic name="Passage" typeId="3df8-6a47-0c4d-73e7">Impassable</characteristic>
<characteristic name="Visibility" typeId="9858-c2c1-b6fc-b75c">Blocking</characteristic>
<characteristic name="Size" typeId="000a-cf92-4d1e-c934">Large</characteristic>
<characteristic name="Traits" typeId="eaef-482b-c5d3-866e">Destructible</characteristic>
<characteristic name="Description" typeId="9cfa-9bd0-0b1b-9c06">This terrain piece may be placed within 2" of, or in contact with, other terrain elements (including Impassable) or Scenario Objectives.
It may be placed in Scenario Zones and within 2" of the edge of the table.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="151d-c1ae-c4d3-0e9e" name="Ronin Terrain Cards" hidden="false" targetId="3df8-0340-a4a1-a8be" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="ac91-73ee-4cc8-f014" name="Onigiri" 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="5ade-e92a-1e73-225b" type="max"/>
</constraints>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
</selectionEntries>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="839e-11f2-4e10-2ce0" name="Second Chance" 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="ab3d-c608-0543-9f37" type="max"/>
</constraints>
<profiles>
<profile id="c6f3-1a89-9802-1ae8" name="Second Chance" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">After rolling dice for any Opposed Test, you may re-roll all the dice used in the test. If you do, your Opponent may choose any of their dice to re-roll.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="4d11-a6be-69e2-1023" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="d214-c204-4ae5-8675" name="Spirit Catcher Wind Chime" hidden="false" collective="false" import="true" type="model">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="c7df-6568-db00-e0f3" type="max"/>
</constraints>
<profiles>
<profile id="d681-600b-61fb-4870" name="Spirit Catcher Wind Chime" hidden="false" typeId="6fa2-988d-fc04-c751" typeName="Special Card (Terrain)">
<characteristics>
<characteristic name="Base" typeId="c40b-3106-986d-4db5">50mm</characteristic>
<characteristic name="Passage" typeId="3df8-6a47-0c4d-73e7">Impassable</characteristic>
<characteristic name="Visibility" typeId="9858-c2c1-b6fc-b75c">Blocking</characteristic>
<characteristic name="Size" typeId="000a-cf92-4d1e-c934">Large</characteristic>
<characteristic name="Traits" typeId="eaef-482b-c5d3-866e">Destructible</characteristic>
<characteristic name="Description" typeId="9cfa-9bd0-0b1b-9c06">Kami models may not Move or be placed within 2" of this terrain feature.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="41f9-5131-d307-7ead" name="Ronin Terrain Cards" hidden="false" targetId="3df8-0340-a4a1-a8be" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="a2ef-85b3-5ca7-8720" name="Ordered for Battle" 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="ff27-a550-2dd1-e2e3" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="a2ef-85b3-5ca7-8720" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="08eb-14b5-7129-3e7d" name="Ordered for Battle" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">• After recruiting the Warband to the correct Rice Cost, choose another 30 Rice of cards as Reserves. These are not added to the main list but kept separate. The Warband with and without Reserves must be legal.
• Before Deployment you may switch cards in the Reserves with cards in the main list, the main list must remain legal. Enhancement cards may not be attached to or removed from profile cards. Show the new list to your Opponent before the game.
• In a timed event, you have 5 minutes to make substitutions.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="7b22-4701-5d79-85b7" name="Ronin Theme Cards" hidden="false" targetId="ff27-a550-2dd1-e2e3" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="ebaa-825a-5d71-a2a2" name="Strategic Deployment" 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="ff27-a550-2dd1-e2e3" type="atLeast"/>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="ebaa-825a-5d71-a2a2" type="lessThan"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
</modifiers>
<profiles>
<profile id="b6a8-c38d-b9f6-5cb1" name="Strategic Deployment" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">When recruiting you may make 2 separate Warbands of the same Faction. Before Deployment, choose which to play.
If both Players are using this Theme, show both lists to your Opponent and choose in secret which to play. Declare at the same time.
Any Unique models may only be recruited into one of these Warbands. Non-unique models may be duplicated in both lists.
In a timed event, both Players have 5 minutes to choose which Warband to use.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d631-6785-186a-b748" name="Ronin Theme Cards" hidden="false" targetId="ff27-a550-2dd1-e2e3" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="0"/>
</costs>
</selectionEntry>
<selectionEntry id="5852-793b-cb4c-ca8a" name="Sun Goddess Shrine" 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="primary-catalogue" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0b85-0901-eb64-b84b" type="instanceOf"/>
<condition field="selections" scope="primary-catalogue" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="1ac7-2939-2874-7530" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="1a31-f5a6-9f91-f5a8" type="max"/>
</constraints>
<profiles>
<profile id="dff5-2226-3172-bfc5" name="Sun Goddess Shrine" hidden="false" typeId="6fa2-988d-fc04-c751" typeName="Special Card (Terrain)">
<characteristics>
<characteristic name="Base" typeId="c40b-3106-986d-4db5">50mm</characteristic>
<characteristic name="Passage" typeId="3df8-6a47-0c4d-73e7">Impassable</characteristic>
<characteristic name="Visibility" typeId="9858-c2c1-b6fc-b75c">Blocking</characteristic>
<characteristic name="Size" typeId="000a-cf92-4d1e-c934">Large</characteristic>
<characteristic name="Traits" typeId="eaef-482b-c5d3-866e">Destructible</characteristic>
<characteristic name="Description" typeId="9cfa-9bd0-0b1b-9c06">Soulless models may not Move or be Placed within 2" of this terrain feature.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="b30c-063e-888e-2f10" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="61a0-59e8-1a9a-974b" name="Ronin Terrain Cards" hidden="false" targetId="3df8-0340-a4a1-a8be" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="cc6d-8cd9-247f-8fa7" name="War Weary" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0635-422e-56c5-c160" type="max"/>
</constraints>
<profiles>
<profile id="2976-c8b5-22b5-6992" name="War Weary" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">In the first turn of the game, models receive only 1 Activation Counter instead of 2.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="62d8-8353-5210-a336" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="11a9-04c3-b764-1e8e" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="7a9b-1573-3535-e6d8" name="Year of the Risen Sun" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3208-9ac6-d990-04d9" type="max"/>
</constraints>
<profiles>
<profile id="df09-88e9-4e9a-e553" name="Year of the Risen Sun" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play during the Starting Phase of Turn 1.
All models gain a Ki Token.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="da48-0f04-af4a-9efc" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="c8fe-e673-eee3-22d0" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="360a-f381-1b04-1c77" name="Ganbatte" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b2d8-5359-0f25-769a" type="max"/>
</constraints>
<profiles>
<profile id="eb75-433b-92b1-4327" name="Ganbatte" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">After the dice roll to see if the game will end, you may discard this card to re-roll the dice.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="89f6-5362-7b68-d5de" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="bd89-be53-df23-293f" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="8261-e13c-b4bb-2e9a" name="Blessing of Kah'Non" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a1f0-64ca-399f-0759" type="max"/>
</constraints>
<profiles>
<profile id="6c77-a681-00b3-5f50" name="Blessing of Kah'Non" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">This turn any Damage Roll where the individual dice values of the Damage Roll are the same number is ignored.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="af8b-cdeb-0c71-5330" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="0e52-b655-b9d8-fdaf" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="8626-5ed3-1ffd-ce1c" name="Celebration of Life" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="6da0-b320-b958-dc82" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="8ba4-3eff-26ff-dff5" type="max"/>
</constraints>
<profiles>
<profile id="330c-4c36-0e6c-38e4" name="Celebration of Life" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play in the Starting Phase.
All Soulless models gain Insignificant until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="baf0-4c75-c439-a483" name="Insignificant" hidden="false" targetId="1614-d86c-ef8a-c095" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="b8ce-00ab-5d27-f424" name="Cycle: Year of the Risen Sun" hidden="false" targetId="a745-0548-80c8-ece4" primary="false"/>
<categoryLink id="f626-0d10-9c36-dc78" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="53a9-8c3b-1666-1825" name="Unexpected Manoeuvre" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="2396-191f-e92e-ee25" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2396-191f-e92e-ee25" type="max"/>
</constraints>
<profiles>
<profile id="2100-2797-19fa-e1ab" name="Unexpected Manoeuvre" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">In the Starting Phase, remove a Friendly Destructible Terrain item from the table.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="a005-d179-08f0-c374" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="6473-6d74-6f34-c581" name="Meticulous Preparation" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="125c-9f8d-80c7-b70b" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="125c-9f8d-80c7-b70b" type="max"/>
</constraints>
<profiles>
<profile id="be8e-b92f-afc0-91c0" name="Meticulous Preparation" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">No Event cards may be played until the End Phase.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="fe05-1bb5-c244-f01d" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="4"/>
</costs>
</selectionEntry>
<selectionEntry id="996d-2ba4-6bbc-d5ab" name="Hiroto's New Plan" hidden="false" collective="false" import="true" type="upgrade">
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="c095-f9fb-f4ae-19d3" type="max"/>
</constraints>
<profiles>
<profile id="bbe2-95fe-5676-9154" name="Hiroto's New Plan" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">Your opponent may choose to automatically win the Tactical Test this turn. If they do, you may add an Activation Counter to any Friendly model.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="acf7-6c0c-6030-c4d7" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="1e31-1fcf-a8a4-7b52" name="Fraternal Reassurance" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="6a41-b2be-c6f3-0d98" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6a41-b2be-c6f3-0d98" type="max"/>
</constraints>
<profiles>
<profile id="1306-be36-923a-9dfb" name="Fraternal Reassurance" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When a Friendly model fails a Fear Test, if it is within 3" of another Friendly model it gains Steadfast until the End Phase.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1bd2-d1de-5fc3-7acd" name="Steadfast" hidden="false" targetId="95e7-3178-c29b-013c" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="75d5-67a1-95b0-f766" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="7e1f-2af7-ffca-3d66" name="Forethought" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="4953-a4ec-28d1-a726" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="4953-a4ec-28d1-a726" type="max"/>
</constraints>
<profiles>
<profile id="9968-8472-627b-bd4a" name="Forethought" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">When an Opposing Player uses an Event card costing 3 or less Rice, you may immediately play this card to cancel that Event card.
The Event card is discarfded just as if it had taken effect.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="48da-363a-62e5-82b9" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="e503-224d-de70-477f" name="Debts Must Be Paid" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="3f6b-a021-ebee-c904" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="3f6b-a021-ebee-c904" type="max"/>
</constraints>
<profiles>
<profile id="12cc-4fdd-3211-5dab" name="Debts Must Be Paid" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">Choose a model to gain Bodyguard [Hiroto](3") until the end of the activation.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="f0c8-b16f-2048-9451" name="Bodyguard" hidden="false" targetId="0286-6d10-a236-e0c3" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="4285-8b2a-75e1-e129" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="c471-1363-bb46-9d80" name="Ambush" hidden="false" collective="false" import="true" type="upgrade">
<modifierGroups>
<modifierGroup>
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="9402-edcc-93a2-aef1" type="lessThan"/>
</conditions>
<modifiers>
<modifier type="set" field="55e1-e844-a275-7518" value="0"/>
<modifier type="set" field="hidden" value="true"/>
</modifiers>
</modifierGroup>
</modifierGroups>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="55e1-e844-a275-7518" type="max"/>
</constraints>
<profiles>
<profile id="ab35-629a-dada-0f3a" name="Ambush" hidden="false" typeId="2f00-4eb0-a8cb-7022" typeName="Unique Effects">
<characteristics>
<characteristic name="Description" typeId="6de4-d067-c2aa-0dc2">X Friendly models gain Flank.
X cannot be greater than 3.
Requirement [Brotherhood Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="a814-e62f-08cb-78cd" name="Flank" hidden="false" targetId="a847-f02d-7e99-8a66" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="665b-6e30-2a54-64ac" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<selectionEntries>
<selectionEntry id="27a4-c5b0-bb93-ddd8" name="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="3d44-a9db-2f72-1642" type="min"/>
<constraint field="selections" scope="parent" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="3f40-4952-4a3d-be0a" type="max"/>
</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="eb36-6233-3b40-8bf2" name="Dauntless" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4750-f234-49e4-79c1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="89f9-4f50-ff6f-d2d2" type="max"/>
</constraints>
<profiles>
<profile id="90ca-1212-0815-0252" name="Dauntless" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play in the Starting Phase.
Hozumi models gain Immune [Frightened] until the End Phase.
Requirement [The Hozumi Family Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d8c4-5109-cf9f-7f10" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="8106-ba62-e9de-b2a1" name="Beloved Nobles" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="4750-f234-49e4-79c1" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="0ff0-e804-780b-f405" type="max"/>
</constraints>
<profiles>
<profile id="104b-4b87-39ec-ccc9" name="Beloved Nobles" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play during Ki Generation.
Immediately distribute 3 Ki Tokens between non-Soulless models in the Warband.
Requirement [The Hozumi Family Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c607-e8e9-0858-e9db" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="3f2d-1a8f-7d2a-be30" name="Swordsmanship" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4a-a40c-14eb-2f4f" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="71d7-761c-9354-cd87" type="max"/>
</constraints>
<profiles>
<profile id="5631-b0d9-8e1f-e7d5" name="Swordsmanship" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play before Deployment.
Each Time Kenmeina succeeds in an Attack or Defence of a Melee Exchange, gain 1 Scenario Point.
Each Time Hozumi Koga does not succeed in an Attack or Defence roll in a Melee Exchange, gain 1 Scenario Point. This effect lasts for the whole game.
Requirement [The Kiyozumi Family Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="2ce0-b80e-917f-646b" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="62dd-38f5-e949-df2b" name="Beneath Notice" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4a-a40c-14eb-2f4f" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="3" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="7d23-56a0-acc8-815a" type="max"/>
</constraints>
<profiles>
<profile id="92af-0c7f-b4de-2ba3" name="Beneath Notice" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">When a Kiyozumi model is involved in a Melee Exchange, the Kiyozumi model gains Indomitable (X) until the Melee Exchange is resolved.
X is equal to the number of non-Samurai the Kiyozumi model is in BtB with.
Requirement [ The Kiyozumi Family theme]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="8d10-d604-7b27-13e8" name="Indomitable " hidden="false" targetId="3beb-6f28-e7c4-a236" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="2609-e2cc-5f91-16b4" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="6e1a-076e-aebe-b586" name="Banished!" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0e4a-a40c-14eb-2f4f" type="lessThan"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="c829-fac0-8327-0541" type="max"/>
</constraints>
<profiles>
<profile id="dc8b-b8af-0978-60e4" name="Banished!" hidden="false" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">After Deployment, choose an Enemy Hozumi model, that model is placed Elsewhere and gains Flank, it may enter play using those rules.
Requirement [ The Kiyozumi Family Theme]</characteristic>
</characteristics>
</profile>
</profiles>
<infoLinks>
<infoLink id="1259-f319-b03c-2088" name="Flank" hidden="false" targetId="a847-f02d-7e99-8a66" type="rule"/>
</infoLinks>
<categoryLinks>
<categoryLink id="152a-7a54-5493-42ba" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="8190-7f85-01fa-26b6" name="Dharmic Path" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="6d74-ff5d-88f8-b569" type="max"/>
</constraints>
<profiles>
<profile id="6200-8067-4465-299d" name="Dharmic Path" hidden="true" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play during Deployment.
Gain a Scenario Point for each Event Card played by your Opponent for the rest of the game.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="76fd-321c-4f7f-091e" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="d8e5-440f-3c62-1002" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="f864-f08d-d75d-6c42" name="Disputed Ancestry" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="b8da-fe99-8153-dbc3" type="max"/>
</constraints>
<profiles>
<profile id="bee2-2f29-ef78-92ae" name="Disputed Ancestry" hidden="true" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play in the Starting Phase after Ki Generation.
Choose a model, that model replaces a Type of your choice with the Unknown Type until the End Phase.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="63a9-3490-c33d-fefd" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="e656-1e1a-8617-1a71" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="3"/>
</costs>
</selectionEntry>
<selectionEntry id="f52b-1d73-3408-3b11" name="Honourable Demise" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="0b85-0901-eb64-b84b" type="instanceOf"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="01fe-4612-e9aa-e2a2" type="max"/>
</constraints>
<profiles>
<profile id="deb0-11bd-fabb-51fc" name="Honourable Demise" hidden="true" 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, gain one Scenario Point for each Friendly non-Animal, non-lnsignificant, non-Soulless model Killed.
Exclusion [Savage Wave]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="f982-e6fb-cf9e-b926" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="ea1f-8a79-de23-e79a" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="9a67-6518-0258-3338" name="Imperial Censure" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="de1e-de2d-1044-bf56" type="lessThan"/>
</conditions>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="e86e-ba80-4e68-8a97" type="max"/>
</constraints>
<profiles>
<profile id="258d-3756-1273-a987" name="Imperial Censure" hidden="true" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play in the Starting Phase.
Choose a non-Animal, non-lnsignificant, non-Soulless Enemy model and remove an Activation Counter from that model.
Requirement [Warband containing an Imperial & Teishin model]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d18b-bda8-7988-da05" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="a4af-98e3-2573-d214" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="b05f-8c6f-d240-2cac" name="Opportune Uprising" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="3" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="a01a-b74d-426e-db12" type="max"/>
</constraints>
<profiles>
<profile id="0432-7816-b00b-390e" name="Opportune Uprising" hidden="true" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">Play when your Opponent uses a Pass Token.
Gain one Scenario Point.
You may play only one Opportune Uprising card per turn.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="e108-35b7-4b7b-3b7d" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="590c-c63f-2118-625a" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="1"/>
</costs>
</selectionEntry>
<selectionEntry id="51ed-d876-72eb-0060" name="Predatory Scent" hidden="false" collective="false" import="true" type="model">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" id="4db9-69ae-e6d2-0917" type="max"/>
</constraints>
<profiles>
<profile id="ec67-c9db-b7e5-2ed7" name="Predatory Scent" hidden="true" typeId="6fa2-988d-fc04-c751" typeName="Special Card (Terrain)">
<characteristics>
<characteristic name="Base" typeId="c40b-3106-986d-4db5">Card</characteristic>
<characteristic name="Passage" typeId="3df8-6a47-0c4d-73e7">Normal</characteristic>
<characteristic name="Visibility" typeId="9858-c2c1-b6fc-b75c">Clear</characteristic>
<characteristic name="Size" typeId="000a-cf92-4d1e-c934">Zero</characteristic>
<characteristic name="Traits" typeId="eaef-482b-c5d3-866e">Destructible</characteristic>
<characteristic name="Description" typeId="9cfa-9bd0-0b1b-9c06">Non-Unique Animal models consider this terrain as Impassable.
Animal models that begin their activations within this terrain element must declare an action that will move it out of the terrain (treat the terrain as Normal) or Stand Up.
If the Animal model cannot do so, it gains a Frightened Marker.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="9dcb-bbfb-1a3d-92c1" name="Ronin Terrain Cards" hidden="false" targetId="3df8-0340-a4a1-a8be" primary="true"/>
<categoryLink id="3183-dda4-95fb-130a" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="a273-9a66-44a9-e615" name="Sabaki Play" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditionGroups>
<conditionGroup type="or">
<conditions>
<condition field="selections" scope="primary-catalogue" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d615-aef7-31d5-367d" type="instanceOf"/>
<condition field="selections" scope="primary-catalogue" value="0" percentValue="false" shared="true" includeChildSelections="false" includeChildForces="false" childId="d2c8-91e9-1a97-89b4" type="instanceOf"/>
</conditions>
</conditionGroup>
</conditionGroups>
</modifier>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="d693-812b-1550-bf05" type="max"/>
</constraints>
<profiles>
<profile id="8525-cd8d-bd53-45c4" name="Sabaki Play" hidden="true" typeId="d2bb-86b4-edf3-c4e5" typeName="Special Card">
<characteristics>
<characteristic name="Description" typeId="b4b7-5338-e8e2-41fd">In the Starting Phase of the first turn you may place one Friendly model within I" of its current location.
If you do, your Opponent may also place one of their models within 1" of its current location, then you may reuse this card.
Each model may be placed only once by this card.
Exclusion [Jung, Minimoto]</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="d923-897e-9df9-5142" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="de94-5cde-6340-415f" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>
</categoryLinks>
<costs>
<cost name=" Rice" typeId="a111-8656-5c05-7415" value="2"/>
</costs>
</selectionEntry>
<selectionEntry id="7071-e0d5-31c8-b1fe" name="Unforeseen Outcome" hidden="false" collective="false" import="true" type="upgrade">
<modifiers>
<modifier type="set" field="hidden" value="true">
<conditions>
<condition field="selections" scope="force" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" childId="a745-0548-80c8-ece4" type="atLeast"/>
</conditions>
</modifier>
</modifiers>
<constraints>
<constraint field="selections" scope="roster" value="1" percentValue="false" shared="true" includeChildSelections="true" includeChildForces="true" id="2ab0-089a-9694-9414" type="max"/>
</constraints>
<profiles>
<profile id="43ef-b092-d45e-d9c1" name="Unforeseen Outcome" hidden="true" 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, each time an Enemy model is Damaged, a Friendly model gains 1 Ki Token.</characteristic>
</characteristics>
</profile>
</profiles>
<categoryLinks>
<categoryLink id="c069-af20-34ae-c8be" name="Ronin Event Cards" hidden="false" targetId="7638-6ad1-8829-91db" primary="true"/>
<categoryLink id="4c86-12f5-69bd-8013" name="Cycle: Weeping Sky" hidden="false" targetId="6da0-b320-b958-dc82" primary="false"/>