jaml-schema 6.1.1

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 +2370 -0
  2. package/package.json +22 -0
@@ -0,0 +1,2370 @@
1
+ {
2
+ "$schema": "http://json-schema.org/draft-07/schema#",
3
+ "$id": "https://seedfinder.app/jaml.schema.json",
4
+ "version": "7.0.0",
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
+ "any",
1251
+ "anylegendary"
1252
+ ],
1253
+ "description": "Legendary Joker clause."
1254
+ },
1255
+ "voucher": {
1256
+ "type": "string",
1257
+ "enum": [
1258
+ "Overstock",
1259
+ "OverstockPlus",
1260
+ "ClearanceSale",
1261
+ "Liquidation",
1262
+ "Hone",
1263
+ "GlowUp",
1264
+ "RerollSurplus",
1265
+ "RerollGlut",
1266
+ "CrystalBall",
1267
+ "OmenGlobe",
1268
+ "Telescope",
1269
+ "Observatory",
1270
+ "Grabber",
1271
+ "NachoTong",
1272
+ "Wasteful",
1273
+ "Recyclomancy",
1274
+ "TarotMerchant",
1275
+ "TarotTycoon",
1276
+ "PlanetMerchant",
1277
+ "PlanetTycoon",
1278
+ "SeedMoney",
1279
+ "MoneyTree",
1280
+ "Blank",
1281
+ "Antimatter",
1282
+ "MagicTrick",
1283
+ "Illusion",
1284
+ "Hieroglyph",
1285
+ "Petroglyph",
1286
+ "DirectorsCut",
1287
+ "Retcon",
1288
+ "PaintBrush",
1289
+ "Palette"
1290
+ ],
1291
+ "description": "Voucher clause."
1292
+ },
1293
+ "vouchers": {
1294
+ "type": "array",
1295
+ "items": {
1296
+ "type": "string",
1297
+ "enum": [
1298
+ "Overstock",
1299
+ "OverstockPlus",
1300
+ "ClearanceSale",
1301
+ "Liquidation",
1302
+ "Hone",
1303
+ "GlowUp",
1304
+ "RerollSurplus",
1305
+ "RerollGlut",
1306
+ "CrystalBall",
1307
+ "OmenGlobe",
1308
+ "Telescope",
1309
+ "Observatory",
1310
+ "Grabber",
1311
+ "NachoTong",
1312
+ "Wasteful",
1313
+ "Recyclomancy",
1314
+ "TarotMerchant",
1315
+ "TarotTycoon",
1316
+ "PlanetMerchant",
1317
+ "PlanetTycoon",
1318
+ "SeedMoney",
1319
+ "MoneyTree",
1320
+ "Blank",
1321
+ "Antimatter",
1322
+ "MagicTrick",
1323
+ "Illusion",
1324
+ "Hieroglyph",
1325
+ "Petroglyph",
1326
+ "DirectorsCut",
1327
+ "Retcon",
1328
+ "PaintBrush",
1329
+ "Palette"
1330
+ ]
1331
+ },
1332
+ "description": "Voucher clause matching any listed voucher names."
1333
+ },
1334
+ "tarot": {
1335
+ "type": "string",
1336
+ "enum": [
1337
+ "TheFool",
1338
+ "TheMagician",
1339
+ "TheHighPriestess",
1340
+ "TheEmpress",
1341
+ "TheEmperor",
1342
+ "TheHierophant",
1343
+ "TheLovers",
1344
+ "TheChariot",
1345
+ "Justice",
1346
+ "TheHermit",
1347
+ "TheWheelOfFortune",
1348
+ "Strength",
1349
+ "TheHangedMan",
1350
+ "Death",
1351
+ "Temperance",
1352
+ "TheDevil",
1353
+ "TheTower",
1354
+ "TheStar",
1355
+ "TheMoon",
1356
+ "TheSun",
1357
+ "Judgement",
1358
+ "TheWorld"
1359
+ ],
1360
+ "description": "Tarot card clause."
1361
+ },
1362
+ "tarotCard": {
1363
+ "type": "string",
1364
+ "enum": [
1365
+ "TheFool",
1366
+ "TheMagician",
1367
+ "TheHighPriestess",
1368
+ "TheEmpress",
1369
+ "TheEmperor",
1370
+ "TheHierophant",
1371
+ "TheLovers",
1372
+ "TheChariot",
1373
+ "Justice",
1374
+ "TheHermit",
1375
+ "TheWheelOfFortune",
1376
+ "Strength",
1377
+ "TheHangedMan",
1378
+ "Death",
1379
+ "Temperance",
1380
+ "TheDevil",
1381
+ "TheTower",
1382
+ "TheStar",
1383
+ "TheMoon",
1384
+ "TheSun",
1385
+ "Judgement",
1386
+ "TheWorld"
1387
+ ],
1388
+ "description": "Tarot card clause."
1389
+ },
1390
+ "spectral": {
1391
+ "type": "string",
1392
+ "enum": [
1393
+ "Familiar",
1394
+ "Grim",
1395
+ "Incantation",
1396
+ "Talisman",
1397
+ "Aura",
1398
+ "Wraith",
1399
+ "Sigil",
1400
+ "Ouija",
1401
+ "Ectoplasm",
1402
+ "Immolate",
1403
+ "Ankh",
1404
+ "DejaVu",
1405
+ "Hex",
1406
+ "Trance",
1407
+ "Medium",
1408
+ "Cryptid",
1409
+ "TheSoul",
1410
+ "BlackHole"
1411
+ ],
1412
+ "description": "Spectral card clause."
1413
+ },
1414
+ "spectralCard": {
1415
+ "type": "string",
1416
+ "enum": [
1417
+ "Familiar",
1418
+ "Grim",
1419
+ "Incantation",
1420
+ "Talisman",
1421
+ "Aura",
1422
+ "Wraith",
1423
+ "Sigil",
1424
+ "Ouija",
1425
+ "Ectoplasm",
1426
+ "Immolate",
1427
+ "Ankh",
1428
+ "DejaVu",
1429
+ "Hex",
1430
+ "Trance",
1431
+ "Medium",
1432
+ "Cryptid",
1433
+ "TheSoul",
1434
+ "BlackHole"
1435
+ ],
1436
+ "description": "Spectral card clause."
1437
+ },
1438
+ "planet": {
1439
+ "type": "string",
1440
+ "enum": [
1441
+ "Mercury",
1442
+ "Venus",
1443
+ "Earth",
1444
+ "Mars",
1445
+ "Jupiter",
1446
+ "Saturn",
1447
+ "Uranus",
1448
+ "Neptune",
1449
+ "Pluto",
1450
+ "PlanetX",
1451
+ "Ceres",
1452
+ "Eris"
1453
+ ],
1454
+ "description": "Planet card clause."
1455
+ },
1456
+ "planetCard": {
1457
+ "type": "string",
1458
+ "enum": [
1459
+ "Mercury",
1460
+ "Venus",
1461
+ "Earth",
1462
+ "Mars",
1463
+ "Jupiter",
1464
+ "Saturn",
1465
+ "Uranus",
1466
+ "Neptune",
1467
+ "Pluto",
1468
+ "PlanetX",
1469
+ "Ceres",
1470
+ "Eris"
1471
+ ],
1472
+ "description": "Planet card clause."
1473
+ },
1474
+ "boss": {
1475
+ "type": "string",
1476
+ "enum": [
1477
+ "TheClub",
1478
+ "TheGoad",
1479
+ "TheHead",
1480
+ "TheHook",
1481
+ "TheManacle",
1482
+ "ThePillar",
1483
+ "ThePsychic",
1484
+ "TheWindow",
1485
+ "TheArm",
1486
+ "TheFish",
1487
+ "TheFlint",
1488
+ "TheHouse",
1489
+ "TheMark",
1490
+ "TheMouth",
1491
+ "TheNeedle",
1492
+ "TheWall",
1493
+ "TheWater",
1494
+ "TheWheel",
1495
+ "TheEye",
1496
+ "TheTooth",
1497
+ "ThePlant",
1498
+ "TheSerpent",
1499
+ "TheOx",
1500
+ "AmberAcorn",
1501
+ "CeruleanBell",
1502
+ "CrimsonHeart",
1503
+ "VerdantLeaf",
1504
+ "VioletVessel"
1505
+ ],
1506
+ "description": "Boss clause."
1507
+ },
1508
+ "tag": {
1509
+ "type": "string",
1510
+ "enum": [
1511
+ "UncommonTag",
1512
+ "RareTag",
1513
+ "NegativeTag",
1514
+ "FoilTag",
1515
+ "HolographicTag",
1516
+ "PolychromeTag",
1517
+ "InvestmentTag",
1518
+ "VoucherTag",
1519
+ "BossTag",
1520
+ "StandardTag",
1521
+ "CharmTag",
1522
+ "MeteorTag",
1523
+ "BuffoonTag",
1524
+ "HandyTag",
1525
+ "GarbageTag",
1526
+ "EtherealTag",
1527
+ "CouponTag",
1528
+ "DoubleTag",
1529
+ "JuggleTag",
1530
+ "D6Tag",
1531
+ "TopupTag",
1532
+ "SpeedTag",
1533
+ "OrbitalTag",
1534
+ "EconomyTag"
1535
+ ],
1536
+ "description": "Tag clause matching either blind position."
1537
+ },
1538
+ "smallBlindTag": {
1539
+ "type": "string",
1540
+ "enum": [
1541
+ "UncommonTag",
1542
+ "RareTag",
1543
+ "NegativeTag",
1544
+ "FoilTag",
1545
+ "HolographicTag",
1546
+ "PolychromeTag",
1547
+ "InvestmentTag",
1548
+ "VoucherTag",
1549
+ "BossTag",
1550
+ "StandardTag",
1551
+ "CharmTag",
1552
+ "MeteorTag",
1553
+ "BuffoonTag",
1554
+ "HandyTag",
1555
+ "GarbageTag",
1556
+ "EtherealTag",
1557
+ "CouponTag",
1558
+ "DoubleTag",
1559
+ "JuggleTag",
1560
+ "D6Tag",
1561
+ "TopupTag",
1562
+ "SpeedTag",
1563
+ "OrbitalTag",
1564
+ "EconomyTag"
1565
+ ],
1566
+ "description": "Small blind tag clause."
1567
+ },
1568
+ "bigBlindTag": {
1569
+ "type": "string",
1570
+ "enum": [
1571
+ "UncommonTag",
1572
+ "RareTag",
1573
+ "NegativeTag",
1574
+ "FoilTag",
1575
+ "HolographicTag",
1576
+ "PolychromeTag",
1577
+ "InvestmentTag",
1578
+ "VoucherTag",
1579
+ "BossTag",
1580
+ "StandardTag",
1581
+ "CharmTag",
1582
+ "MeteorTag",
1583
+ "BuffoonTag",
1584
+ "HandyTag",
1585
+ "GarbageTag",
1586
+ "EtherealTag",
1587
+ "CouponTag",
1588
+ "DoubleTag",
1589
+ "JuggleTag",
1590
+ "D6Tag",
1591
+ "TopupTag",
1592
+ "SpeedTag",
1593
+ "OrbitalTag",
1594
+ "EconomyTag"
1595
+ ],
1596
+ "description": "Big blind tag clause."
1597
+ },
1598
+ "standardCard": {
1599
+ "type": "string",
1600
+ "enum": [
1601
+ "C2",
1602
+ "C3",
1603
+ "C4",
1604
+ "C5",
1605
+ "C6",
1606
+ "C7",
1607
+ "C8",
1608
+ "C9",
1609
+ "C10",
1610
+ "CJ",
1611
+ "CQ",
1612
+ "CK",
1613
+ "CA",
1614
+ "D2",
1615
+ "D3",
1616
+ "D4",
1617
+ "D5",
1618
+ "D6",
1619
+ "D7",
1620
+ "D8",
1621
+ "D9",
1622
+ "D10",
1623
+ "DJ",
1624
+ "DQ",
1625
+ "DK",
1626
+ "DA",
1627
+ "H2",
1628
+ "H3",
1629
+ "H4",
1630
+ "H5",
1631
+ "H6",
1632
+ "H7",
1633
+ "H8",
1634
+ "H9",
1635
+ "H10",
1636
+ "HJ",
1637
+ "HQ",
1638
+ "HK",
1639
+ "HA",
1640
+ "S2",
1641
+ "S3",
1642
+ "S4",
1643
+ "S5",
1644
+ "S6",
1645
+ "S7",
1646
+ "S8",
1647
+ "S9",
1648
+ "S10",
1649
+ "SJ",
1650
+ "SQ",
1651
+ "SK",
1652
+ "SA"
1653
+ ],
1654
+ "description": "Playing card clause."
1655
+ },
1656
+ "erraticRank": {
1657
+ "type": "string",
1658
+ "enum": [
1659
+ "Two",
1660
+ "Three",
1661
+ "Four",
1662
+ "Five",
1663
+ "Six",
1664
+ "Seven",
1665
+ "Eight",
1666
+ "Nine",
1667
+ "Ten",
1668
+ "2",
1669
+ "3",
1670
+ "4",
1671
+ "5",
1672
+ "6",
1673
+ "7",
1674
+ "8",
1675
+ "9",
1676
+ "10",
1677
+ "T",
1678
+ "J",
1679
+ "Jack",
1680
+ "Q",
1681
+ "Queen",
1682
+ "K",
1683
+ "King",
1684
+ "A",
1685
+ "Ace"
1686
+ ],
1687
+ "description": "Erratic deck rank clause."
1688
+ },
1689
+ "erraticSuit": {
1690
+ "type": "string",
1691
+ "enum": [
1692
+ "Hearts",
1693
+ "Diamonds",
1694
+ "Clubs",
1695
+ "Spades",
1696
+ "H",
1697
+ "D",
1698
+ "C",
1699
+ "S"
1700
+ ],
1701
+ "description": "Erratic deck suit clause."
1702
+ },
1703
+ "erraticCard": {
1704
+ "type": "string",
1705
+ "enum": [
1706
+ "C2",
1707
+ "C3",
1708
+ "C4",
1709
+ "C5",
1710
+ "C6",
1711
+ "C7",
1712
+ "C8",
1713
+ "C9",
1714
+ "C10",
1715
+ "CJ",
1716
+ "CQ",
1717
+ "CK",
1718
+ "CA",
1719
+ "D2",
1720
+ "D3",
1721
+ "D4",
1722
+ "D5",
1723
+ "D6",
1724
+ "D7",
1725
+ "D8",
1726
+ "D9",
1727
+ "D10",
1728
+ "DJ",
1729
+ "DQ",
1730
+ "DK",
1731
+ "DA",
1732
+ "H2",
1733
+ "H3",
1734
+ "H4",
1735
+ "H5",
1736
+ "H6",
1737
+ "H7",
1738
+ "H8",
1739
+ "H9",
1740
+ "H10",
1741
+ "HJ",
1742
+ "HQ",
1743
+ "HK",
1744
+ "HA",
1745
+ "S2",
1746
+ "S3",
1747
+ "S4",
1748
+ "S5",
1749
+ "S6",
1750
+ "S7",
1751
+ "S8",
1752
+ "S9",
1753
+ "S10",
1754
+ "SJ",
1755
+ "SQ",
1756
+ "SK",
1757
+ "SA"
1758
+ ],
1759
+ "description": "Erratic deck card clause."
1760
+ },
1761
+ "startingDraw": {
1762
+ "type": "string",
1763
+ "enum": [
1764
+ "C2",
1765
+ "C3",
1766
+ "C4",
1767
+ "C5",
1768
+ "C6",
1769
+ "C7",
1770
+ "C8",
1771
+ "C9",
1772
+ "C10",
1773
+ "CJ",
1774
+ "CQ",
1775
+ "CK",
1776
+ "CA",
1777
+ "D2",
1778
+ "D3",
1779
+ "D4",
1780
+ "D5",
1781
+ "D6",
1782
+ "D7",
1783
+ "D8",
1784
+ "D9",
1785
+ "D10",
1786
+ "DJ",
1787
+ "DQ",
1788
+ "DK",
1789
+ "DA",
1790
+ "H2",
1791
+ "H3",
1792
+ "H4",
1793
+ "H5",
1794
+ "H6",
1795
+ "H7",
1796
+ "H8",
1797
+ "H9",
1798
+ "H10",
1799
+ "HJ",
1800
+ "HQ",
1801
+ "HK",
1802
+ "HA",
1803
+ "S2",
1804
+ "S3",
1805
+ "S4",
1806
+ "S5",
1807
+ "S6",
1808
+ "S7",
1809
+ "S8",
1810
+ "S9",
1811
+ "S10",
1812
+ "SJ",
1813
+ "SQ",
1814
+ "SK",
1815
+ "SA"
1816
+ ],
1817
+ "description": "Starting draw clause."
1818
+ },
1819
+ "event": {
1820
+ "type": "string",
1821
+ "enum": [
1822
+ "LuckyMoney",
1823
+ "LuckyMult",
1824
+ "MisprintMult",
1825
+ "WheelOfFortune",
1826
+ "CavendishExtinct",
1827
+ "GrosMichelExtinct"
1828
+ ],
1829
+ "description": "Event clause."
1830
+ },
1831
+ "antes": {
1832
+ "type": "array",
1833
+ "items": {
1834
+ "type": "integer",
1835
+ "minimum": 0,
1836
+ "maximum": 39
1837
+ },
1838
+ "description": "Which antes to search in."
1839
+ },
1840
+ "score": {
1841
+ "type": "integer",
1842
+ "minimum": 0,
1843
+ "description": "Score contribution for should clauses.",
1844
+ "default": 1
1845
+ },
1846
+ "min": {
1847
+ "type": "integer",
1848
+ "minimum": 0,
1849
+ "description": "Minimum matches required for this clause."
1850
+ },
1851
+ "max": {
1852
+ "type": "integer",
1853
+ "minimum": 0,
1854
+ "description": "Maximum matches allowed for this clause."
1855
+ },
1856
+ "label": {
1857
+ "type": "string",
1858
+ "description": "Custom label for result output."
1859
+ },
1860
+ "edition": {
1861
+ "type": "string",
1862
+ "enum": [
1863
+ "Foil",
1864
+ "Holographic",
1865
+ "Polychrome",
1866
+ "Negative"
1867
+ ],
1868
+ "description": "Required edition for matching items."
1869
+ },
1870
+ "stickers": {
1871
+ "type": "array",
1872
+ "items": {
1873
+ "type": "string",
1874
+ "enum": [
1875
+ "Eternal",
1876
+ "Perishable",
1877
+ "Rental"
1878
+ ]
1879
+ },
1880
+ "description": "Required joker stickers."
1881
+ },
1882
+ "seal": {
1883
+ "type": "string",
1884
+ "enum": [
1885
+ "Gold",
1886
+ "Red",
1887
+ "Blue",
1888
+ "Purple"
1889
+ ],
1890
+ "description": "Required seal for playing cards."
1891
+ },
1892
+ "enhancement": {
1893
+ "type": "string",
1894
+ "enum": [
1895
+ "Bonus",
1896
+ "Mult",
1897
+ "Wild",
1898
+ "Glass",
1899
+ "Steel",
1900
+ "Stone",
1901
+ "Gold",
1902
+ "Lucky"
1903
+ ],
1904
+ "description": "Required enhancement for playing cards."
1905
+ },
1906
+ "rank": {
1907
+ "type": "string",
1908
+ "enum": [
1909
+ "Two",
1910
+ "Three",
1911
+ "Four",
1912
+ "Five",
1913
+ "Six",
1914
+ "Seven",
1915
+ "Eight",
1916
+ "Nine",
1917
+ "Ten",
1918
+ "2",
1919
+ "3",
1920
+ "4",
1921
+ "5",
1922
+ "6",
1923
+ "7",
1924
+ "8",
1925
+ "9",
1926
+ "10",
1927
+ "T",
1928
+ "J",
1929
+ "Jack",
1930
+ "Q",
1931
+ "Queen",
1932
+ "K",
1933
+ "King",
1934
+ "A",
1935
+ "Ace"
1936
+ ],
1937
+ "description": "Required rank for playing-card-based clauses."
1938
+ },
1939
+ "suit": {
1940
+ "type": "string",
1941
+ "enum": [
1942
+ "Hearts",
1943
+ "Diamonds",
1944
+ "Clubs",
1945
+ "Spades",
1946
+ "H",
1947
+ "D",
1948
+ "C",
1949
+ "S"
1950
+ ],
1951
+ "description": "Required suit for playing-card-based clauses."
1952
+ },
1953
+ "rolls": {
1954
+ "type": "array",
1955
+ "items": {
1956
+ "type": "integer",
1957
+ "minimum": 0
1958
+ },
1959
+ "description": "Event occurrence indices to check."
1960
+ },
1961
+ "luckyMoney": {
1962
+ "type": "array",
1963
+ "items": {
1964
+ "type": "integer",
1965
+ "minimum": 0
1966
+ },
1967
+ "description": "LuckyMoney event: roll indices (direct key; same as event: LuckyMoney \u002B rolls)."
1968
+ },
1969
+ "luckyMult": {
1970
+ "type": "array",
1971
+ "items": {
1972
+ "type": "integer",
1973
+ "minimum": 0
1974
+ },
1975
+ "description": "LuckyMult event: roll indices."
1976
+ },
1977
+ "misprintMult": {
1978
+ "type": "array",
1979
+ "items": {
1980
+ "type": "integer",
1981
+ "minimum": 0
1982
+ },
1983
+ "description": "MisprintMult event: roll indices."
1984
+ },
1985
+ "wheelOfFortune": {
1986
+ "type": "array",
1987
+ "items": {
1988
+ "type": "integer",
1989
+ "minimum": 0
1990
+ },
1991
+ "description": "Wheel of Fortune event: roll indices."
1992
+ },
1993
+ "cavendishExtinct": {
1994
+ "type": "array",
1995
+ "items": {
1996
+ "type": "integer",
1997
+ "minimum": 0
1998
+ },
1999
+ "description": "Cavendish extinct event: roll indices."
2000
+ },
2001
+ "grosMichelExtinct": {
2002
+ "type": "array",
2003
+ "items": {
2004
+ "type": "integer",
2005
+ "minimum": 0
2006
+ },
2007
+ "description": "Gros Michel extinct event: roll indices."
2008
+ },
2009
+ "soulEditionRolls": {
2010
+ "type": "integer",
2011
+ "minimum": 0,
2012
+ "description": "Extra soul-stream edition reads per ante for the legendary edition vector prefilter (0 = use booster pack list length).",
2013
+ "maximum": 32
2014
+ },
2015
+ "soulCardOnly": {
2016
+ "type": "boolean",
2017
+ "description": "Legendary / soul joker: match when The Soul tarot/spectral card appears in a pack, without rolling the legendary joker."
2018
+ },
2019
+ "multValue": {
2020
+ "type": "integer",
2021
+ "minimum": 0,
2022
+ "description": "Exact mult value for MisprintMult event (0-23). If omitted, matches any value.",
2023
+ "maximum": 23
2024
+ },
2025
+ "shopItems": {
2026
+ "type": "array",
2027
+ "items": {
2028
+ "type": "integer",
2029
+ "minimum": 0,
2030
+ "maximum": 1023
2031
+ },
2032
+ "description": "Clause-level source mapping for shop item slots."
2033
+ },
2034
+ "boosterPacks": {
2035
+ "type": "array",
2036
+ "items": {
2037
+ "type": "integer",
2038
+ "minimum": 0,
2039
+ "maximum": 5
2040
+ },
2041
+ "description": "Clause-level source mapping for pack offering slots."
2042
+ },
2043
+ "minShopSlot": {
2044
+ "type": "integer",
2045
+ "minimum": 0,
2046
+ "description": "Minimum shop slot index for range generation.",
2047
+ "maximum": 1023
2048
+ },
2049
+ "maxShopSlot": {
2050
+ "type": "integer",
2051
+ "minimum": 0,
2052
+ "description": "Maximum shop slot index for range generation.",
2053
+ "maximum": 1023
2054
+ },
2055
+ "minPackSlot": {
2056
+ "type": "integer",
2057
+ "minimum": 0,
2058
+ "description": "Minimum pack slot index for range generation.",
2059
+ "maximum": 5
2060
+ },
2061
+ "maxPackSlot": {
2062
+ "type": "integer",
2063
+ "minimum": 0,
2064
+ "description": "Maximum pack slot index for range generation.",
2065
+ "maximum": 5
2066
+ },
2067
+ "sources": {
2068
+ "type": "object",
2069
+ "description": "Source mapping that describes where the clause may be satisfied.",
2070
+ "properties": {
2071
+ "shopItems": {
2072
+ "type": "array",
2073
+ "items": {
2074
+ "type": "integer",
2075
+ "minimum": 0,
2076
+ "maximum": 1023
2077
+ },
2078
+ "description": "Full shop item stream (every slot, any item type). Slower than raw *ShopJokers streams; indices are assembled shop slots."
2079
+ },
2080
+ "boosterPacks": {
2081
+ "type": "array",
2082
+ "items": {
2083
+ "type": "integer",
2084
+ "minimum": 0,
2085
+ "maximum": 5
2086
+ },
2087
+ "description": "Pack offering slot indices. Legendary soul: if arcanaBoosterPacks/spectralBoosterPacks are set, this combined list is ignored for matching."
2088
+ },
2089
+ "arcanaBoosterPacks": {
2090
+ "type": "array",
2091
+ "items": {
2092
+ "type": "integer",
2093
+ "minimum": 0,
2094
+ "maximum": 5
2095
+ },
2096
+ "description": "Legendary soul joker: slots only for The Soul via arcana/tarot packs (not spectral)."
2097
+ },
2098
+ "spectralBoosterPacks": {
2099
+ "type": "array",
2100
+ "items": {
2101
+ "type": "integer",
2102
+ "minimum": 0,
2103
+ "maximum": 5
2104
+ },
2105
+ "description": "Legendary soul joker: slots only for The Soul via spectral packs."
2106
+ },
2107
+ "minShopSlot": {
2108
+ "type": "integer",
2109
+ "minimum": 0,
2110
+ "description": "Minimum shop slot index for range generation.",
2111
+ "maximum": 1023
2112
+ },
2113
+ "maxShopSlot": {
2114
+ "type": "integer",
2115
+ "minimum": 0,
2116
+ "description": "Maximum shop slot index for range generation.",
2117
+ "maximum": 1023
2118
+ },
2119
+ "minPackSlot": {
2120
+ "type": "integer",
2121
+ "minimum": 0,
2122
+ "description": "Minimum pack slot index for range generation.",
2123
+ "maximum": 5
2124
+ },
2125
+ "maxPackSlot": {
2126
+ "type": "integer",
2127
+ "minimum": 0,
2128
+ "description": "Maximum pack slot index for range generation.",
2129
+ "maximum": 5
2130
+ },
2131
+ "tags": {
2132
+ "type": "boolean",
2133
+ "description": "Allow tag-based sources."
2134
+ },
2135
+ "requireMega": {
2136
+ "type": "boolean",
2137
+ "description": "Legendary soul joker: only Mega-sized booster packs (e.g. Charm Tag Mega arcana). Other clauses: Mega where applicable."
2138
+ },
2139
+ "judgement": {
2140
+ "type": "array",
2141
+ "items": {
2142
+ "type": "integer",
2143
+ "minimum": 0
2144
+ },
2145
+ "description": "Judgement roll indices."
2146
+ },
2147
+ "rareTag": {
2148
+ "type": "array",
2149
+ "items": {
2150
+ "type": "integer",
2151
+ "minimum": 0
2152
+ },
2153
+ "description": "Rare Tag roll indices."
2154
+ },
2155
+ "uncommonTag": {
2156
+ "type": "array",
2157
+ "items": {
2158
+ "type": "integer",
2159
+ "minimum": 0
2160
+ },
2161
+ "description": "Uncommon Tag roll indices."
2162
+ },
2163
+ "wraith": {
2164
+ "type": "array",
2165
+ "items": {
2166
+ "type": "integer",
2167
+ "minimum": 0
2168
+ },
2169
+ "description": "Wraith roll indices."
2170
+ },
2171
+ "soulCard": {
2172
+ "type": "array",
2173
+ "items": {
2174
+ "type": "integer",
2175
+ "minimum": 0
2176
+ },
2177
+ "description": "Soul card roll indices."
2178
+ },
2179
+ "riffRaff": {
2180
+ "type": "array",
2181
+ "items": {
2182
+ "type": "integer",
2183
+ "minimum": 0
2184
+ },
2185
+ "description": "Riff-Raff roll indices."
2186
+ },
2187
+ "purpleSealOrEightBall": {
2188
+ "type": "array",
2189
+ "items": {
2190
+ "type": "integer",
2191
+ "minimum": 0
2192
+ },
2193
+ "description": "Purple Seal or 8 Ball tarot roll indices."
2194
+ },
2195
+ "emperor": {
2196
+ "type": "array",
2197
+ "items": {
2198
+ "type": "integer",
2199
+ "minimum": 0
2200
+ },
2201
+ "description": "Emperor roll indices."
2202
+ },
2203
+ "sixthSense": {
2204
+ "type": "array",
2205
+ "items": {
2206
+ "type": "integer",
2207
+ "minimum": 0
2208
+ },
2209
+ "description": "Sixth Sense roll indices."
2210
+ },
2211
+ "seance": {
2212
+ "type": "array",
2213
+ "items": {
2214
+ "type": "integer",
2215
+ "minimum": 0
2216
+ },
2217
+ "description": "Seance roll indices."
2218
+ },
2219
+ "certificate": {
2220
+ "type": "array",
2221
+ "items": {
2222
+ "type": "integer",
2223
+ "minimum": 0
2224
+ },
2225
+ "description": "Certificate roll indices."
2226
+ },
2227
+ "incantation": {
2228
+ "type": "array",
2229
+ "items": {
2230
+ "type": "integer",
2231
+ "minimum": 0
2232
+ },
2233
+ "description": "Incantation roll indices."
2234
+ },
2235
+ "familiar": {
2236
+ "type": "array",
2237
+ "items": {
2238
+ "type": "integer",
2239
+ "minimum": 0
2240
+ },
2241
+ "description": "Familiar roll indices."
2242
+ },
2243
+ "grim": {
2244
+ "type": "array",
2245
+ "items": {
2246
+ "type": "integer",
2247
+ "minimum": 0
2248
+ },
2249
+ "description": "Grim roll indices."
2250
+ },
2251
+ "deckDraw": {
2252
+ "type": "array",
2253
+ "items": {
2254
+ "type": "integer",
2255
+ "minimum": 0
2256
+ },
2257
+ "description": "Deck draw positions."
2258
+ },
2259
+ "uncommonShopJokers": {
2260
+ "type": "array",
2261
+ "items": {
2262
+ "type": "integer",
2263
+ "minimum": 0
2264
+ },
2265
+ "description": "Uncommon joker PRNG stream only (no vouchers/consumables) \u2014 fast SIMD. Indices are 0..n uncommon joker rolls, not necessarily the same numbering as shopItems slots when the shop mixes item types."
2266
+ },
2267
+ "rareShopJokers": {
2268
+ "type": "array",
2269
+ "items": {
2270
+ "type": "integer",
2271
+ "minimum": 0
2272
+ },
2273
+ "description": "Rare joker PRNG stream only \u2014 fast SIMD; indices are rare joker rolls."
2274
+ },
2275
+ "commonShopJokers": {
2276
+ "type": "array",
2277
+ "items": {
2278
+ "type": "integer",
2279
+ "minimum": 0
2280
+ },
2281
+ "description": "Common joker PRNG stream only \u2014 fast SIMD; indices are common joker rolls."
2282
+ },
2283
+ "allShopJokers": {
2284
+ "type": "array",
2285
+ "items": {
2286
+ "type": "integer",
2287
+ "minimum": 0
2288
+ },
2289
+ "description": "All-rarity shop joker stream \u2014 fast SIMD; indices are combined joker-offer positions."
2290
+ }
2291
+ },
2292
+ "additionalProperties": false
2293
+ },
2294
+ "and": {
2295
+ "type": "array",
2296
+ "description": "Nested AND clause list.",
2297
+ "items": {
2298
+ "$ref": "#/definitions/clause"
2299
+ }
2300
+ },
2301
+ "or": {
2302
+ "type": "array",
2303
+ "description": "Nested OR clause list.",
2304
+ "items": {
2305
+ "$ref": "#/definitions/clause"
2306
+ }
2307
+ }
2308
+ },
2309
+ "allOf": [
2310
+ {
2311
+ "if": {
2312
+ "anyOf": [
2313
+ {
2314
+ "required": [
2315
+ "event"
2316
+ ]
2317
+ },
2318
+ {
2319
+ "required": [
2320
+ "eventType"
2321
+ ]
2322
+ },
2323
+ {
2324
+ "properties": {
2325
+ "type": {
2326
+ "enum": [
2327
+ "Event",
2328
+ "LuckyMoney",
2329
+ "LuckyMult",
2330
+ "MisprintMult",
2331
+ "WheelOfFortune",
2332
+ "CavendishExtinct",
2333
+ "GrosMichelExtinct"
2334
+ ]
2335
+ }
2336
+ },
2337
+ "required": [
2338
+ "type"
2339
+ ]
2340
+ }
2341
+ ]
2342
+ },
2343
+ "then": {
2344
+ "not": {
2345
+ "required": [
2346
+ "antes"
2347
+ ]
2348
+ }
2349
+ }
2350
+ }
2351
+ ],
2352
+ "additionalProperties": false,
2353
+ "minProperties": 1
2354
+ },
2355
+ "JamlAesthetic": {
2356
+ "title": "JamlAesthetic",
2357
+ "description": "Named constraint on which seeds participate in search. Motely: see JamlAesthetics for enumeration and Matches(); seed alphabet is MotelyGlobals.SeedDigits, max length MotelyGlobals.MaxSeedLength.",
2358
+ "type": "string",
2359
+ "enum": [
2360
+ "palindrome",
2361
+ "psychosis",
2362
+ "gross",
2363
+ "nsfw",
2364
+ "funny",
2365
+ "balatro"
2366
+ ]
2367
+ }
2368
+ },
2369
+ "additionalProperties": false
2370
+ }