motely-wasm 5.6.1 → 5.6.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/jaml.schema.json +2287 -0
  2. package/package.json +38 -37
@@ -0,0 +1,2287 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://seedfinder.app/jaml.schema.json",
4
+ "version": "5.6.2",
5
+ "title": "JAML - Jimbo\u0027s Ante Markup Language",
6
+ "description": "Schema for Balatro seed filter configuration files (.jaml)",
7
+ "type": "object",
8
+ "properties": {
9
+ "id": {
10
+ "type": "string",
11
+ "description": "Canonical normalized identifier for this filter. Used as the stable filter ID when provided."
12
+ },
13
+ "name": {
14
+ "type": "string",
15
+ "description": "Display name of the filter"
16
+ },
17
+ "description": {
18
+ "type": "string",
19
+ "description": "Description of what this filter searches for"
20
+ },
21
+ "author": {
22
+ "type": "string",
23
+ "description": "Creator of the filter"
24
+ },
25
+ "dateCreated": {
26
+ "type": "string",
27
+ "format": "date-time",
28
+ "description": "ISO 8601 timestamp when filter was created"
29
+ },
30
+ "deck": {
31
+ "type": "string",
32
+ "enum": [
33
+ "Red",
34
+ "Blue",
35
+ "Yellow",
36
+ "Green",
37
+ "Black",
38
+ "Magic",
39
+ "Nebula",
40
+ "Ghost",
41
+ "Abandoned",
42
+ "Checkered",
43
+ "Zodiac",
44
+ "Painted",
45
+ "Anaglyph",
46
+ "Plasma",
47
+ "Erratic"
48
+ ],
49
+ "description": "Balatro deck to search with",
50
+ "default": "Red"
51
+ },
52
+ "stake": {
53
+ "type": "string",
54
+ "enum": [
55
+ "White",
56
+ "Red",
57
+ "Green",
58
+ "Black",
59
+ "Blue",
60
+ "Purple",
61
+ "Orange",
62
+ "Gold"
63
+ ],
64
+ "description": "Balatro stake level",
65
+ "default": "White"
66
+ },
67
+ "seeds": {
68
+ "type": "array",
69
+ "items": {
70
+ "type": "string"
71
+ },
72
+ "description": "Known seed examples associated with this filter."
73
+ },
74
+ "hashtags": {
75
+ "type": "array",
76
+ "items": {
77
+ "type": "string"
78
+ },
79
+ "description": "Optional discovery tags for this filter."
80
+ },
81
+ "aesthetics": {
82
+ "type": "array",
83
+ "description": "Optional seed-space constraints from JamlAesthetic (see definitions/JamlAesthetic). Applied when compatible; conflicts with host seeds, keywords, or random mode.",
84
+ "items": {
85
+ "$ref": "#/definitions/JamlAesthetic"
86
+ }
87
+ },
88
+ "defaults": {
89
+ "type": "object",
90
+ "description": "Default values applied to clauses when a clause does not specify its own values.",
91
+ "properties": {
92
+ "antes": {
93
+ "type": "array",
94
+ "items": {
95
+ "type": "integer",
96
+ "minimum": 0,
97
+ "maximum": 39
98
+ },
99
+ "description": "Default antes to check if a clause does not specify antes.",
100
+ "default": [
101
+ 1,
102
+ 2,
103
+ 3,
104
+ 4,
105
+ 5,
106
+ 6,
107
+ 7,
108
+ 8
109
+ ]
110
+ },
111
+ "boosterPacks": {
112
+ "type": "array",
113
+ "items": {
114
+ "type": "integer",
115
+ "minimum": 0,
116
+ "maximum": 5
117
+ },
118
+ "description": "Default pack offering slots to inspect.",
119
+ "default": [
120
+ 0,
121
+ 1,
122
+ 2,
123
+ 3,
124
+ 4,
125
+ 5
126
+ ]
127
+ },
128
+ "shopItems": {
129
+ "type": "array",
130
+ "items": {
131
+ "type": "integer",
132
+ "minimum": 0,
133
+ "maximum": 5
134
+ },
135
+ "description": "Default shop item slots to inspect.",
136
+ "default": [
137
+ 0,
138
+ 1,
139
+ 2,
140
+ 3,
141
+ 4,
142
+ 5
143
+ ]
144
+ },
145
+ "score": {
146
+ "type": "integer",
147
+ "minimum": 0,
148
+ "description": "Default score for should clauses.",
149
+ "default": 1
150
+ }
151
+ },
152
+ "additionalProperties": false
153
+ },
154
+ "must": {
155
+ "type": "array",
156
+ "description": "Required clauses. All listed clauses must match.",
157
+ "items": {
158
+ "$ref": "#/definitions/clause"
159
+ }
160
+ },
161
+ "should": {
162
+ "type": "array",
163
+ "description": "Scored clauses. Matching clauses add score but do not gate the seed by themselves.",
164
+ "items": {
165
+ "$ref": "#/definitions/clause"
166
+ }
167
+ },
168
+ "mustNot": {
169
+ "type": "array",
170
+ "description": "Rejected clauses. If any listed clause matches, the seed is rejected.",
171
+ "items": {
172
+ "$ref": "#/definitions/clause"
173
+ }
174
+ }
175
+ },
176
+ "definitions": {
177
+ "clause": {
178
+ "type": "object",
179
+ "properties": {
180
+ "type": {
181
+ "type": "string",
182
+ "enum": [
183
+ "Joker",
184
+ "CommonJoker",
185
+ "UncommonJoker",
186
+ "RareJoker",
187
+ "MixedJoker",
188
+ "SoulJoker",
189
+ "TarotCard",
190
+ "Planet",
191
+ "PlanetCard",
192
+ "Spectral",
193
+ "SpectralCard",
194
+ "SmallBlindTag",
195
+ "BigBlindTag",
196
+ "Voucher",
197
+ "StandardCard",
198
+ "Boss",
199
+ "BossBlind",
200
+ "Event",
201
+ "LuckyMoney",
202
+ "LuckyMult",
203
+ "MisprintMult",
204
+ "WheelOfFortune",
205
+ "CavendishExtinct",
206
+ "GrosMichelExtinct",
207
+ "ErraticRank",
208
+ "ErraticSuit",
209
+ "ErraticCard",
210
+ "StartingDraw",
211
+ "And",
212
+ "Or"
213
+ ],
214
+ "description": "Explicit clause type when using the type/value form."
215
+ },
216
+ "value": {
217
+ "type": "string",
218
+ "description": "Primary clause value when using the explicit type/value form."
219
+ },
220
+ "eventType": {
221
+ "type": "string",
222
+ "enum": [
223
+ "LuckyMoney",
224
+ "LuckyMult",
225
+ "MisprintMult",
226
+ "WheelOfFortune",
227
+ "CavendishExtinct",
228
+ "GrosMichelExtinct"
229
+ ],
230
+ "description": "Event clause value for the explicit type/eventType form."
231
+ },
232
+ "joker": {
233
+ "type": "string",
234
+ "enum": [
235
+ "Joker",
236
+ "GreedyJoker",
237
+ "LustyJoker",
238
+ "WrathfulJoker",
239
+ "GluttonousJoker",
240
+ "JollyJoker",
241
+ "ZanyJoker",
242
+ "MadJoker",
243
+ "CrazyJoker",
244
+ "DrollJoker",
245
+ "SlyJoker",
246
+ "WilyJoker",
247
+ "CleverJoker",
248
+ "DeviousJoker",
249
+ "CraftyJoker",
250
+ "HalfJoker",
251
+ "CreditCard",
252
+ "Banner",
253
+ "MysticSummit",
254
+ "EightBall",
255
+ "Misprint",
256
+ "RaisedFist",
257
+ "ChaostheClown",
258
+ "ScaryFace",
259
+ "AbstractJoker",
260
+ "DelayedGratification",
261
+ "GrosMichel",
262
+ "EvenSteven",
263
+ "OddTodd",
264
+ "Scholar",
265
+ "BusinessCard",
266
+ "Supernova",
267
+ "RideTheBus",
268
+ "Egg",
269
+ "Runner",
270
+ "IceCream",
271
+ "Splash",
272
+ "BlueJoker",
273
+ "FacelessJoker",
274
+ "GreenJoker",
275
+ "Superposition",
276
+ "ToDoList",
277
+ "Cavendish",
278
+ "RedCard",
279
+ "SquareJoker",
280
+ "RiffRaff",
281
+ "Photograph",
282
+ "ReservedParking",
283
+ "MailInRebate",
284
+ "Hallucination",
285
+ "FortuneTeller",
286
+ "Juggler",
287
+ "Drunkard",
288
+ "GoldenJoker",
289
+ "Popcorn",
290
+ "WalkieTalkie",
291
+ "SmileyFace",
292
+ "GoldenTicket",
293
+ "Swashbuckler",
294
+ "HangingChad",
295
+ "ShootTheMoon",
296
+ "JokerStencil",
297
+ "FourFingers",
298
+ "Mime",
299
+ "CeremonialDagger",
300
+ "MarbleJoker",
301
+ "LoyaltyCard",
302
+ "Dusk",
303
+ "Fibonacci",
304
+ "SteelJoker",
305
+ "Hack",
306
+ "Pareidolia",
307
+ "SpaceJoker",
308
+ "Burglar",
309
+ "Blackboard",
310
+ "SixthSense",
311
+ "Constellation",
312
+ "Hiker",
313
+ "CardSharp",
314
+ "Madness",
315
+ "Seance",
316
+ "Vampire",
317
+ "Shortcut",
318
+ "Hologram",
319
+ "Cloud9",
320
+ "Rocket",
321
+ "MidasMask",
322
+ "Luchador",
323
+ "GiftCard",
324
+ "TurtleBean",
325
+ "Erosion",
326
+ "ToTheMoon",
327
+ "StoneJoker",
328
+ "LuckyCat",
329
+ "Bull",
330
+ "DietCola",
331
+ "TradingCard",
332
+ "FlashCard",
333
+ "SpareTrousers",
334
+ "Ramen",
335
+ "Seltzer",
336
+ "Castle",
337
+ "MrBones",
338
+ "Acrobat",
339
+ "SockAndBuskin",
340
+ "Troubadour",
341
+ "Certificate",
342
+ "SmearedJoker",
343
+ "Throwback",
344
+ "RoughGem",
345
+ "Bloodstone",
346
+ "Arrowhead",
347
+ "OnyxAgate",
348
+ "GlassJoker",
349
+ "Showman",
350
+ "FlowerPot",
351
+ "MerryAndy",
352
+ "OopsAll6s",
353
+ "TheIdol",
354
+ "SeeingDouble",
355
+ "Matador",
356
+ "Satellite",
357
+ "Cartomancer",
358
+ "Astronomer",
359
+ "Bootstraps",
360
+ "DNA",
361
+ "Vagabond",
362
+ "Baron",
363
+ "Obelisk",
364
+ "BaseballCard",
365
+ "AncientJoker",
366
+ "Campfire",
367
+ "Blueprint",
368
+ "WeeJoker",
369
+ "HitTheRoad",
370
+ "TheDuo",
371
+ "TheTrio",
372
+ "TheFamily",
373
+ "TheOrder",
374
+ "TheTribe",
375
+ "Stuntman",
376
+ "InvisibleJoker",
377
+ "Brainstorm",
378
+ "DriversLicense",
379
+ "BurntJoker",
380
+ "Canio",
381
+ "Triboulet",
382
+ "Yorick",
383
+ "Chicot",
384
+ "Perkeo",
385
+ "any",
386
+ "anycommon",
387
+ "anyuncommon",
388
+ "anyrare",
389
+ "anylegendary"
390
+ ],
391
+ "description": "Joker clause."
392
+ },
393
+ "jokers": {
394
+ "type": "array",
395
+ "items": {
396
+ "type": "string",
397
+ "enum": [
398
+ "Joker",
399
+ "GreedyJoker",
400
+ "LustyJoker",
401
+ "WrathfulJoker",
402
+ "GluttonousJoker",
403
+ "JollyJoker",
404
+ "ZanyJoker",
405
+ "MadJoker",
406
+ "CrazyJoker",
407
+ "DrollJoker",
408
+ "SlyJoker",
409
+ "WilyJoker",
410
+ "CleverJoker",
411
+ "DeviousJoker",
412
+ "CraftyJoker",
413
+ "HalfJoker",
414
+ "CreditCard",
415
+ "Banner",
416
+ "MysticSummit",
417
+ "EightBall",
418
+ "Misprint",
419
+ "RaisedFist",
420
+ "ChaostheClown",
421
+ "ScaryFace",
422
+ "AbstractJoker",
423
+ "DelayedGratification",
424
+ "GrosMichel",
425
+ "EvenSteven",
426
+ "OddTodd",
427
+ "Scholar",
428
+ "BusinessCard",
429
+ "Supernova",
430
+ "RideTheBus",
431
+ "Egg",
432
+ "Runner",
433
+ "IceCream",
434
+ "Splash",
435
+ "BlueJoker",
436
+ "FacelessJoker",
437
+ "GreenJoker",
438
+ "Superposition",
439
+ "ToDoList",
440
+ "Cavendish",
441
+ "RedCard",
442
+ "SquareJoker",
443
+ "RiffRaff",
444
+ "Photograph",
445
+ "ReservedParking",
446
+ "MailInRebate",
447
+ "Hallucination",
448
+ "FortuneTeller",
449
+ "Juggler",
450
+ "Drunkard",
451
+ "GoldenJoker",
452
+ "Popcorn",
453
+ "WalkieTalkie",
454
+ "SmileyFace",
455
+ "GoldenTicket",
456
+ "Swashbuckler",
457
+ "HangingChad",
458
+ "ShootTheMoon",
459
+ "JokerStencil",
460
+ "FourFingers",
461
+ "Mime",
462
+ "CeremonialDagger",
463
+ "MarbleJoker",
464
+ "LoyaltyCard",
465
+ "Dusk",
466
+ "Fibonacci",
467
+ "SteelJoker",
468
+ "Hack",
469
+ "Pareidolia",
470
+ "SpaceJoker",
471
+ "Burglar",
472
+ "Blackboard",
473
+ "SixthSense",
474
+ "Constellation",
475
+ "Hiker",
476
+ "CardSharp",
477
+ "Madness",
478
+ "Seance",
479
+ "Vampire",
480
+ "Shortcut",
481
+ "Hologram",
482
+ "Cloud9",
483
+ "Rocket",
484
+ "MidasMask",
485
+ "Luchador",
486
+ "GiftCard",
487
+ "TurtleBean",
488
+ "Erosion",
489
+ "ToTheMoon",
490
+ "StoneJoker",
491
+ "LuckyCat",
492
+ "Bull",
493
+ "DietCola",
494
+ "TradingCard",
495
+ "FlashCard",
496
+ "SpareTrousers",
497
+ "Ramen",
498
+ "Seltzer",
499
+ "Castle",
500
+ "MrBones",
501
+ "Acrobat",
502
+ "SockAndBuskin",
503
+ "Troubadour",
504
+ "Certificate",
505
+ "SmearedJoker",
506
+ "Throwback",
507
+ "RoughGem",
508
+ "Bloodstone",
509
+ "Arrowhead",
510
+ "OnyxAgate",
511
+ "GlassJoker",
512
+ "Showman",
513
+ "FlowerPot",
514
+ "MerryAndy",
515
+ "OopsAll6s",
516
+ "TheIdol",
517
+ "SeeingDouble",
518
+ "Matador",
519
+ "Satellite",
520
+ "Cartomancer",
521
+ "Astronomer",
522
+ "Bootstraps",
523
+ "DNA",
524
+ "Vagabond",
525
+ "Baron",
526
+ "Obelisk",
527
+ "BaseballCard",
528
+ "AncientJoker",
529
+ "Campfire",
530
+ "Blueprint",
531
+ "WeeJoker",
532
+ "HitTheRoad",
533
+ "TheDuo",
534
+ "TheTrio",
535
+ "TheFamily",
536
+ "TheOrder",
537
+ "TheTribe",
538
+ "Stuntman",
539
+ "InvisibleJoker",
540
+ "Brainstorm",
541
+ "DriversLicense",
542
+ "BurntJoker",
543
+ "Canio",
544
+ "Triboulet",
545
+ "Yorick",
546
+ "Chicot",
547
+ "Perkeo",
548
+ "any",
549
+ "anycommon",
550
+ "anyuncommon",
551
+ "anyrare",
552
+ "anylegendary"
553
+ ]
554
+ },
555
+ "description": "Joker clause matching any listed joker names."
556
+ },
557
+ "commonJoker": {
558
+ "type": "string",
559
+ "enum": [
560
+ "Joker",
561
+ "GreedyJoker",
562
+ "LustyJoker",
563
+ "WrathfulJoker",
564
+ "GluttonousJoker",
565
+ "JollyJoker",
566
+ "ZanyJoker",
567
+ "MadJoker",
568
+ "CrazyJoker",
569
+ "DrollJoker",
570
+ "SlyJoker",
571
+ "WilyJoker",
572
+ "CleverJoker",
573
+ "DeviousJoker",
574
+ "CraftyJoker",
575
+ "HalfJoker",
576
+ "CreditCard",
577
+ "Banner",
578
+ "MysticSummit",
579
+ "EightBall",
580
+ "Misprint",
581
+ "RaisedFist",
582
+ "ChaostheClown",
583
+ "ScaryFace",
584
+ "AbstractJoker",
585
+ "DelayedGratification",
586
+ "GrosMichel",
587
+ "EvenSteven",
588
+ "OddTodd",
589
+ "Scholar",
590
+ "BusinessCard",
591
+ "Supernova",
592
+ "RideTheBus",
593
+ "Egg",
594
+ "Runner",
595
+ "IceCream",
596
+ "Splash",
597
+ "BlueJoker",
598
+ "FacelessJoker",
599
+ "GreenJoker",
600
+ "Superposition",
601
+ "ToDoList",
602
+ "Cavendish",
603
+ "RedCard",
604
+ "SquareJoker",
605
+ "RiffRaff",
606
+ "Photograph",
607
+ "ReservedParking",
608
+ "MailInRebate",
609
+ "Hallucination",
610
+ "FortuneTeller",
611
+ "Juggler",
612
+ "Drunkard",
613
+ "GoldenJoker",
614
+ "Popcorn",
615
+ "WalkieTalkie",
616
+ "SmileyFace",
617
+ "GoldenTicket",
618
+ "Swashbuckler",
619
+ "HangingChad",
620
+ "ShootTheMoon",
621
+ "any",
622
+ "anycommon"
623
+ ],
624
+ "description": "Common Joker clause."
625
+ },
626
+ "commonJokers": {
627
+ "type": "array",
628
+ "items": {
629
+ "type": "string",
630
+ "enum": [
631
+ "Joker",
632
+ "GreedyJoker",
633
+ "LustyJoker",
634
+ "WrathfulJoker",
635
+ "GluttonousJoker",
636
+ "JollyJoker",
637
+ "ZanyJoker",
638
+ "MadJoker",
639
+ "CrazyJoker",
640
+ "DrollJoker",
641
+ "SlyJoker",
642
+ "WilyJoker",
643
+ "CleverJoker",
644
+ "DeviousJoker",
645
+ "CraftyJoker",
646
+ "HalfJoker",
647
+ "CreditCard",
648
+ "Banner",
649
+ "MysticSummit",
650
+ "EightBall",
651
+ "Misprint",
652
+ "RaisedFist",
653
+ "ChaostheClown",
654
+ "ScaryFace",
655
+ "AbstractJoker",
656
+ "DelayedGratification",
657
+ "GrosMichel",
658
+ "EvenSteven",
659
+ "OddTodd",
660
+ "Scholar",
661
+ "BusinessCard",
662
+ "Supernova",
663
+ "RideTheBus",
664
+ "Egg",
665
+ "Runner",
666
+ "IceCream",
667
+ "Splash",
668
+ "BlueJoker",
669
+ "FacelessJoker",
670
+ "GreenJoker",
671
+ "Superposition",
672
+ "ToDoList",
673
+ "Cavendish",
674
+ "RedCard",
675
+ "SquareJoker",
676
+ "RiffRaff",
677
+ "Photograph",
678
+ "ReservedParking",
679
+ "MailInRebate",
680
+ "Hallucination",
681
+ "FortuneTeller",
682
+ "Juggler",
683
+ "Drunkard",
684
+ "GoldenJoker",
685
+ "Popcorn",
686
+ "WalkieTalkie",
687
+ "SmileyFace",
688
+ "GoldenTicket",
689
+ "Swashbuckler",
690
+ "HangingChad",
691
+ "ShootTheMoon",
692
+ "any",
693
+ "anycommon"
694
+ ]
695
+ },
696
+ "description": "Common Joker clause matching any listed common joker names."
697
+ },
698
+ "uncommonJoker": {
699
+ "type": "string",
700
+ "enum": [
701
+ "JokerStencil",
702
+ "FourFingers",
703
+ "Mime",
704
+ "CeremonialDagger",
705
+ "MarbleJoker",
706
+ "LoyaltyCard",
707
+ "Dusk",
708
+ "Fibonacci",
709
+ "SteelJoker",
710
+ "Hack",
711
+ "Pareidolia",
712
+ "SpaceJoker",
713
+ "Burglar",
714
+ "Blackboard",
715
+ "SixthSense",
716
+ "Constellation",
717
+ "Hiker",
718
+ "CardSharp",
719
+ "Madness",
720
+ "Seance",
721
+ "Vampire",
722
+ "Shortcut",
723
+ "Hologram",
724
+ "Cloud9",
725
+ "Rocket",
726
+ "MidasMask",
727
+ "Luchador",
728
+ "GiftCard",
729
+ "TurtleBean",
730
+ "Erosion",
731
+ "ToTheMoon",
732
+ "StoneJoker",
733
+ "LuckyCat",
734
+ "Bull",
735
+ "DietCola",
736
+ "TradingCard",
737
+ "FlashCard",
738
+ "SpareTrousers",
739
+ "Ramen",
740
+ "Seltzer",
741
+ "Castle",
742
+ "MrBones",
743
+ "Acrobat",
744
+ "SockAndBuskin",
745
+ "Troubadour",
746
+ "Certificate",
747
+ "SmearedJoker",
748
+ "Throwback",
749
+ "RoughGem",
750
+ "Bloodstone",
751
+ "Arrowhead",
752
+ "OnyxAgate",
753
+ "GlassJoker",
754
+ "Showman",
755
+ "FlowerPot",
756
+ "MerryAndy",
757
+ "OopsAll6s",
758
+ "TheIdol",
759
+ "SeeingDouble",
760
+ "Matador",
761
+ "Satellite",
762
+ "Cartomancer",
763
+ "Astronomer",
764
+ "Bootstraps",
765
+ "any",
766
+ "anyuncommon"
767
+ ],
768
+ "description": "Uncommon Joker clause."
769
+ },
770
+ "uncommonJokers": {
771
+ "type": "array",
772
+ "items": {
773
+ "type": "string",
774
+ "enum": [
775
+ "JokerStencil",
776
+ "FourFingers",
777
+ "Mime",
778
+ "CeremonialDagger",
779
+ "MarbleJoker",
780
+ "LoyaltyCard",
781
+ "Dusk",
782
+ "Fibonacci",
783
+ "SteelJoker",
784
+ "Hack",
785
+ "Pareidolia",
786
+ "SpaceJoker",
787
+ "Burglar",
788
+ "Blackboard",
789
+ "SixthSense",
790
+ "Constellation",
791
+ "Hiker",
792
+ "CardSharp",
793
+ "Madness",
794
+ "Seance",
795
+ "Vampire",
796
+ "Shortcut",
797
+ "Hologram",
798
+ "Cloud9",
799
+ "Rocket",
800
+ "MidasMask",
801
+ "Luchador",
802
+ "GiftCard",
803
+ "TurtleBean",
804
+ "Erosion",
805
+ "ToTheMoon",
806
+ "StoneJoker",
807
+ "LuckyCat",
808
+ "Bull",
809
+ "DietCola",
810
+ "TradingCard",
811
+ "FlashCard",
812
+ "SpareTrousers",
813
+ "Ramen",
814
+ "Seltzer",
815
+ "Castle",
816
+ "MrBones",
817
+ "Acrobat",
818
+ "SockAndBuskin",
819
+ "Troubadour",
820
+ "Certificate",
821
+ "SmearedJoker",
822
+ "Throwback",
823
+ "RoughGem",
824
+ "Bloodstone",
825
+ "Arrowhead",
826
+ "OnyxAgate",
827
+ "GlassJoker",
828
+ "Showman",
829
+ "FlowerPot",
830
+ "MerryAndy",
831
+ "OopsAll6s",
832
+ "TheIdol",
833
+ "SeeingDouble",
834
+ "Matador",
835
+ "Satellite",
836
+ "Cartomancer",
837
+ "Astronomer",
838
+ "Bootstraps",
839
+ "any",
840
+ "anyuncommon"
841
+ ]
842
+ },
843
+ "description": "Uncommon Joker clause matching any listed uncommon joker names."
844
+ },
845
+ "rareJoker": {
846
+ "type": "string",
847
+ "enum": [
848
+ "DNA",
849
+ "Vagabond",
850
+ "Baron",
851
+ "Obelisk",
852
+ "BaseballCard",
853
+ "AncientJoker",
854
+ "Campfire",
855
+ "Blueprint",
856
+ "WeeJoker",
857
+ "HitTheRoad",
858
+ "TheDuo",
859
+ "TheTrio",
860
+ "TheFamily",
861
+ "TheOrder",
862
+ "TheTribe",
863
+ "Stuntman",
864
+ "InvisibleJoker",
865
+ "Brainstorm",
866
+ "DriversLicense",
867
+ "BurntJoker",
868
+ "any",
869
+ "anyrare"
870
+ ],
871
+ "description": "Rare Joker clause."
872
+ },
873
+ "rareJokers": {
874
+ "type": "array",
875
+ "items": {
876
+ "type": "string",
877
+ "enum": [
878
+ "DNA",
879
+ "Vagabond",
880
+ "Baron",
881
+ "Obelisk",
882
+ "BaseballCard",
883
+ "AncientJoker",
884
+ "Campfire",
885
+ "Blueprint",
886
+ "WeeJoker",
887
+ "HitTheRoad",
888
+ "TheDuo",
889
+ "TheTrio",
890
+ "TheFamily",
891
+ "TheOrder",
892
+ "TheTribe",
893
+ "Stuntman",
894
+ "InvisibleJoker",
895
+ "Brainstorm",
896
+ "DriversLicense",
897
+ "BurntJoker",
898
+ "any",
899
+ "anyrare"
900
+ ]
901
+ },
902
+ "description": "Rare Joker clause matching any listed rare joker names."
903
+ },
904
+ "mixedJoker": {
905
+ "type": "string",
906
+ "enum": [
907
+ "Joker",
908
+ "GreedyJoker",
909
+ "LustyJoker",
910
+ "WrathfulJoker",
911
+ "GluttonousJoker",
912
+ "JollyJoker",
913
+ "ZanyJoker",
914
+ "MadJoker",
915
+ "CrazyJoker",
916
+ "DrollJoker",
917
+ "SlyJoker",
918
+ "WilyJoker",
919
+ "CleverJoker",
920
+ "DeviousJoker",
921
+ "CraftyJoker",
922
+ "HalfJoker",
923
+ "CreditCard",
924
+ "Banner",
925
+ "MysticSummit",
926
+ "EightBall",
927
+ "Misprint",
928
+ "RaisedFist",
929
+ "ChaostheClown",
930
+ "ScaryFace",
931
+ "AbstractJoker",
932
+ "DelayedGratification",
933
+ "GrosMichel",
934
+ "EvenSteven",
935
+ "OddTodd",
936
+ "Scholar",
937
+ "BusinessCard",
938
+ "Supernova",
939
+ "RideTheBus",
940
+ "Egg",
941
+ "Runner",
942
+ "IceCream",
943
+ "Splash",
944
+ "BlueJoker",
945
+ "FacelessJoker",
946
+ "GreenJoker",
947
+ "Superposition",
948
+ "ToDoList",
949
+ "Cavendish",
950
+ "RedCard",
951
+ "SquareJoker",
952
+ "RiffRaff",
953
+ "Photograph",
954
+ "ReservedParking",
955
+ "MailInRebate",
956
+ "Hallucination",
957
+ "FortuneTeller",
958
+ "Juggler",
959
+ "Drunkard",
960
+ "GoldenJoker",
961
+ "Popcorn",
962
+ "WalkieTalkie",
963
+ "SmileyFace",
964
+ "GoldenTicket",
965
+ "Swashbuckler",
966
+ "HangingChad",
967
+ "ShootTheMoon",
968
+ "JokerStencil",
969
+ "FourFingers",
970
+ "Mime",
971
+ "CeremonialDagger",
972
+ "MarbleJoker",
973
+ "LoyaltyCard",
974
+ "Dusk",
975
+ "Fibonacci",
976
+ "SteelJoker",
977
+ "Hack",
978
+ "Pareidolia",
979
+ "SpaceJoker",
980
+ "Burglar",
981
+ "Blackboard",
982
+ "SixthSense",
983
+ "Constellation",
984
+ "Hiker",
985
+ "CardSharp",
986
+ "Madness",
987
+ "Seance",
988
+ "Vampire",
989
+ "Shortcut",
990
+ "Hologram",
991
+ "Cloud9",
992
+ "Rocket",
993
+ "MidasMask",
994
+ "Luchador",
995
+ "GiftCard",
996
+ "TurtleBean",
997
+ "Erosion",
998
+ "ToTheMoon",
999
+ "StoneJoker",
1000
+ "LuckyCat",
1001
+ "Bull",
1002
+ "DietCola",
1003
+ "TradingCard",
1004
+ "FlashCard",
1005
+ "SpareTrousers",
1006
+ "Ramen",
1007
+ "Seltzer",
1008
+ "Castle",
1009
+ "MrBones",
1010
+ "Acrobat",
1011
+ "SockAndBuskin",
1012
+ "Troubadour",
1013
+ "Certificate",
1014
+ "SmearedJoker",
1015
+ "Throwback",
1016
+ "RoughGem",
1017
+ "Bloodstone",
1018
+ "Arrowhead",
1019
+ "OnyxAgate",
1020
+ "GlassJoker",
1021
+ "Showman",
1022
+ "FlowerPot",
1023
+ "MerryAndy",
1024
+ "OopsAll6s",
1025
+ "TheIdol",
1026
+ "SeeingDouble",
1027
+ "Matador",
1028
+ "Satellite",
1029
+ "Cartomancer",
1030
+ "Astronomer",
1031
+ "Bootstraps",
1032
+ "DNA",
1033
+ "Vagabond",
1034
+ "Baron",
1035
+ "Obelisk",
1036
+ "BaseballCard",
1037
+ "AncientJoker",
1038
+ "Campfire",
1039
+ "Blueprint",
1040
+ "WeeJoker",
1041
+ "HitTheRoad",
1042
+ "TheDuo",
1043
+ "TheTrio",
1044
+ "TheFamily",
1045
+ "TheOrder",
1046
+ "TheTribe",
1047
+ "Stuntman",
1048
+ "InvisibleJoker",
1049
+ "Brainstorm",
1050
+ "DriversLicense",
1051
+ "BurntJoker",
1052
+ "Canio",
1053
+ "Triboulet",
1054
+ "Yorick",
1055
+ "Chicot",
1056
+ "Perkeo",
1057
+ "any",
1058
+ "anycommon",
1059
+ "anyuncommon",
1060
+ "anyrare",
1061
+ "anylegendary"
1062
+ ],
1063
+ "description": "Mixed-rarity Joker clause."
1064
+ },
1065
+ "mixedJokers": {
1066
+ "type": "array",
1067
+ "items": {
1068
+ "type": "string",
1069
+ "enum": [
1070
+ "Joker",
1071
+ "GreedyJoker",
1072
+ "LustyJoker",
1073
+ "WrathfulJoker",
1074
+ "GluttonousJoker",
1075
+ "JollyJoker",
1076
+ "ZanyJoker",
1077
+ "MadJoker",
1078
+ "CrazyJoker",
1079
+ "DrollJoker",
1080
+ "SlyJoker",
1081
+ "WilyJoker",
1082
+ "CleverJoker",
1083
+ "DeviousJoker",
1084
+ "CraftyJoker",
1085
+ "HalfJoker",
1086
+ "CreditCard",
1087
+ "Banner",
1088
+ "MysticSummit",
1089
+ "EightBall",
1090
+ "Misprint",
1091
+ "RaisedFist",
1092
+ "ChaostheClown",
1093
+ "ScaryFace",
1094
+ "AbstractJoker",
1095
+ "DelayedGratification",
1096
+ "GrosMichel",
1097
+ "EvenSteven",
1098
+ "OddTodd",
1099
+ "Scholar",
1100
+ "BusinessCard",
1101
+ "Supernova",
1102
+ "RideTheBus",
1103
+ "Egg",
1104
+ "Runner",
1105
+ "IceCream",
1106
+ "Splash",
1107
+ "BlueJoker",
1108
+ "FacelessJoker",
1109
+ "GreenJoker",
1110
+ "Superposition",
1111
+ "ToDoList",
1112
+ "Cavendish",
1113
+ "RedCard",
1114
+ "SquareJoker",
1115
+ "RiffRaff",
1116
+ "Photograph",
1117
+ "ReservedParking",
1118
+ "MailInRebate",
1119
+ "Hallucination",
1120
+ "FortuneTeller",
1121
+ "Juggler",
1122
+ "Drunkard",
1123
+ "GoldenJoker",
1124
+ "Popcorn",
1125
+ "WalkieTalkie",
1126
+ "SmileyFace",
1127
+ "GoldenTicket",
1128
+ "Swashbuckler",
1129
+ "HangingChad",
1130
+ "ShootTheMoon",
1131
+ "JokerStencil",
1132
+ "FourFingers",
1133
+ "Mime",
1134
+ "CeremonialDagger",
1135
+ "MarbleJoker",
1136
+ "LoyaltyCard",
1137
+ "Dusk",
1138
+ "Fibonacci",
1139
+ "SteelJoker",
1140
+ "Hack",
1141
+ "Pareidolia",
1142
+ "SpaceJoker",
1143
+ "Burglar",
1144
+ "Blackboard",
1145
+ "SixthSense",
1146
+ "Constellation",
1147
+ "Hiker",
1148
+ "CardSharp",
1149
+ "Madness",
1150
+ "Seance",
1151
+ "Vampire",
1152
+ "Shortcut",
1153
+ "Hologram",
1154
+ "Cloud9",
1155
+ "Rocket",
1156
+ "MidasMask",
1157
+ "Luchador",
1158
+ "GiftCard",
1159
+ "TurtleBean",
1160
+ "Erosion",
1161
+ "ToTheMoon",
1162
+ "StoneJoker",
1163
+ "LuckyCat",
1164
+ "Bull",
1165
+ "DietCola",
1166
+ "TradingCard",
1167
+ "FlashCard",
1168
+ "SpareTrousers",
1169
+ "Ramen",
1170
+ "Seltzer",
1171
+ "Castle",
1172
+ "MrBones",
1173
+ "Acrobat",
1174
+ "SockAndBuskin",
1175
+ "Troubadour",
1176
+ "Certificate",
1177
+ "SmearedJoker",
1178
+ "Throwback",
1179
+ "RoughGem",
1180
+ "Bloodstone",
1181
+ "Arrowhead",
1182
+ "OnyxAgate",
1183
+ "GlassJoker",
1184
+ "Showman",
1185
+ "FlowerPot",
1186
+ "MerryAndy",
1187
+ "OopsAll6s",
1188
+ "TheIdol",
1189
+ "SeeingDouble",
1190
+ "Matador",
1191
+ "Satellite",
1192
+ "Cartomancer",
1193
+ "Astronomer",
1194
+ "Bootstraps",
1195
+ "DNA",
1196
+ "Vagabond",
1197
+ "Baron",
1198
+ "Obelisk",
1199
+ "BaseballCard",
1200
+ "AncientJoker",
1201
+ "Campfire",
1202
+ "Blueprint",
1203
+ "WeeJoker",
1204
+ "HitTheRoad",
1205
+ "TheDuo",
1206
+ "TheTrio",
1207
+ "TheFamily",
1208
+ "TheOrder",
1209
+ "TheTribe",
1210
+ "Stuntman",
1211
+ "InvisibleJoker",
1212
+ "Brainstorm",
1213
+ "DriversLicense",
1214
+ "BurntJoker",
1215
+ "Canio",
1216
+ "Triboulet",
1217
+ "Yorick",
1218
+ "Chicot",
1219
+ "Perkeo",
1220
+ "any",
1221
+ "anycommon",
1222
+ "anyuncommon",
1223
+ "anyrare",
1224
+ "anylegendary"
1225
+ ]
1226
+ },
1227
+ "description": "Mixed-rarity Joker clause matching any listed joker names."
1228
+ },
1229
+ "soulJoker": {
1230
+ "type": "string",
1231
+ "enum": [
1232
+ "Canio",
1233
+ "Triboulet",
1234
+ "Yorick",
1235
+ "Chicot",
1236
+ "Perkeo",
1237
+ "any",
1238
+ "anylegendary"
1239
+ ],
1240
+ "description": "Soul Joker clause."
1241
+ },
1242
+ "legendaryJoker": {
1243
+ "type": "string",
1244
+ "enum": [
1245
+ "Canio",
1246
+ "Triboulet",
1247
+ "Yorick",
1248
+ "Chicot",
1249
+ "Perkeo"
1250
+ ],
1251
+ "description": "Legendary Joker clause."
1252
+ },
1253
+ "voucher": {
1254
+ "type": "string",
1255
+ "enum": [
1256
+ "Overstock",
1257
+ "OverstockPlus",
1258
+ "ClearanceSale",
1259
+ "Liquidation",
1260
+ "Hone",
1261
+ "GlowUp",
1262
+ "RerollSurplus",
1263
+ "RerollGlut",
1264
+ "CrystalBall",
1265
+ "OmenGlobe",
1266
+ "Telescope",
1267
+ "Observatory",
1268
+ "Grabber",
1269
+ "NachoTong",
1270
+ "Wasteful",
1271
+ "Recyclomancy",
1272
+ "TarotMerchant",
1273
+ "TarotTycoon",
1274
+ "PlanetMerchant",
1275
+ "PlanetTycoon",
1276
+ "SeedMoney",
1277
+ "MoneyTree",
1278
+ "Blank",
1279
+ "Antimatter",
1280
+ "MagicTrick",
1281
+ "Illusion",
1282
+ "Hieroglyph",
1283
+ "Petroglyph",
1284
+ "DirectorsCut",
1285
+ "Retcon",
1286
+ "PaintBrush",
1287
+ "Palette"
1288
+ ],
1289
+ "description": "Voucher clause."
1290
+ },
1291
+ "vouchers": {
1292
+ "type": "array",
1293
+ "items": {
1294
+ "type": "string",
1295
+ "enum": [
1296
+ "Overstock",
1297
+ "OverstockPlus",
1298
+ "ClearanceSale",
1299
+ "Liquidation",
1300
+ "Hone",
1301
+ "GlowUp",
1302
+ "RerollSurplus",
1303
+ "RerollGlut",
1304
+ "CrystalBall",
1305
+ "OmenGlobe",
1306
+ "Telescope",
1307
+ "Observatory",
1308
+ "Grabber",
1309
+ "NachoTong",
1310
+ "Wasteful",
1311
+ "Recyclomancy",
1312
+ "TarotMerchant",
1313
+ "TarotTycoon",
1314
+ "PlanetMerchant",
1315
+ "PlanetTycoon",
1316
+ "SeedMoney",
1317
+ "MoneyTree",
1318
+ "Blank",
1319
+ "Antimatter",
1320
+ "MagicTrick",
1321
+ "Illusion",
1322
+ "Hieroglyph",
1323
+ "Petroglyph",
1324
+ "DirectorsCut",
1325
+ "Retcon",
1326
+ "PaintBrush",
1327
+ "Palette"
1328
+ ]
1329
+ },
1330
+ "description": "Voucher clause matching any listed voucher names."
1331
+ },
1332
+ "tarot": {
1333
+ "type": "string",
1334
+ "enum": [
1335
+ "TheFool",
1336
+ "TheMagician",
1337
+ "TheHighPriestess",
1338
+ "TheEmpress",
1339
+ "TheEmperor",
1340
+ "TheHierophant",
1341
+ "TheLovers",
1342
+ "TheChariot",
1343
+ "Justice",
1344
+ "TheHermit",
1345
+ "TheWheelOfFortune",
1346
+ "Strength",
1347
+ "TheHangedMan",
1348
+ "Death",
1349
+ "Temperance",
1350
+ "TheDevil",
1351
+ "TheTower",
1352
+ "TheStar",
1353
+ "TheMoon",
1354
+ "TheSun",
1355
+ "Judgement",
1356
+ "TheWorld"
1357
+ ],
1358
+ "description": "Tarot card clause."
1359
+ },
1360
+ "tarotCard": {
1361
+ "type": "string",
1362
+ "enum": [
1363
+ "TheFool",
1364
+ "TheMagician",
1365
+ "TheHighPriestess",
1366
+ "TheEmpress",
1367
+ "TheEmperor",
1368
+ "TheHierophant",
1369
+ "TheLovers",
1370
+ "TheChariot",
1371
+ "Justice",
1372
+ "TheHermit",
1373
+ "TheWheelOfFortune",
1374
+ "Strength",
1375
+ "TheHangedMan",
1376
+ "Death",
1377
+ "Temperance",
1378
+ "TheDevil",
1379
+ "TheTower",
1380
+ "TheStar",
1381
+ "TheMoon",
1382
+ "TheSun",
1383
+ "Judgement",
1384
+ "TheWorld"
1385
+ ],
1386
+ "description": "Tarot card clause."
1387
+ },
1388
+ "spectral": {
1389
+ "type": "string",
1390
+ "enum": [
1391
+ "Familiar",
1392
+ "Grim",
1393
+ "Incantation",
1394
+ "Talisman",
1395
+ "Aura",
1396
+ "Wraith",
1397
+ "Sigil",
1398
+ "Ouija",
1399
+ "Ectoplasm",
1400
+ "Immolate",
1401
+ "Ankh",
1402
+ "DejaVu",
1403
+ "Hex",
1404
+ "Trance",
1405
+ "Medium",
1406
+ "Cryptid",
1407
+ "TheSoul",
1408
+ "BlackHole"
1409
+ ],
1410
+ "description": "Spectral card clause."
1411
+ },
1412
+ "spectralCard": {
1413
+ "type": "string",
1414
+ "enum": [
1415
+ "Familiar",
1416
+ "Grim",
1417
+ "Incantation",
1418
+ "Talisman",
1419
+ "Aura",
1420
+ "Wraith",
1421
+ "Sigil",
1422
+ "Ouija",
1423
+ "Ectoplasm",
1424
+ "Immolate",
1425
+ "Ankh",
1426
+ "DejaVu",
1427
+ "Hex",
1428
+ "Trance",
1429
+ "Medium",
1430
+ "Cryptid",
1431
+ "TheSoul",
1432
+ "BlackHole"
1433
+ ],
1434
+ "description": "Spectral card clause."
1435
+ },
1436
+ "planet": {
1437
+ "type": "string",
1438
+ "enum": [
1439
+ "Mercury",
1440
+ "Venus",
1441
+ "Earth",
1442
+ "Mars",
1443
+ "Jupiter",
1444
+ "Saturn",
1445
+ "Uranus",
1446
+ "Neptune",
1447
+ "Pluto",
1448
+ "PlanetX",
1449
+ "Ceres",
1450
+ "Eris"
1451
+ ],
1452
+ "description": "Planet card clause."
1453
+ },
1454
+ "planetCard": {
1455
+ "type": "string",
1456
+ "enum": [
1457
+ "Mercury",
1458
+ "Venus",
1459
+ "Earth",
1460
+ "Mars",
1461
+ "Jupiter",
1462
+ "Saturn",
1463
+ "Uranus",
1464
+ "Neptune",
1465
+ "Pluto",
1466
+ "PlanetX",
1467
+ "Ceres",
1468
+ "Eris"
1469
+ ],
1470
+ "description": "Planet card clause."
1471
+ },
1472
+ "boss": {
1473
+ "type": "string",
1474
+ "enum": [
1475
+ "TheClub",
1476
+ "TheGoad",
1477
+ "TheHead",
1478
+ "TheHook",
1479
+ "TheManacle",
1480
+ "ThePillar",
1481
+ "ThePsychic",
1482
+ "TheWindow",
1483
+ "TheArm",
1484
+ "TheFish",
1485
+ "TheFlint",
1486
+ "TheHouse",
1487
+ "TheMark",
1488
+ "TheMouth",
1489
+ "TheNeedle",
1490
+ "TheWall",
1491
+ "TheWater",
1492
+ "TheWheel",
1493
+ "TheEye",
1494
+ "TheTooth",
1495
+ "ThePlant",
1496
+ "TheSerpent",
1497
+ "TheOx",
1498
+ "AmberAcorn",
1499
+ "CeruleanBell",
1500
+ "CrimsonHeart",
1501
+ "VerdantLeaf",
1502
+ "VioletVessel"
1503
+ ],
1504
+ "description": "Boss clause."
1505
+ },
1506
+ "tag": {
1507
+ "type": "string",
1508
+ "enum": [
1509
+ "UncommonTag",
1510
+ "RareTag",
1511
+ "NegativeTag",
1512
+ "FoilTag",
1513
+ "HolographicTag",
1514
+ "PolychromeTag",
1515
+ "InvestmentTag",
1516
+ "VoucherTag",
1517
+ "BossTag",
1518
+ "StandardTag",
1519
+ "CharmTag",
1520
+ "MeteorTag",
1521
+ "BuffoonTag",
1522
+ "HandyTag",
1523
+ "GarbageTag",
1524
+ "EtherealTag",
1525
+ "CouponTag",
1526
+ "DoubleTag",
1527
+ "JuggleTag",
1528
+ "D6Tag",
1529
+ "TopupTag",
1530
+ "SpeedTag",
1531
+ "OrbitalTag",
1532
+ "EconomyTag"
1533
+ ],
1534
+ "description": "Tag clause matching either blind position."
1535
+ },
1536
+ "smallBlindTag": {
1537
+ "type": "string",
1538
+ "enum": [
1539
+ "UncommonTag",
1540
+ "RareTag",
1541
+ "NegativeTag",
1542
+ "FoilTag",
1543
+ "HolographicTag",
1544
+ "PolychromeTag",
1545
+ "InvestmentTag",
1546
+ "VoucherTag",
1547
+ "BossTag",
1548
+ "StandardTag",
1549
+ "CharmTag",
1550
+ "MeteorTag",
1551
+ "BuffoonTag",
1552
+ "HandyTag",
1553
+ "GarbageTag",
1554
+ "EtherealTag",
1555
+ "CouponTag",
1556
+ "DoubleTag",
1557
+ "JuggleTag",
1558
+ "D6Tag",
1559
+ "TopupTag",
1560
+ "SpeedTag",
1561
+ "OrbitalTag",
1562
+ "EconomyTag"
1563
+ ],
1564
+ "description": "Small blind tag clause."
1565
+ },
1566
+ "bigBlindTag": {
1567
+ "type": "string",
1568
+ "enum": [
1569
+ "UncommonTag",
1570
+ "RareTag",
1571
+ "NegativeTag",
1572
+ "FoilTag",
1573
+ "HolographicTag",
1574
+ "PolychromeTag",
1575
+ "InvestmentTag",
1576
+ "VoucherTag",
1577
+ "BossTag",
1578
+ "StandardTag",
1579
+ "CharmTag",
1580
+ "MeteorTag",
1581
+ "BuffoonTag",
1582
+ "HandyTag",
1583
+ "GarbageTag",
1584
+ "EtherealTag",
1585
+ "CouponTag",
1586
+ "DoubleTag",
1587
+ "JuggleTag",
1588
+ "D6Tag",
1589
+ "TopupTag",
1590
+ "SpeedTag",
1591
+ "OrbitalTag",
1592
+ "EconomyTag"
1593
+ ],
1594
+ "description": "Big blind tag clause."
1595
+ },
1596
+ "standardCard": {
1597
+ "type": "string",
1598
+ "enum": [
1599
+ "C2",
1600
+ "C3",
1601
+ "C4",
1602
+ "C5",
1603
+ "C6",
1604
+ "C7",
1605
+ "C8",
1606
+ "C9",
1607
+ "C10",
1608
+ "CJ",
1609
+ "CQ",
1610
+ "CK",
1611
+ "CA",
1612
+ "D2",
1613
+ "D3",
1614
+ "D4",
1615
+ "D5",
1616
+ "D6",
1617
+ "D7",
1618
+ "D8",
1619
+ "D9",
1620
+ "D10",
1621
+ "DJ",
1622
+ "DQ",
1623
+ "DK",
1624
+ "DA",
1625
+ "H2",
1626
+ "H3",
1627
+ "H4",
1628
+ "H5",
1629
+ "H6",
1630
+ "H7",
1631
+ "H8",
1632
+ "H9",
1633
+ "H10",
1634
+ "HJ",
1635
+ "HQ",
1636
+ "HK",
1637
+ "HA",
1638
+ "S2",
1639
+ "S3",
1640
+ "S4",
1641
+ "S5",
1642
+ "S6",
1643
+ "S7",
1644
+ "S8",
1645
+ "S9",
1646
+ "S10",
1647
+ "SJ",
1648
+ "SQ",
1649
+ "SK",
1650
+ "SA"
1651
+ ],
1652
+ "description": "Playing card clause."
1653
+ },
1654
+ "erraticRank": {
1655
+ "type": "string",
1656
+ "enum": [
1657
+ "Two",
1658
+ "Three",
1659
+ "Four",
1660
+ "Five",
1661
+ "Six",
1662
+ "Seven",
1663
+ "Eight",
1664
+ "Nine",
1665
+ "Ten",
1666
+ "2",
1667
+ "3",
1668
+ "4",
1669
+ "5",
1670
+ "6",
1671
+ "7",
1672
+ "8",
1673
+ "9",
1674
+ "10",
1675
+ "T",
1676
+ "J",
1677
+ "Jack",
1678
+ "Q",
1679
+ "Queen",
1680
+ "K",
1681
+ "King",
1682
+ "A",
1683
+ "Ace"
1684
+ ],
1685
+ "description": "Erratic deck rank clause."
1686
+ },
1687
+ "erraticSuit": {
1688
+ "type": "string",
1689
+ "enum": [
1690
+ "Hearts",
1691
+ "Diamonds",
1692
+ "Clubs",
1693
+ "Spades",
1694
+ "H",
1695
+ "D",
1696
+ "C",
1697
+ "S"
1698
+ ],
1699
+ "description": "Erratic deck suit clause."
1700
+ },
1701
+ "erraticCard": {
1702
+ "type": "string",
1703
+ "enum": [
1704
+ "C2",
1705
+ "C3",
1706
+ "C4",
1707
+ "C5",
1708
+ "C6",
1709
+ "C7",
1710
+ "C8",
1711
+ "C9",
1712
+ "C10",
1713
+ "CJ",
1714
+ "CQ",
1715
+ "CK",
1716
+ "CA",
1717
+ "D2",
1718
+ "D3",
1719
+ "D4",
1720
+ "D5",
1721
+ "D6",
1722
+ "D7",
1723
+ "D8",
1724
+ "D9",
1725
+ "D10",
1726
+ "DJ",
1727
+ "DQ",
1728
+ "DK",
1729
+ "DA",
1730
+ "H2",
1731
+ "H3",
1732
+ "H4",
1733
+ "H5",
1734
+ "H6",
1735
+ "H7",
1736
+ "H8",
1737
+ "H9",
1738
+ "H10",
1739
+ "HJ",
1740
+ "HQ",
1741
+ "HK",
1742
+ "HA",
1743
+ "S2",
1744
+ "S3",
1745
+ "S4",
1746
+ "S5",
1747
+ "S6",
1748
+ "S7",
1749
+ "S8",
1750
+ "S9",
1751
+ "S10",
1752
+ "SJ",
1753
+ "SQ",
1754
+ "SK",
1755
+ "SA"
1756
+ ],
1757
+ "description": "Erratic deck card clause."
1758
+ },
1759
+ "startingDraw": {
1760
+ "type": "string",
1761
+ "enum": [
1762
+ "C2",
1763
+ "C3",
1764
+ "C4",
1765
+ "C5",
1766
+ "C6",
1767
+ "C7",
1768
+ "C8",
1769
+ "C9",
1770
+ "C10",
1771
+ "CJ",
1772
+ "CQ",
1773
+ "CK",
1774
+ "CA",
1775
+ "D2",
1776
+ "D3",
1777
+ "D4",
1778
+ "D5",
1779
+ "D6",
1780
+ "D7",
1781
+ "D8",
1782
+ "D9",
1783
+ "D10",
1784
+ "DJ",
1785
+ "DQ",
1786
+ "DK",
1787
+ "DA",
1788
+ "H2",
1789
+ "H3",
1790
+ "H4",
1791
+ "H5",
1792
+ "H6",
1793
+ "H7",
1794
+ "H8",
1795
+ "H9",
1796
+ "H10",
1797
+ "HJ",
1798
+ "HQ",
1799
+ "HK",
1800
+ "HA",
1801
+ "S2",
1802
+ "S3",
1803
+ "S4",
1804
+ "S5",
1805
+ "S6",
1806
+ "S7",
1807
+ "S8",
1808
+ "S9",
1809
+ "S10",
1810
+ "SJ",
1811
+ "SQ",
1812
+ "SK",
1813
+ "SA"
1814
+ ],
1815
+ "description": "Starting draw clause."
1816
+ },
1817
+ "event": {
1818
+ "type": "string",
1819
+ "enum": [
1820
+ "LuckyMoney",
1821
+ "LuckyMult",
1822
+ "MisprintMult",
1823
+ "WheelOfFortune",
1824
+ "CavendishExtinct",
1825
+ "GrosMichelExtinct"
1826
+ ],
1827
+ "description": "Event clause."
1828
+ },
1829
+ "antes": {
1830
+ "type": "array",
1831
+ "items": {
1832
+ "type": "integer",
1833
+ "minimum": 0,
1834
+ "maximum": 39
1835
+ },
1836
+ "description": "Which antes to search in."
1837
+ },
1838
+ "score": {
1839
+ "type": "integer",
1840
+ "minimum": 0,
1841
+ "description": "Score contribution for should clauses.",
1842
+ "default": 1
1843
+ },
1844
+ "min": {
1845
+ "type": "integer",
1846
+ "minimum": 0,
1847
+ "description": "Minimum matches required for this clause."
1848
+ },
1849
+ "max": {
1850
+ "type": "integer",
1851
+ "minimum": 0,
1852
+ "description": "Maximum matches allowed for this clause."
1853
+ },
1854
+ "label": {
1855
+ "type": "string",
1856
+ "description": "Custom label for result output."
1857
+ },
1858
+ "edition": {
1859
+ "type": "string",
1860
+ "enum": [
1861
+ "Foil",
1862
+ "Holographic",
1863
+ "Polychrome",
1864
+ "Negative"
1865
+ ],
1866
+ "description": "Required edition for matching items."
1867
+ },
1868
+ "stickers": {
1869
+ "type": "array",
1870
+ "items": {
1871
+ "type": "string",
1872
+ "enum": [
1873
+ "Eternal",
1874
+ "Perishable",
1875
+ "Rental"
1876
+ ]
1877
+ },
1878
+ "description": "Required joker stickers."
1879
+ },
1880
+ "seal": {
1881
+ "type": "string",
1882
+ "enum": [
1883
+ "Gold",
1884
+ "Red",
1885
+ "Blue",
1886
+ "Purple"
1887
+ ],
1888
+ "description": "Required seal for playing cards."
1889
+ },
1890
+ "enhancement": {
1891
+ "type": "string",
1892
+ "enum": [
1893
+ "Bonus",
1894
+ "Mult",
1895
+ "Wild",
1896
+ "Glass",
1897
+ "Steel",
1898
+ "Stone",
1899
+ "Gold",
1900
+ "Lucky"
1901
+ ],
1902
+ "description": "Required enhancement for playing cards."
1903
+ },
1904
+ "rank": {
1905
+ "type": "string",
1906
+ "enum": [
1907
+ "Two",
1908
+ "Three",
1909
+ "Four",
1910
+ "Five",
1911
+ "Six",
1912
+ "Seven",
1913
+ "Eight",
1914
+ "Nine",
1915
+ "Ten",
1916
+ "2",
1917
+ "3",
1918
+ "4",
1919
+ "5",
1920
+ "6",
1921
+ "7",
1922
+ "8",
1923
+ "9",
1924
+ "10",
1925
+ "T",
1926
+ "J",
1927
+ "Jack",
1928
+ "Q",
1929
+ "Queen",
1930
+ "K",
1931
+ "King",
1932
+ "A",
1933
+ "Ace"
1934
+ ],
1935
+ "description": "Required rank for playing-card-based clauses."
1936
+ },
1937
+ "suit": {
1938
+ "type": "string",
1939
+ "enum": [
1940
+ "Hearts",
1941
+ "Diamonds",
1942
+ "Clubs",
1943
+ "Spades",
1944
+ "H",
1945
+ "D",
1946
+ "C",
1947
+ "S"
1948
+ ],
1949
+ "description": "Required suit for playing-card-based clauses."
1950
+ },
1951
+ "rolls": {
1952
+ "type": "array",
1953
+ "items": {
1954
+ "type": "integer",
1955
+ "minimum": 0
1956
+ },
1957
+ "description": "Event occurrence indices to check."
1958
+ },
1959
+ "multValue": {
1960
+ "type": "integer",
1961
+ "minimum": 0,
1962
+ "description": "Exact mult value for MisprintMult event (0-23). If omitted, matches any value.",
1963
+ "maximum": 23
1964
+ },
1965
+ "shopItems": {
1966
+ "type": "array",
1967
+ "items": {
1968
+ "type": "integer",
1969
+ "minimum": 0,
1970
+ "maximum": 1023
1971
+ },
1972
+ "description": "Clause-level source mapping for shop item slots."
1973
+ },
1974
+ "boosterPacks": {
1975
+ "type": "array",
1976
+ "items": {
1977
+ "type": "integer",
1978
+ "minimum": 0,
1979
+ "maximum": 5
1980
+ },
1981
+ "description": "Clause-level source mapping for pack offering slots."
1982
+ },
1983
+ "minShopSlot": {
1984
+ "type": "integer",
1985
+ "minimum": 0,
1986
+ "description": "Minimum shop slot index for range generation.",
1987
+ "maximum": 1023
1988
+ },
1989
+ "maxShopSlot": {
1990
+ "type": "integer",
1991
+ "minimum": 0,
1992
+ "description": "Maximum shop slot index for range generation.",
1993
+ "maximum": 1023
1994
+ },
1995
+ "minPackSlot": {
1996
+ "type": "integer",
1997
+ "minimum": 0,
1998
+ "description": "Minimum pack slot index for range generation.",
1999
+ "maximum": 5
2000
+ },
2001
+ "maxPackSlot": {
2002
+ "type": "integer",
2003
+ "minimum": 0,
2004
+ "description": "Maximum pack slot index for range generation.",
2005
+ "maximum": 5
2006
+ },
2007
+ "sources": {
2008
+ "type": "object",
2009
+ "description": "Source mapping that describes where the clause may be satisfied.",
2010
+ "properties": {
2011
+ "shopItems": {
2012
+ "type": "array",
2013
+ "items": {
2014
+ "type": "integer",
2015
+ "minimum": 0,
2016
+ "maximum": 1023
2017
+ },
2018
+ "description": "Shop item slot indices."
2019
+ },
2020
+ "boosterPacks": {
2021
+ "type": "array",
2022
+ "items": {
2023
+ "type": "integer",
2024
+ "minimum": 0,
2025
+ "maximum": 5
2026
+ },
2027
+ "description": "Pack offering slot indices."
2028
+ },
2029
+ "minShopSlot": {
2030
+ "type": "integer",
2031
+ "minimum": 0,
2032
+ "description": "Minimum shop slot index for range generation.",
2033
+ "maximum": 1023
2034
+ },
2035
+ "maxShopSlot": {
2036
+ "type": "integer",
2037
+ "minimum": 0,
2038
+ "description": "Maximum shop slot index for range generation.",
2039
+ "maximum": 1023
2040
+ },
2041
+ "minPackSlot": {
2042
+ "type": "integer",
2043
+ "minimum": 0,
2044
+ "description": "Minimum pack slot index for range generation.",
2045
+ "maximum": 5
2046
+ },
2047
+ "maxPackSlot": {
2048
+ "type": "integer",
2049
+ "minimum": 0,
2050
+ "description": "Maximum pack slot index for range generation.",
2051
+ "maximum": 5
2052
+ },
2053
+ "tags": {
2054
+ "type": "boolean",
2055
+ "description": "Allow tag-based sources."
2056
+ },
2057
+ "requireMega": {
2058
+ "type": "boolean",
2059
+ "description": "Require Mega pack sources where applicable."
2060
+ },
2061
+ "judgement": {
2062
+ "type": "array",
2063
+ "items": {
2064
+ "type": "integer",
2065
+ "minimum": 0
2066
+ },
2067
+ "description": "Judgement roll indices."
2068
+ },
2069
+ "rareTag": {
2070
+ "type": "array",
2071
+ "items": {
2072
+ "type": "integer",
2073
+ "minimum": 0
2074
+ },
2075
+ "description": "Rare Tag roll indices."
2076
+ },
2077
+ "uncommonTag": {
2078
+ "type": "array",
2079
+ "items": {
2080
+ "type": "integer",
2081
+ "minimum": 0
2082
+ },
2083
+ "description": "Uncommon Tag roll indices."
2084
+ },
2085
+ "wraith": {
2086
+ "type": "array",
2087
+ "items": {
2088
+ "type": "integer",
2089
+ "minimum": 0
2090
+ },
2091
+ "description": "Wraith roll indices."
2092
+ },
2093
+ "soulCard": {
2094
+ "type": "array",
2095
+ "items": {
2096
+ "type": "integer",
2097
+ "minimum": 0
2098
+ },
2099
+ "description": "Soul card roll indices."
2100
+ },
2101
+ "riffRaff": {
2102
+ "type": "array",
2103
+ "items": {
2104
+ "type": "integer",
2105
+ "minimum": 0
2106
+ },
2107
+ "description": "Riff-Raff roll indices."
2108
+ },
2109
+ "purpleSealOrEightBall": {
2110
+ "type": "array",
2111
+ "items": {
2112
+ "type": "integer",
2113
+ "minimum": 0
2114
+ },
2115
+ "description": "Purple Seal or 8 Ball tarot roll indices."
2116
+ },
2117
+ "emperor": {
2118
+ "type": "array",
2119
+ "items": {
2120
+ "type": "integer",
2121
+ "minimum": 0
2122
+ },
2123
+ "description": "Emperor roll indices."
2124
+ },
2125
+ "sixthSense": {
2126
+ "type": "array",
2127
+ "items": {
2128
+ "type": "integer",
2129
+ "minimum": 0
2130
+ },
2131
+ "description": "Sixth Sense roll indices."
2132
+ },
2133
+ "seance": {
2134
+ "type": "array",
2135
+ "items": {
2136
+ "type": "integer",
2137
+ "minimum": 0
2138
+ },
2139
+ "description": "Seance roll indices."
2140
+ },
2141
+ "certificate": {
2142
+ "type": "array",
2143
+ "items": {
2144
+ "type": "integer",
2145
+ "minimum": 0
2146
+ },
2147
+ "description": "Certificate roll indices."
2148
+ },
2149
+ "incantation": {
2150
+ "type": "array",
2151
+ "items": {
2152
+ "type": "integer",
2153
+ "minimum": 0
2154
+ },
2155
+ "description": "Incantation roll indices."
2156
+ },
2157
+ "familiar": {
2158
+ "type": "array",
2159
+ "items": {
2160
+ "type": "integer",
2161
+ "minimum": 0
2162
+ },
2163
+ "description": "Familiar roll indices."
2164
+ },
2165
+ "grim": {
2166
+ "type": "array",
2167
+ "items": {
2168
+ "type": "integer",
2169
+ "minimum": 0
2170
+ },
2171
+ "description": "Grim roll indices."
2172
+ },
2173
+ "deckDraw": {
2174
+ "type": "array",
2175
+ "items": {
2176
+ "type": "integer",
2177
+ "minimum": 0
2178
+ },
2179
+ "description": "Deck draw positions."
2180
+ },
2181
+ "uncommonShopJokers": {
2182
+ "type": "array",
2183
+ "items": {
2184
+ "type": "integer",
2185
+ "minimum": 0
2186
+ },
2187
+ "description": "Raw uncommon shop joker stream positions."
2188
+ },
2189
+ "rareShopJokers": {
2190
+ "type": "array",
2191
+ "items": {
2192
+ "type": "integer",
2193
+ "minimum": 0
2194
+ },
2195
+ "description": "Raw rare shop joker stream positions."
2196
+ },
2197
+ "commonShopJokers": {
2198
+ "type": "array",
2199
+ "items": {
2200
+ "type": "integer",
2201
+ "minimum": 0
2202
+ },
2203
+ "description": "Raw common shop joker stream positions."
2204
+ },
2205
+ "allShopJokers": {
2206
+ "type": "array",
2207
+ "items": {
2208
+ "type": "integer",
2209
+ "minimum": 0
2210
+ },
2211
+ "description": "Raw shop joker stream positions across all rarities."
2212
+ }
2213
+ },
2214
+ "additionalProperties": false
2215
+ },
2216
+ "and": {
2217
+ "type": "array",
2218
+ "description": "Nested AND clause list.",
2219
+ "items": {
2220
+ "$ref": "#/definitions/clause"
2221
+ }
2222
+ },
2223
+ "or": {
2224
+ "type": "array",
2225
+ "description": "Nested OR clause list.",
2226
+ "items": {
2227
+ "$ref": "#/definitions/clause"
2228
+ }
2229
+ }
2230
+ },
2231
+ "allOf": [
2232
+ {
2233
+ "if": {
2234
+ "anyOf": [
2235
+ {
2236
+ "required": [
2237
+ "event"
2238
+ ]
2239
+ },
2240
+ {
2241
+ "required": [
2242
+ "eventType"
2243
+ ]
2244
+ },
2245
+ {
2246
+ "properties": {
2247
+ "type": {
2248
+ "enum": [
2249
+ "Event",
2250
+ "LuckyMoney",
2251
+ "LuckyMult",
2252
+ "MisprintMult",
2253
+ "WheelOfFortune",
2254
+ "CavendishExtinct",
2255
+ "GrosMichelExtinct"
2256
+ ]
2257
+ }
2258
+ },
2259
+ "required": [
2260
+ "type"
2261
+ ]
2262
+ }
2263
+ ]
2264
+ },
2265
+ "then": {
2266
+ "not": {
2267
+ "required": [
2268
+ "antes"
2269
+ ]
2270
+ }
2271
+ }
2272
+ }
2273
+ ],
2274
+ "additionalProperties": false,
2275
+ "minProperties": 1
2276
+ },
2277
+ "JamlAesthetic": {
2278
+ "title": "JamlAesthetic",
2279
+ "description": "Named constraint on which seeds participate in search. Motely: see JamlAesthetics for enumeration and Matches(); seed alphabet is Motely.SeedDigits, max length Motely.MaxSeedLength.",
2280
+ "type": "string",
2281
+ "enum": [
2282
+ "palindrome"
2283
+ ]
2284
+ }
2285
+ },
2286
+ "additionalProperties": false
2287
+ }