jaml-ui 0.26.6 → 0.28.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 (53) hide show
  1. package/README.md +11 -6
  2. package/dist/assets/{searchPoolWorker-CejAnH4a.js → searchPoolWorker-BtlROziN.js} +9 -4
  3. package/dist/assets/searchPoolWorker-BtlROziN.js.map +1 -0
  4. package/dist/chunks/Layer-BBPJFHfs.js.map +1 -1
  5. package/dist/chunks/assets-RWUiFSTc.js.map +1 -1
  6. package/dist/chunks/motelyItemDecoder-BvFrQpaI.js +2061 -0
  7. package/dist/chunks/motelyItemDecoder-BvFrQpaI.js.map +1 -0
  8. package/dist/chunks/{searchPoolWorker-CTtPOuxF.js → searchPoolWorker-D1xR43D2.js} +2 -2
  9. package/dist/chunks/searchPoolWorker-D1xR43D2.js.map +1 -0
  10. package/dist/chunks/spriteMapper-CFjN0_TV.js.map +1 -1
  11. package/dist/chunks/tokens-B65Fzble.js.map +1 -1
  12. package/dist/chunks/ui-BEtq_JNg.js +3229 -0
  13. package/dist/chunks/ui-BEtq_JNg.js.map +1 -0
  14. package/dist/components/JamlAestheticSelector.d.ts +2 -3
  15. package/dist/components/JamlIdeToolbar.d.ts +3 -1
  16. package/dist/components/JamlSeedInput.d.ts +14 -4
  17. package/dist/components/JamlSeedSpinner.d.ts +7 -0
  18. package/dist/components/Jamlyzer.d.ts +5 -1
  19. package/dist/components/RunConfigModal.d.ts +1 -1
  20. package/dist/components/jamlSeedUtils.d.ts +1 -0
  21. package/dist/config.d.ts +5 -4
  22. package/dist/core.js.map +1 -1
  23. package/dist/decode/motelyItemFormats.d.ts +3124 -0
  24. package/dist/hooks/useIntersectionObserver.d.ts +1 -1
  25. package/dist/hooks/useMotelyRuntime.d.ts +1 -1
  26. package/dist/hooks/useSearch.d.ts +3 -3
  27. package/dist/index.d.ts +4 -2
  28. package/dist/index.js +3298 -3268
  29. package/dist/index.js.map +1 -1
  30. package/dist/lib/hooks/useDragScroll.d.ts +1 -1
  31. package/dist/motely.d.ts +2 -2
  32. package/dist/motely.js +23 -22
  33. package/dist/motely.js.map +1 -1
  34. package/dist/r3f.js.map +1 -1
  35. package/dist/ui/JimboPanelSpinner.d.ts +15 -0
  36. package/dist/ui/footer.d.ts +7 -1
  37. package/dist/ui/hooks.d.ts +2 -2
  38. package/dist/ui/jimbo.css +1 -1
  39. package/dist/ui/jimboText.d.ts +4 -6
  40. package/dist/ui/panel.d.ts +1 -2
  41. package/dist/ui.d.ts +2 -0
  42. package/dist/ui.js +3 -3
  43. package/jaml.schema.json +1219 -1165
  44. package/package.json +20 -22
  45. package/DESIGN.md +0 -236
  46. package/dist/assets/searchPoolWorker-CejAnH4a.js.map +0 -1
  47. package/dist/chunks/motelyItemDecoder-Bg12hhB2.js +0 -248
  48. package/dist/chunks/motelyItemDecoder-Bg12hhB2.js.map +0 -1
  49. package/dist/chunks/searchPoolWorker-CTtPOuxF.js.map +0 -1
  50. package/dist/chunks/ui-ByciFBYB.js +0 -1387
  51. package/dist/chunks/ui-ByciFBYB.js.map +0 -1
  52. package/dist/motelyBoot.d.ts +0 -15
  53. package/dist/ui/ide/DeckSprite.d.ts +0 -1
package/jaml.schema.json CHANGED
@@ -1,1165 +1,1219 @@
1
- {
2
- "$schema": "https://json-schema.org/draft/2020-12/schema",
3
- "$id": "https://www.seedfinder.app/jaml.schema.json",
4
- "version": "15.1.2",
5
- "title": "JAML Jimbo's Ante Markup Language",
6
- "description": "JSON Schema for JAML (.jaml), Motely's Balatro seed search language. Use it for validation, completions, and editor tooling.",
7
- "type": "object",
8
- "$defs": {
9
- "JamlClauseDto": {
10
- "type": "object",
11
- "properties": {
12
- "joker": {
13
- "$ref": "#/$defs/Joker"
14
- },
15
- "jokers": {
16
- "type": "array",
17
- "items": {
18
- "$ref": "#/$defs/Joker"
19
- }
20
- },
21
- "commonJoker": {
22
- "$ref": "#/$defs/CommonJoker"
23
- },
24
- "commonJokers": {
25
- "type": "array",
26
- "items": {
27
- "$ref": "#/$defs/CommonJoker"
28
- }
29
- },
30
- "uncommonJoker": {
31
- "$ref": "#/$defs/UncommonJoker"
32
- },
33
- "uncommonJokers": {
34
- "type": "array",
35
- "items": {
36
- "$ref": "#/$defs/UncommonJoker"
37
- }
38
- },
39
- "rareJoker": {
40
- "$ref": "#/$defs/RareJoker"
41
- },
42
- "rareJokers": {
43
- "type": "array",
44
- "items": {
45
- "$ref": "#/$defs/RareJoker"
46
- }
47
- },
48
- "legendaryJoker": {
49
- "$ref": "#/$defs/LegendaryJoker"
50
- },
51
- "legendaryJokers": {
52
- "type": "array",
53
- "items": {
54
- "$ref": "#/$defs/LegendaryJoker"
55
- }
56
- },
57
- "voucher": {
58
- "$ref": "#/$defs/Voucher"
59
- },
60
- "vouchers": {
61
- "type": "array",
62
- "items": {
63
- "$ref": "#/$defs/Voucher"
64
- }
65
- },
66
- "tarotCard": {
67
- "$ref": "#/$defs/Tarot"
68
- },
69
- "tarotCards": {
70
- "type": "array",
71
- "items": {
72
- "$ref": "#/$defs/Tarot"
73
- }
74
- },
75
- "spectralCard": {
76
- "$ref": "#/$defs/Spectral"
77
- },
78
- "spectralCards": {
79
- "type": "array",
80
- "items": {
81
- "$ref": "#/$defs/Spectral"
82
- }
83
- },
84
- "planet": {
85
- "$ref": "#/$defs/Planet"
86
- },
87
- "planetCard": {
88
- "$ref": "#/$defs/Planet"
89
- },
90
- "boss": {
91
- "$ref": "#/$defs/Boss"
92
- },
93
- "tag": {
94
- "$ref": "#/$defs/Tag"
95
- },
96
- "smallBlindTag": {
97
- "$ref": "#/$defs/Tag"
98
- },
99
- "bigBlindTag": {
100
- "$ref": "#/$defs/Tag"
101
- },
102
- "standardCard": {
103
- "$ref": "#/$defs/StandardCard"
104
- },
105
- "standardCards": {
106
- "type": "array",
107
- "items": {
108
- "$ref": "#/$defs/StandardCard"
109
- }
110
- },
111
- "erraticRank": {
112
- "$ref": "#/$defs/Rank"
113
- },
114
- "erraticSuit": {
115
- "$ref": "#/$defs/Suit"
116
- },
117
- "erraticCard": {
118
- "type": "string"
119
- },
120
- "startingDraw": {
121
- "type": "string"
122
- },
123
- "event": {
124
- "type": "integer"
125
- },
126
- "luckyMoney": {
127
- "type": "array",
128
- "items": {
129
- "type": "integer"
130
- }
131
- },
132
- "luckyMult": {
133
- "type": "array",
134
- "items": {
135
- "type": "integer"
136
- }
137
- },
138
- "misprintMult": {
139
- "type": "array",
140
- "items": {
141
- "type": "integer"
142
- }
143
- },
144
- "wheelOfFortune": {
145
- "type": "array",
146
- "items": {
147
- "type": "integer"
148
- }
149
- },
150
- "cavendishExtinct": {
151
- "type": "array",
152
- "items": {
153
- "type": "integer"
154
- }
155
- },
156
- "grosMichelExtinct": {
157
- "type": "array",
158
- "items": {
159
- "type": "integer"
160
- }
161
- },
162
- "spaceLevelup": {
163
- "type": "array",
164
- "items": {
165
- "type": "integer"
166
- }
167
- },
168
- "businessPayout": {
169
- "type": "array",
170
- "items": {
171
- "type": "integer"
172
- }
173
- },
174
- "bloodstoneTrigger": {
175
- "type": "array",
176
- "items": {
177
- "type": "integer"
178
- }
179
- },
180
- "parkingPayout": {
181
- "type": "array",
182
- "items": {
183
- "type": "integer"
184
- }
185
- },
186
- "glassDestroy": {
187
- "type": "array",
188
- "items": {
189
- "type": "integer"
190
- }
191
- },
192
- "wheelStaysFlipped": {
193
- "type": "array",
194
- "items": {
195
- "type": "integer"
196
- }
197
- },
198
- "antes": {
199
- "type": "array",
200
- "items": {
201
- "type": "integer"
202
- }
203
- },
204
- "score": {
205
- "type": "integer"
206
- },
207
- "min": {
208
- "type": "integer"
209
- },
210
- "max": {
211
- "type": "integer"
212
- },
213
- "label": {
214
- "type": "string"
215
- },
216
- "edition": {
217
- "$ref": "#/$defs/Edition"
218
- },
219
- "stickers": {
220
- "type": "array",
221
- "items": {
222
- "$ref": "#/$defs/Sticker"
223
- }
224
- },
225
- "seal": {
226
- "$ref": "#/$defs/Seal"
227
- },
228
- "enhancement": {
229
- "$ref": "#/$defs/Enhancement"
230
- },
231
- "rank": {
232
- "$ref": "#/$defs/Rank"
233
- },
234
- "suit": {
235
- "$ref": "#/$defs/Suit"
236
- },
237
- "rolls": {
238
- "type": "array",
239
- "items": {
240
- "type": "integer"
241
- }
242
- },
243
- "soulEditionRolls": {
244
- "type": "integer"
245
- },
246
- "soulCardOnly": {
247
- "type": "boolean"
248
- },
249
- "and": {
250
- "type": "array",
251
- "items": {
252
- "$ref": "#/$defs/JamlClauseDto"
253
- }
254
- },
255
- "or": {
256
- "type": "array",
257
- "items": {
258
- "$ref": "#/$defs/JamlClauseDto"
259
- }
260
- },
261
- "clauses": {
262
- "type": "array",
263
- "items": {
264
- "$ref": "#/$defs/JamlClauseDto"
265
- }
266
- },
267
- "mode": {
268
- "$ref": "#/$defs/Mode"
269
- },
270
- "shopItems": {
271
- "type": "array",
272
- "items": {
273
- "type": "integer"
274
- }
275
- },
276
- "boosterPacks": {
277
- "type": "array",
278
- "items": {
279
- "type": "integer"
280
- }
281
- },
282
- "minShopItem": {
283
- "type": "integer"
284
- },
285
- "maxShopItem": {
286
- "type": "integer"
287
- },
288
- "sources": {
289
- "$ref": "#/$defs/JamlSourcesDto"
290
- }
291
- }
292
- },
293
- "Joker": {
294
- "type": "string",
295
- "enum": [
296
- "Joker",
297
- "GreedyJoker",
298
- "LustyJoker",
299
- "WrathfulJoker",
300
- "GluttonousJoker",
301
- "JollyJoker",
302
- "ZanyJoker",
303
- "MadJoker",
304
- "CrazyJoker",
305
- "DrollJoker",
306
- "SlyJoker",
307
- "WilyJoker",
308
- "CleverJoker",
309
- "DeviousJoker",
310
- "CraftyJoker",
311
- "HalfJoker",
312
- "CreditCard",
313
- "Banner",
314
- "MysticSummit",
315
- "EightBall",
316
- "Misprint",
317
- "RaisedFist",
318
- "ChaostheClown",
319
- "ScaryFace",
320
- "AbstractJoker",
321
- "DelayedGratification",
322
- "GrosMichel",
323
- "EvenSteven",
324
- "OddTodd",
325
- "Scholar",
326
- "BusinessCard",
327
- "Supernova",
328
- "RideTheBus",
329
- "Egg",
330
- "Runner",
331
- "IceCream",
332
- "Splash",
333
- "BlueJoker",
334
- "FacelessJoker",
335
- "GreenJoker",
336
- "Superposition",
337
- "ToDoList",
338
- "Cavendish",
339
- "RedCard",
340
- "SquareJoker",
341
- "RiffRaff",
342
- "Photograph",
343
- "ReservedParking",
344
- "MailInRebate",
345
- "Hallucination",
346
- "FortuneTeller",
347
- "Juggler",
348
- "Drunkard",
349
- "GoldenJoker",
350
- "Popcorn",
351
- "WalkieTalkie",
352
- "SmileyFace",
353
- "GoldenTicket",
354
- "Swashbuckler",
355
- "HangingChad",
356
- "ShootTheMoon",
357
- "JokerStencil",
358
- "FourFingers",
359
- "Mime",
360
- "CeremonialDagger",
361
- "MarbleJoker",
362
- "LoyaltyCard",
363
- "Dusk",
364
- "Fibonacci",
365
- "SteelJoker",
366
- "Hack",
367
- "Pareidolia",
368
- "SpaceJoker",
369
- "Burglar",
370
- "Blackboard",
371
- "SixthSense",
372
- "Constellation",
373
- "Hiker",
374
- "CardSharp",
375
- "Madness",
376
- "Seance",
377
- "Vampire",
378
- "Shortcut",
379
- "Hologram",
380
- "Cloud9",
381
- "Rocket",
382
- "MidasMask",
383
- "Luchador",
384
- "GiftCard",
385
- "TurtleBean",
386
- "Erosion",
387
- "ToTheMoon",
388
- "StoneJoker",
389
- "LuckyCat",
390
- "Bull",
391
- "DietCola",
392
- "TradingCard",
393
- "FlashCard",
394
- "SpareTrousers",
395
- "Ramen",
396
- "Seltzer",
397
- "Castle",
398
- "MrBones",
399
- "Acrobat",
400
- "SockAndBuskin",
401
- "Troubadour",
402
- "Certificate",
403
- "SmearedJoker",
404
- "Throwback",
405
- "RoughGem",
406
- "Bloodstone",
407
- "Arrowhead",
408
- "OnyxAgate",
409
- "GlassJoker",
410
- "Showman",
411
- "FlowerPot",
412
- "MerryAndy",
413
- "OopsAll6s",
414
- "TheIdol",
415
- "SeeingDouble",
416
- "Matador",
417
- "Satellite",
418
- "Cartomancer",
419
- "Astronomer",
420
- "Bootstraps",
421
- "DNA",
422
- "Vagabond",
423
- "Baron",
424
- "Obelisk",
425
- "BaseballCard",
426
- "AncientJoker",
427
- "Campfire",
428
- "Blueprint",
429
- "WeeJoker",
430
- "HitTheRoad",
431
- "TheDuo",
432
- "TheTrio",
433
- "TheFamily",
434
- "TheOrder",
435
- "TheTribe",
436
- "Stuntman",
437
- "InvisibleJoker",
438
- "Brainstorm",
439
- "DriversLicense",
440
- "BurntJoker",
441
- "Canio",
442
- "Triboulet",
443
- "Yorick",
444
- "Chicot",
445
- "Perkeo",
446
- "any"
447
- ]
448
- },
449
- "CommonJoker": {
450
- "type": "string",
451
- "enum": [
452
- "Joker",
453
- "GreedyJoker",
454
- "LustyJoker",
455
- "WrathfulJoker",
456
- "GluttonousJoker",
457
- "JollyJoker",
458
- "ZanyJoker",
459
- "MadJoker",
460
- "CrazyJoker",
461
- "DrollJoker",
462
- "SlyJoker",
463
- "WilyJoker",
464
- "CleverJoker",
465
- "DeviousJoker",
466
- "CraftyJoker",
467
- "HalfJoker",
468
- "CreditCard",
469
- "Banner",
470
- "MysticSummit",
471
- "EightBall",
472
- "Misprint",
473
- "RaisedFist",
474
- "ChaostheClown",
475
- "ScaryFace",
476
- "AbstractJoker",
477
- "DelayedGratification",
478
- "GrosMichel",
479
- "EvenSteven",
480
- "OddTodd",
481
- "Scholar",
482
- "BusinessCard",
483
- "Supernova",
484
- "RideTheBus",
485
- "Egg",
486
- "Runner",
487
- "IceCream",
488
- "Splash",
489
- "BlueJoker",
490
- "FacelessJoker",
491
- "GreenJoker",
492
- "Superposition",
493
- "ToDoList",
494
- "Cavendish",
495
- "RedCard",
496
- "SquareJoker",
497
- "RiffRaff",
498
- "Photograph",
499
- "ReservedParking",
500
- "MailInRebate",
501
- "Hallucination",
502
- "FortuneTeller",
503
- "Juggler",
504
- "Drunkard",
505
- "GoldenJoker",
506
- "Popcorn",
507
- "WalkieTalkie",
508
- "SmileyFace",
509
- "GoldenTicket",
510
- "Swashbuckler",
511
- "HangingChad",
512
- "ShootTheMoon",
513
- "any"
514
- ]
515
- },
516
- "UncommonJoker": {
517
- "type": "string",
518
- "enum": [
519
- "JokerStencil",
520
- "FourFingers",
521
- "Mime",
522
- "CeremonialDagger",
523
- "MarbleJoker",
524
- "LoyaltyCard",
525
- "Dusk",
526
- "Fibonacci",
527
- "SteelJoker",
528
- "Hack",
529
- "Pareidolia",
530
- "SpaceJoker",
531
- "Burglar",
532
- "Blackboard",
533
- "SixthSense",
534
- "Constellation",
535
- "Hiker",
536
- "CardSharp",
537
- "Madness",
538
- "Seance",
539
- "Vampire",
540
- "Shortcut",
541
- "Hologram",
542
- "Cloud9",
543
- "Rocket",
544
- "MidasMask",
545
- "Luchador",
546
- "GiftCard",
547
- "TurtleBean",
548
- "Erosion",
549
- "ToTheMoon",
550
- "StoneJoker",
551
- "LuckyCat",
552
- "Bull",
553
- "DietCola",
554
- "TradingCard",
555
- "FlashCard",
556
- "SpareTrousers",
557
- "Ramen",
558
- "Seltzer",
559
- "Castle",
560
- "MrBones",
561
- "Acrobat",
562
- "SockAndBuskin",
563
- "Troubadour",
564
- "Certificate",
565
- "SmearedJoker",
566
- "Throwback",
567
- "RoughGem",
568
- "Bloodstone",
569
- "Arrowhead",
570
- "OnyxAgate",
571
- "GlassJoker",
572
- "Showman",
573
- "FlowerPot",
574
- "MerryAndy",
575
- "OopsAll6s",
576
- "TheIdol",
577
- "SeeingDouble",
578
- "Matador",
579
- "Satellite",
580
- "Cartomancer",
581
- "Astronomer",
582
- "Bootstraps",
583
- "any"
584
- ]
585
- },
586
- "RareJoker": {
587
- "type": "string",
588
- "enum": [
589
- "DNA",
590
- "Vagabond",
591
- "Baron",
592
- "Obelisk",
593
- "BaseballCard",
594
- "AncientJoker",
595
- "Campfire",
596
- "Blueprint",
597
- "WeeJoker",
598
- "HitTheRoad",
599
- "TheDuo",
600
- "TheTrio",
601
- "TheFamily",
602
- "TheOrder",
603
- "TheTribe",
604
- "Stuntman",
605
- "InvisibleJoker",
606
- "Brainstorm",
607
- "DriversLicense",
608
- "BurntJoker",
609
- "any"
610
- ]
611
- },
612
- "LegendaryJoker": {
613
- "type": "string",
614
- "enum": [
615
- "Canio",
616
- "Triboulet",
617
- "Yorick",
618
- "Chicot",
619
- "Perkeo",
620
- "any"
621
- ]
622
- },
623
- "Voucher": {
624
- "type": "string",
625
- "enum": [
626
- "Overstock",
627
- "OverstockPlus",
628
- "ClearanceSale",
629
- "Liquidation",
630
- "Hone",
631
- "GlowUp",
632
- "RerollSurplus",
633
- "RerollGlut",
634
- "CrystalBall",
635
- "OmenGlobe",
636
- "Telescope",
637
- "Observatory",
638
- "Grabber",
639
- "NachoTong",
640
- "Wasteful",
641
- "Recyclomancy",
642
- "TarotMerchant",
643
- "TarotTycoon",
644
- "PlanetMerchant",
645
- "PlanetTycoon",
646
- "SeedMoney",
647
- "MoneyTree",
648
- "Blank",
649
- "Antimatter",
650
- "MagicTrick",
651
- "Illusion",
652
- "Hieroglyph",
653
- "Petroglyph",
654
- "DirectorsCut",
655
- "Retcon",
656
- "PaintBrush",
657
- "Palette"
658
- ]
659
- },
660
- "Tarot": {
661
- "type": "string",
662
- "enum": [
663
- "TheFool",
664
- "TheMagician",
665
- "TheHighPriestess",
666
- "TheEmpress",
667
- "TheEmperor",
668
- "TheHierophant",
669
- "TheLovers",
670
- "TheChariot",
671
- "Justice",
672
- "TheHermit",
673
- "TheWheelOfFortune",
674
- "Strength",
675
- "TheHangedMan",
676
- "Death",
677
- "Temperance",
678
- "TheDevil",
679
- "TheTower",
680
- "TheStar",
681
- "TheMoon",
682
- "TheSun",
683
- "Judgement",
684
- "TheWorld"
685
- ]
686
- },
687
- "Planet": {
688
- "type": "string",
689
- "enum": [
690
- "Mercury",
691
- "Venus",
692
- "Earth",
693
- "Mars",
694
- "Jupiter",
695
- "Saturn",
696
- "Uranus",
697
- "Neptune",
698
- "Pluto",
699
- "PlanetX",
700
- "Ceres",
701
- "Eris"
702
- ]
703
- },
704
- "Spectral": {
705
- "type": "string",
706
- "enum": [
707
- "Familiar",
708
- "Grim",
709
- "Incantation",
710
- "Talisman",
711
- "Aura",
712
- "Wraith",
713
- "Sigil",
714
- "Ouija",
715
- "Ectoplasm",
716
- "Immolate",
717
- "Ankh",
718
- "DejaVu",
719
- "Hex",
720
- "Trance",
721
- "Medium",
722
- "Cryptid",
723
- "TheSoul",
724
- "BlackHole"
725
- ]
726
- },
727
- "Tag": {
728
- "type": "string",
729
- "enum": [
730
- "UncommonTag",
731
- "RareTag",
732
- "NegativeTag",
733
- "FoilTag",
734
- "HolographicTag",
735
- "PolychromeTag",
736
- "InvestmentTag",
737
- "VoucherTag",
738
- "BossTag",
739
- "StandardTag",
740
- "CharmTag",
741
- "MeteorTag",
742
- "BuffoonTag",
743
- "HandyTag",
744
- "GarbageTag",
745
- "EtherealTag",
746
- "CouponTag",
747
- "DoubleTag",
748
- "JuggleTag",
749
- "D6Tag",
750
- "TopupTag",
751
- "SpeedTag",
752
- "OrbitalTag",
753
- "EconomyTag"
754
- ]
755
- },
756
- "Boss": {
757
- "type": "string",
758
- "enum": [
759
- "TheClub",
760
- "TheGoad",
761
- "TheHead",
762
- "TheHook",
763
- "TheManacle",
764
- "ThePillar",
765
- "ThePsychic",
766
- "TheWindow",
767
- "TheArm",
768
- "TheFish",
769
- "TheFlint",
770
- "TheHouse",
771
- "TheMark",
772
- "TheMouth",
773
- "TheNeedle",
774
- "TheWall",
775
- "TheWater",
776
- "TheWheel",
777
- "TheEye",
778
- "TheTooth",
779
- "ThePlant",
780
- "TheSerpent",
781
- "TheOx",
782
- "AmberAcorn",
783
- "CeruleanBell",
784
- "CrimsonHeart",
785
- "VerdantLeaf",
786
- "VioletVessel"
787
- ]
788
- },
789
- "Deck": {
790
- "type": "string",
791
- "enum": [
792
- "Red",
793
- "Blue",
794
- "Yellow",
795
- "Green",
796
- "Black",
797
- "Magic",
798
- "Nebula",
799
- "Ghost",
800
- "Abandoned",
801
- "Checkered",
802
- "Zodiac",
803
- "Painted",
804
- "Anaglyph",
805
- "Plasma",
806
- "Erratic"
807
- ]
808
- },
809
- "Stake": {
810
- "type": "string",
811
- "enum": [
812
- "White",
813
- "Red",
814
- "Green",
815
- "Black",
816
- "Blue",
817
- "Purple",
818
- "Orange",
819
- "Gold"
820
- ]
821
- },
822
- "Edition": {
823
- "type": "string",
824
- "enum": [
825
- "None",
826
- "Foil",
827
- "Holographic",
828
- "Polychrome",
829
- "Negative"
830
- ]
831
- },
832
- "Seal": {
833
- "type": "string",
834
- "enum": [
835
- "Gold",
836
- "Red",
837
- "Blue",
838
- "Purple"
839
- ]
840
- },
841
- "Enhancement": {
842
- "type": "string",
843
- "enum": [
844
- "Bonus",
845
- "Mult",
846
- "Wild",
847
- "Glass",
848
- "Steel",
849
- "Stone",
850
- "Gold",
851
- "Lucky"
852
- ]
853
- },
854
- "Rank": {
855
- "type": "string",
856
- "enum": [
857
- "Two",
858
- "Three",
859
- "Four",
860
- "Five",
861
- "Six",
862
- "Seven",
863
- "Eight",
864
- "Nine",
865
- "Ten",
866
- "Jack",
867
- "Queen",
868
- "King",
869
- "Ace"
870
- ]
871
- },
872
- "Suit": {
873
- "type": "string",
874
- "enum": [
875
- "Clubs",
876
- "Diamonds",
877
- "Hearts",
878
- "Spades"
879
- ]
880
- },
881
- "Sticker": {
882
- "type": "string",
883
- "enum": [
884
- "Eternal",
885
- "Perishable",
886
- "Rental"
887
- ]
888
- },
889
- "Mode": {
890
- "type": "string",
891
- "enum": [
892
- "any",
893
- "all",
894
- "none"
895
- ]
896
- },
897
- "StandardCard": {
898
- "anyOf": [
899
- {
900
- "type": "string"
901
- },
902
- {
903
- "type": "object",
904
- "properties": {
905
- "rank": {
906
- "$ref": "#/$defs/Rank"
907
- },
908
- "suit": {
909
- "$ref": "#/$defs/Suit"
910
- },
911
- "seal": {
912
- "$ref": "#/$defs/Seal"
913
- },
914
- "enhancement": {
915
- "$ref": "#/$defs/Enhancement"
916
- },
917
- "edition": {
918
- "$ref": "#/$defs/Edition"
919
- }
920
- }
921
- }
922
- ]
923
- },
924
- "JamlSourcesDto": {
925
- "type": "object",
926
- "properties": {
927
- "shopItems": {
928
- "type": "array",
929
- "items": {
930
- "type": "integer"
931
- }
932
- },
933
- "boosterPacks": {
934
- "type": "array",
935
- "items": {
936
- "type": "integer"
937
- }
938
- },
939
- "minShopItem": {
940
- "type": "integer"
941
- },
942
- "maxShopItem": {
943
- "type": "integer"
944
- },
945
- "tags": {
946
- "type": "boolean"
947
- },
948
- "requireMega": {
949
- "type": "boolean"
950
- },
951
- "charmTag": {
952
- "type": "boolean"
953
- },
954
- "etherealTag": {
955
- "type": "boolean"
956
- },
957
- "judgement": {
958
- "type": "array",
959
- "items": {
960
- "type": "integer"
961
- }
962
- },
963
- "rareTag": {
964
- "type": "array",
965
- "items": {
966
- "type": "integer"
967
- }
968
- },
969
- "uncommonTag": {
970
- "type": "array",
971
- "items": {
972
- "type": "integer"
973
- }
974
- },
975
- "wraith": {
976
- "type": "array",
977
- "items": {
978
- "type": "integer"
979
- }
980
- },
981
- "soulCard": {
982
- "type": "array",
983
- "items": {
984
- "type": "integer"
985
- }
986
- },
987
- "arcanaPacks": {
988
- "type": "array",
989
- "items": {
990
- "type": "integer"
991
- }
992
- },
993
- "spectralPacks": {
994
- "type": "array",
995
- "items": {
996
- "type": "integer"
997
- }
998
- },
999
- "riffRaff": {
1000
- "type": "array",
1001
- "items": {
1002
- "type": "integer"
1003
- }
1004
- },
1005
- "purpleSealOrEightBall": {
1006
- "type": "array",
1007
- "items": {
1008
- "type": "integer"
1009
- }
1010
- },
1011
- "emperor": {
1012
- "type": "array",
1013
- "items": {
1014
- "type": "integer"
1015
- }
1016
- },
1017
- "sixthSense": {
1018
- "type": "array",
1019
- "items": {
1020
- "type": "integer"
1021
- }
1022
- },
1023
- "seance": {
1024
- "type": "array",
1025
- "items": {
1026
- "type": "integer"
1027
- }
1028
- },
1029
- "certificate": {
1030
- "type": "array",
1031
- "items": {
1032
- "type": "integer"
1033
- }
1034
- },
1035
- "incantation": {
1036
- "type": "array",
1037
- "items": {
1038
- "type": "integer"
1039
- }
1040
- },
1041
- "familiar": {
1042
- "type": "array",
1043
- "items": {
1044
- "type": "integer"
1045
- }
1046
- },
1047
- "grim": {
1048
- "type": "array",
1049
- "items": {
1050
- "type": "integer"
1051
- }
1052
- },
1053
- "deckDraw": {
1054
- "type": "array",
1055
- "items": {
1056
- "type": "integer"
1057
- }
1058
- },
1059
- "uncommonShopJokers": {
1060
- "type": "array",
1061
- "items": {
1062
- "type": "integer"
1063
- }
1064
- },
1065
- "rareShopJokers": {
1066
- "type": "array",
1067
- "items": {
1068
- "type": "integer"
1069
- }
1070
- },
1071
- "commonShopJokers": {
1072
- "type": "array",
1073
- "items": {
1074
- "type": "integer"
1075
- }
1076
- },
1077
- "allShopJokers": {
1078
- "type": "array",
1079
- "items": {
1080
- "type": "integer"
1081
- }
1082
- }
1083
- }
1084
- }
1085
- },
1086
- "properties": {
1087
- "id": {
1088
- "type": "string"
1089
- },
1090
- "name": {
1091
- "type": "string"
1092
- },
1093
- "author": {
1094
- "type": "string"
1095
- },
1096
- "dateCreated": {
1097
- "type": "string"
1098
- },
1099
- "description": {
1100
- "type": "string"
1101
- },
1102
- "deck": {
1103
- "$ref": "#/$defs/Deck"
1104
- },
1105
- "stake": {
1106
- "$ref": "#/$defs/Stake"
1107
- },
1108
- "defaults": {
1109
- "type": "object",
1110
- "properties": {
1111
- "antes": {
1112
- "type": "array",
1113
- "items": {
1114
- "type": "integer"
1115
- }
1116
- },
1117
- "boosterPacks": {
1118
- "type": "array",
1119
- "items": {
1120
- "type": "integer"
1121
- }
1122
- },
1123
- "shopItems": {
1124
- "type": "array",
1125
- "items": {
1126
- "type": "integer"
1127
- }
1128
- },
1129
- "score": {
1130
- "type": "integer"
1131
- }
1132
- }
1133
- },
1134
- "must": {
1135
- "type": "array",
1136
- "items": {
1137
- "$ref": "#/$defs/JamlClauseDto"
1138
- }
1139
- },
1140
- "should": {
1141
- "type": "array",
1142
- "items": {
1143
- "$ref": "#/$defs/JamlClauseDto"
1144
- }
1145
- },
1146
- "mustNot": {
1147
- "type": "array",
1148
- "items": {
1149
- "$ref": "#/$defs/JamlClauseDto"
1150
- }
1151
- },
1152
- "hashtags": {
1153
- "type": "array",
1154
- "items": {
1155
- "type": "string"
1156
- }
1157
- },
1158
- "seeds": {
1159
- "type": "array",
1160
- "items": {
1161
- "type": "string"
1162
- }
1163
- }
1164
- }
1165
- }
1
+ {
2
+ "$schema": "https://json-schema.org/draft/2020-12/schema",
3
+ "$id": "https://seedfinder.app/jaml.schema.json",
4
+ "title": "JAML — Jimbo's Ante Markup Language",
5
+ "description": "Declarative filter language for Balatro seed searches. A JAML document specifies the criteria a seed must satisfy; the Motely engine compiles and runs it.",
6
+ "version": "17.4.5",
7
+ "type": "object",
8
+ "additionalProperties": false,
9
+ "properties": {
10
+ "id": {
11
+ "type": "string"
12
+ },
13
+ "name": {
14
+ "type": "string"
15
+ },
16
+ "author": {
17
+ "type": "string"
18
+ },
19
+ "dateCreated": {
20
+ "type": "string"
21
+ },
22
+ "description": {
23
+ "type": "string"
24
+ },
25
+ "deck": {
26
+ "$ref": "#/$defs/MotelyDeck"
27
+ },
28
+ "stake": {
29
+ "$ref": "#/$defs/MotelyStake"
30
+ },
31
+ "defaults": {
32
+ "$ref": "#/$defs/JamlDefaults"
33
+ },
34
+ "must": {
35
+ "type": "array",
36
+ "items": {
37
+ "$ref": "#/$defs/JamlClauseUnion"
38
+ }
39
+ },
40
+ "should": {
41
+ "type": "array",
42
+ "items": {
43
+ "$ref": "#/$defs/JamlClauseUnion"
44
+ }
45
+ },
46
+ "mustNot": {
47
+ "type": "array",
48
+ "items": {
49
+ "$ref": "#/$defs/JamlClauseUnion"
50
+ }
51
+ },
52
+ "hashtags": {
53
+ "type": "array",
54
+ "items": {
55
+ "type": "string"
56
+ }
57
+ },
58
+ "seeds": {
59
+ "type": "array",
60
+ "items": {
61
+ "type": "string"
62
+ }
63
+ }
64
+ },
65
+ "$defs": {
66
+ "JamlDefaults": {
67
+ "type": "object",
68
+ "additionalProperties": false,
69
+ "properties": {
70
+ "antes": {
71
+ "type": "array",
72
+ "items": {
73
+ "type": "integer"
74
+ }
75
+ },
76
+ "boosterPacks": {
77
+ "type": "array",
78
+ "items": {
79
+ "type": "integer"
80
+ }
81
+ },
82
+ "shopItems": {
83
+ "type": "array",
84
+ "items": {
85
+ "type": "integer"
86
+ }
87
+ },
88
+ "score": {
89
+ "type": "integer"
90
+ }
91
+ }
92
+ },
93
+ "JamlClauseUnion": {
94
+ "type": "object",
95
+ "additionalProperties": false,
96
+ "properties": {
97
+ "joker": {
98
+ "oneOf": [
99
+ {
100
+ "const": "any"
101
+ },
102
+ {
103
+ "$ref": "#/$defs/MotelyJoker"
104
+ }
105
+ ]
106
+ },
107
+ "jokers": {
108
+ "type": "array",
109
+ "items": {
110
+ "$ref": "#/$defs/MotelyJoker"
111
+ }
112
+ },
113
+ "commonJoker": {
114
+ "oneOf": [
115
+ {
116
+ "const": "any"
117
+ },
118
+ {
119
+ "$ref": "#/$defs/MotelyJokerCommon"
120
+ }
121
+ ]
122
+ },
123
+ "commonJokers": {
124
+ "type": "array",
125
+ "items": {
126
+ "$ref": "#/$defs/MotelyJokerCommon"
127
+ }
128
+ },
129
+ "uncommonJoker": {
130
+ "oneOf": [
131
+ {
132
+ "const": "any"
133
+ },
134
+ {
135
+ "$ref": "#/$defs/MotelyJokerUncommon"
136
+ }
137
+ ]
138
+ },
139
+ "uncommonJokers": {
140
+ "type": "array",
141
+ "items": {
142
+ "$ref": "#/$defs/MotelyJokerUncommon"
143
+ }
144
+ },
145
+ "rareJoker": {
146
+ "oneOf": [
147
+ {
148
+ "const": "any"
149
+ },
150
+ {
151
+ "$ref": "#/$defs/MotelyJokerRare"
152
+ }
153
+ ]
154
+ },
155
+ "rareJokers": {
156
+ "type": "array",
157
+ "items": {
158
+ "$ref": "#/$defs/MotelyJokerRare"
159
+ }
160
+ },
161
+ "legendaryJoker": {
162
+ "oneOf": [
163
+ {
164
+ "const": "any"
165
+ },
166
+ {
167
+ "$ref": "#/$defs/MotelyJokerLegendary"
168
+ }
169
+ ]
170
+ },
171
+ "legendaryJokers": {
172
+ "type": "array",
173
+ "items": {
174
+ "$ref": "#/$defs/MotelyJokerLegendary"
175
+ }
176
+ },
177
+ "voucher": {
178
+ "$ref": "#/$defs/MotelyVoucher"
179
+ },
180
+ "vouchers": {
181
+ "type": "array",
182
+ "items": {
183
+ "$ref": "#/$defs/MotelyVoucher"
184
+ }
185
+ },
186
+ "tarotCard": {
187
+ "$ref": "#/$defs/MotelyTarotCard"
188
+ },
189
+ "tarotCards": {
190
+ "type": "array",
191
+ "items": {
192
+ "$ref": "#/$defs/MotelyTarotCard"
193
+ }
194
+ },
195
+ "spectralCard": {
196
+ "$ref": "#/$defs/MotelySpectralCard"
197
+ },
198
+ "spectralCards": {
199
+ "type": "array",
200
+ "items": {
201
+ "$ref": "#/$defs/MotelySpectralCard"
202
+ }
203
+ },
204
+ "planetCard": {
205
+ "$ref": "#/$defs/MotelyPlanetCard"
206
+ },
207
+ "boss": {
208
+ "$ref": "#/$defs/MotelyBossBlind"
209
+ },
210
+ "tag": {
211
+ "$ref": "#/$defs/MotelyTag"
212
+ },
213
+ "smallBlindTag": {
214
+ "$ref": "#/$defs/MotelyTag"
215
+ },
216
+ "bigBlindTag": {
217
+ "$ref": "#/$defs/MotelyTag"
218
+ },
219
+ "standardCard": {
220
+ "oneOf": [
221
+ {
222
+ "type": "string"
223
+ },
224
+ {
225
+ "$ref": "#/$defs/StandardCardConfig"
226
+ }
227
+ ]
228
+ },
229
+ "standardCards": {
230
+ "type": "array",
231
+ "items": {
232
+ "oneOf": [
233
+ {
234
+ "type": "string"
235
+ },
236
+ {
237
+ "$ref": "#/$defs/StandardCardConfig"
238
+ }
239
+ ]
240
+ }
241
+ },
242
+ "erraticRank": {
243
+ "type": "string"
244
+ },
245
+ "erraticSuit": {
246
+ "type": "string"
247
+ },
248
+ "erraticCard": {
249
+ "type": "string"
250
+ },
251
+ "startingDraw": {
252
+ "type": "string"
253
+ },
254
+ "event": {
255
+ "$ref": "#/$defs/MotelyEventType"
256
+ },
257
+ "luckyMoney": {
258
+ "type": "array",
259
+ "items": {
260
+ "type": "integer"
261
+ }
262
+ },
263
+ "luckyMult": {
264
+ "type": "array",
265
+ "items": {
266
+ "type": "integer"
267
+ }
268
+ },
269
+ "misprintMult": {
270
+ "type": "array",
271
+ "items": {
272
+ "type": "integer"
273
+ }
274
+ },
275
+ "wheelOfFortune": {
276
+ "type": "array",
277
+ "items": {
278
+ "type": "integer"
279
+ }
280
+ },
281
+ "cavendishExtinct": {
282
+ "type": "array",
283
+ "items": {
284
+ "type": "integer"
285
+ }
286
+ },
287
+ "grosMichelExtinct": {
288
+ "type": "array",
289
+ "items": {
290
+ "type": "integer"
291
+ }
292
+ },
293
+ "spaceLevelup": {
294
+ "type": "array",
295
+ "items": {
296
+ "type": "integer"
297
+ }
298
+ },
299
+ "businessPayout": {
300
+ "type": "array",
301
+ "items": {
302
+ "type": "integer"
303
+ }
304
+ },
305
+ "bloodstoneTrigger": {
306
+ "type": "array",
307
+ "items": {
308
+ "type": "integer"
309
+ }
310
+ },
311
+ "parkingPayout": {
312
+ "type": "array",
313
+ "items": {
314
+ "type": "integer"
315
+ }
316
+ },
317
+ "glassDestroy": {
318
+ "type": "array",
319
+ "items": {
320
+ "type": "integer"
321
+ }
322
+ },
323
+ "wheelStaysFlipped": {
324
+ "type": "array",
325
+ "items": {
326
+ "type": "integer"
327
+ }
328
+ },
329
+ "antes": {
330
+ "type": "array",
331
+ "items": {
332
+ "type": "integer"
333
+ }
334
+ },
335
+ "score": {
336
+ "type": "integer"
337
+ },
338
+ "min": {
339
+ "type": "integer"
340
+ },
341
+ "max": {
342
+ "type": "integer"
343
+ },
344
+ "label": {
345
+ "type": "string"
346
+ },
347
+ "edition": {
348
+ "$ref": "#/$defs/MotelyItemEdition"
349
+ },
350
+ "stickers": {
351
+ "type": "array",
352
+ "items": {
353
+ "$ref": "#/$defs/MotelyJokerSticker"
354
+ }
355
+ },
356
+ "seal": {
357
+ "$ref": "#/$defs/MotelyItemSeal"
358
+ },
359
+ "enhancement": {
360
+ "$ref": "#/$defs/MotelyItemEnhancement"
361
+ },
362
+ "rank": {
363
+ "type": "string"
364
+ },
365
+ "suit": {
366
+ "type": "string"
367
+ },
368
+ "rolls": {
369
+ "type": "array",
370
+ "items": {
371
+ "type": "integer"
372
+ }
373
+ },
374
+ "soulEditionRolls": {
375
+ "type": "integer"
376
+ },
377
+ "soulCardOnly": {
378
+ "type": "boolean"
379
+ },
380
+ "and": {
381
+ "type": "array",
382
+ "items": {
383
+ "$ref": "#/$defs/JamlClauseUnion"
384
+ }
385
+ },
386
+ "or": {
387
+ "type": "array",
388
+ "items": {
389
+ "$ref": "#/$defs/JamlClauseUnion"
390
+ }
391
+ },
392
+ "clauses": {
393
+ "type": "array",
394
+ "items": {
395
+ "$ref": "#/$defs/JamlClauseUnion"
396
+ }
397
+ },
398
+ "mode": {
399
+ "type": "string"
400
+ },
401
+ "judgement": {
402
+ "type": "array",
403
+ "items": {
404
+ "type": "integer"
405
+ }
406
+ },
407
+ "wraith": {
408
+ "type": "array",
409
+ "items": {
410
+ "type": "integer"
411
+ }
412
+ },
413
+ "rareTag": {
414
+ "type": "array",
415
+ "items": {
416
+ "type": "integer"
417
+ }
418
+ },
419
+ "uncommonTag": {
420
+ "type": "array",
421
+ "items": {
422
+ "type": "integer"
423
+ }
424
+ },
425
+ "shopItems": {
426
+ "type": "array",
427
+ "items": {
428
+ "type": "integer"
429
+ }
430
+ },
431
+ "boosterPacks": {
432
+ "type": "array",
433
+ "items": {
434
+ "type": "integer"
435
+ }
436
+ },
437
+ "minShopItem": {
438
+ "type": "integer"
439
+ },
440
+ "maxShopItem": {
441
+ "type": "integer"
442
+ },
443
+ "sources": {
444
+ "$ref": "#/$defs/JamlSources"
445
+ }
446
+ }
447
+ },
448
+ "MotelyJoker": {
449
+ "type": "string",
450
+ "enum": [
451
+ "Joker",
452
+ "GreedyJoker",
453
+ "LustyJoker",
454
+ "WrathfulJoker",
455
+ "GluttonousJoker",
456
+ "JollyJoker",
457
+ "ZanyJoker",
458
+ "MadJoker",
459
+ "CrazyJoker",
460
+ "DrollJoker",
461
+ "SlyJoker",
462
+ "WilyJoker",
463
+ "CleverJoker",
464
+ "DeviousJoker",
465
+ "CraftyJoker",
466
+ "HalfJoker",
467
+ "CreditCard",
468
+ "Banner",
469
+ "MysticSummit",
470
+ "EightBall",
471
+ "Misprint",
472
+ "RaisedFist",
473
+ "ChaostheClown",
474
+ "ScaryFace",
475
+ "AbstractJoker",
476
+ "DelayedGratification",
477
+ "GrosMichel",
478
+ "EvenSteven",
479
+ "OddTodd",
480
+ "Scholar",
481
+ "BusinessCard",
482
+ "Supernova",
483
+ "RideTheBus",
484
+ "Egg",
485
+ "Runner",
486
+ "IceCream",
487
+ "Splash",
488
+ "BlueJoker",
489
+ "FacelessJoker",
490
+ "GreenJoker",
491
+ "Superposition",
492
+ "ToDoList",
493
+ "Cavendish",
494
+ "RedCard",
495
+ "SquareJoker",
496
+ "RiffRaff",
497
+ "Photograph",
498
+ "ReservedParking",
499
+ "MailInRebate",
500
+ "Hallucination",
501
+ "FortuneTeller",
502
+ "Juggler",
503
+ "Drunkard",
504
+ "GoldenJoker",
505
+ "Popcorn",
506
+ "WalkieTalkie",
507
+ "SmileyFace",
508
+ "GoldenTicket",
509
+ "Swashbuckler",
510
+ "HangingChad",
511
+ "ShootTheMoon",
512
+ "JokerStencil",
513
+ "FourFingers",
514
+ "Mime",
515
+ "CeremonialDagger",
516
+ "MarbleJoker",
517
+ "LoyaltyCard",
518
+ "Dusk",
519
+ "Fibonacci",
520
+ "SteelJoker",
521
+ "Hack",
522
+ "Pareidolia",
523
+ "SpaceJoker",
524
+ "Burglar",
525
+ "Blackboard",
526
+ "SixthSense",
527
+ "Constellation",
528
+ "Hiker",
529
+ "CardSharp",
530
+ "Madness",
531
+ "Seance",
532
+ "Vampire",
533
+ "Shortcut",
534
+ "Hologram",
535
+ "Cloud9",
536
+ "Rocket",
537
+ "MidasMask",
538
+ "Luchador",
539
+ "GiftCard",
540
+ "TurtleBean",
541
+ "Erosion",
542
+ "ToTheMoon",
543
+ "StoneJoker",
544
+ "LuckyCat",
545
+ "Bull",
546
+ "DietCola",
547
+ "TradingCard",
548
+ "FlashCard",
549
+ "SpareTrousers",
550
+ "Ramen",
551
+ "Seltzer",
552
+ "Castle",
553
+ "MrBones",
554
+ "Acrobat",
555
+ "SockAndBuskin",
556
+ "Troubadour",
557
+ "Certificate",
558
+ "SmearedJoker",
559
+ "Throwback",
560
+ "RoughGem",
561
+ "Bloodstone",
562
+ "Arrowhead",
563
+ "OnyxAgate",
564
+ "GlassJoker",
565
+ "Showman",
566
+ "FlowerPot",
567
+ "MerryAndy",
568
+ "OopsAll6s",
569
+ "TheIdol",
570
+ "SeeingDouble",
571
+ "Matador",
572
+ "Satellite",
573
+ "Cartomancer",
574
+ "Astronomer",
575
+ "Bootstraps",
576
+ "DNA",
577
+ "Vagabond",
578
+ "Baron",
579
+ "Obelisk",
580
+ "BaseballCard",
581
+ "AncientJoker",
582
+ "Campfire",
583
+ "Blueprint",
584
+ "WeeJoker",
585
+ "HitTheRoad",
586
+ "TheDuo",
587
+ "TheTrio",
588
+ "TheFamily",
589
+ "TheOrder",
590
+ "TheTribe",
591
+ "Stuntman",
592
+ "InvisibleJoker",
593
+ "Brainstorm",
594
+ "DriversLicense",
595
+ "BurntJoker",
596
+ "Canio",
597
+ "Triboulet",
598
+ "Yorick",
599
+ "Chicot",
600
+ "Perkeo"
601
+ ]
602
+ },
603
+ "MotelyJokerCommon": {
604
+ "type": "string",
605
+ "enum": [
606
+ "Joker",
607
+ "GreedyJoker",
608
+ "LustyJoker",
609
+ "WrathfulJoker",
610
+ "GluttonousJoker",
611
+ "JollyJoker",
612
+ "ZanyJoker",
613
+ "MadJoker",
614
+ "CrazyJoker",
615
+ "DrollJoker",
616
+ "SlyJoker",
617
+ "WilyJoker",
618
+ "CleverJoker",
619
+ "DeviousJoker",
620
+ "CraftyJoker",
621
+ "HalfJoker",
622
+ "CreditCard",
623
+ "Banner",
624
+ "MysticSummit",
625
+ "EightBall",
626
+ "Misprint",
627
+ "RaisedFist",
628
+ "ChaostheClown",
629
+ "ScaryFace",
630
+ "AbstractJoker",
631
+ "DelayedGratification",
632
+ "GrosMichel",
633
+ "EvenSteven",
634
+ "OddTodd",
635
+ "Scholar",
636
+ "BusinessCard",
637
+ "Supernova",
638
+ "RideTheBus",
639
+ "Egg",
640
+ "Runner",
641
+ "IceCream",
642
+ "Splash",
643
+ "BlueJoker",
644
+ "FacelessJoker",
645
+ "GreenJoker",
646
+ "Superposition",
647
+ "ToDoList",
648
+ "Cavendish",
649
+ "RedCard",
650
+ "SquareJoker",
651
+ "RiffRaff",
652
+ "Photograph",
653
+ "ReservedParking",
654
+ "MailInRebate",
655
+ "Hallucination",
656
+ "FortuneTeller",
657
+ "Juggler",
658
+ "Drunkard",
659
+ "GoldenJoker",
660
+ "Popcorn",
661
+ "WalkieTalkie",
662
+ "SmileyFace",
663
+ "GoldenTicket",
664
+ "Swashbuckler",
665
+ "HangingChad",
666
+ "ShootTheMoon"
667
+ ]
668
+ },
669
+ "MotelyJokerUncommon": {
670
+ "type": "string",
671
+ "enum": [
672
+ "JokerStencil",
673
+ "FourFingers",
674
+ "Mime",
675
+ "CeremonialDagger",
676
+ "MarbleJoker",
677
+ "LoyaltyCard",
678
+ "Dusk",
679
+ "Fibonacci",
680
+ "SteelJoker",
681
+ "Hack",
682
+ "Pareidolia",
683
+ "SpaceJoker",
684
+ "Burglar",
685
+ "Blackboard",
686
+ "SixthSense",
687
+ "Constellation",
688
+ "Hiker",
689
+ "CardSharp",
690
+ "Madness",
691
+ "Seance",
692
+ "Vampire",
693
+ "Shortcut",
694
+ "Hologram",
695
+ "Cloud9",
696
+ "Rocket",
697
+ "MidasMask",
698
+ "Luchador",
699
+ "GiftCard",
700
+ "TurtleBean",
701
+ "Erosion",
702
+ "ToTheMoon",
703
+ "StoneJoker",
704
+ "LuckyCat",
705
+ "Bull",
706
+ "DietCola",
707
+ "TradingCard",
708
+ "FlashCard",
709
+ "SpareTrousers",
710
+ "Ramen",
711
+ "Seltzer",
712
+ "Castle",
713
+ "MrBones",
714
+ "Acrobat",
715
+ "SockAndBuskin",
716
+ "Troubadour",
717
+ "Certificate",
718
+ "SmearedJoker",
719
+ "Throwback",
720
+ "RoughGem",
721
+ "Bloodstone",
722
+ "Arrowhead",
723
+ "OnyxAgate",
724
+ "GlassJoker",
725
+ "Showman",
726
+ "FlowerPot",
727
+ "MerryAndy",
728
+ "OopsAll6s",
729
+ "TheIdol",
730
+ "SeeingDouble",
731
+ "Matador",
732
+ "Satellite",
733
+ "Cartomancer",
734
+ "Astronomer",
735
+ "Bootstraps"
736
+ ]
737
+ },
738
+ "MotelyJokerRare": {
739
+ "type": "string",
740
+ "enum": [
741
+ "DNA",
742
+ "Vagabond",
743
+ "Baron",
744
+ "Obelisk",
745
+ "BaseballCard",
746
+ "AncientJoker",
747
+ "Campfire",
748
+ "Blueprint",
749
+ "WeeJoker",
750
+ "HitTheRoad",
751
+ "TheDuo",
752
+ "TheTrio",
753
+ "TheFamily",
754
+ "TheOrder",
755
+ "TheTribe",
756
+ "Stuntman",
757
+ "InvisibleJoker",
758
+ "Brainstorm",
759
+ "DriversLicense",
760
+ "BurntJoker"
761
+ ]
762
+ },
763
+ "MotelyJokerLegendary": {
764
+ "type": "string",
765
+ "enum": [
766
+ "Canio",
767
+ "Triboulet",
768
+ "Yorick",
769
+ "Chicot",
770
+ "Perkeo"
771
+ ]
772
+ },
773
+ "MotelyVoucher": {
774
+ "type": "string",
775
+ "enum": [
776
+ "Overstock",
777
+ "OverstockPlus",
778
+ "ClearanceSale",
779
+ "Liquidation",
780
+ "Hone",
781
+ "GlowUp",
782
+ "RerollSurplus",
783
+ "RerollGlut",
784
+ "CrystalBall",
785
+ "OmenGlobe",
786
+ "Telescope",
787
+ "Observatory",
788
+ "Grabber",
789
+ "NachoTong",
790
+ "Wasteful",
791
+ "Recyclomancy",
792
+ "TarotMerchant",
793
+ "TarotTycoon",
794
+ "PlanetMerchant",
795
+ "PlanetTycoon",
796
+ "SeedMoney",
797
+ "MoneyTree",
798
+ "Blank",
799
+ "Antimatter",
800
+ "MagicTrick",
801
+ "Illusion",
802
+ "Hieroglyph",
803
+ "Petroglyph",
804
+ "DirectorsCut",
805
+ "Retcon",
806
+ "PaintBrush",
807
+ "Palette"
808
+ ]
809
+ },
810
+ "MotelyTarotCard": {
811
+ "type": "string",
812
+ "enum": [
813
+ "TheFool",
814
+ "TheMagician",
815
+ "TheHighPriestess",
816
+ "TheEmpress",
817
+ "TheEmperor",
818
+ "TheHierophant",
819
+ "TheLovers",
820
+ "TheChariot",
821
+ "Justice",
822
+ "TheHermit",
823
+ "TheWheelOfFortune",
824
+ "Strength",
825
+ "TheHangedMan",
826
+ "Death",
827
+ "Temperance",
828
+ "TheDevil",
829
+ "TheTower",
830
+ "TheStar",
831
+ "TheMoon",
832
+ "TheSun",
833
+ "Judgement",
834
+ "TheWorld"
835
+ ]
836
+ },
837
+ "MotelySpectralCard": {
838
+ "type": "string",
839
+ "enum": [
840
+ "Familiar",
841
+ "Grim",
842
+ "Incantation",
843
+ "Talisman",
844
+ "Aura",
845
+ "Wraith",
846
+ "Sigil",
847
+ "Ouija",
848
+ "Ectoplasm",
849
+ "Immolate",
850
+ "Ankh",
851
+ "DejaVu",
852
+ "Hex",
853
+ "Trance",
854
+ "Medium",
855
+ "Cryptid",
856
+ "TheSoul",
857
+ "BlackHole"
858
+ ]
859
+ },
860
+ "MotelyPlanetCard": {
861
+ "type": "string",
862
+ "enum": [
863
+ "Mercury",
864
+ "Venus",
865
+ "Earth",
866
+ "Mars",
867
+ "Jupiter",
868
+ "Saturn",
869
+ "Uranus",
870
+ "Neptune",
871
+ "Pluto",
872
+ "PlanetX",
873
+ "Ceres",
874
+ "Eris"
875
+ ]
876
+ },
877
+ "MotelyBossBlind": {
878
+ "type": "string",
879
+ "enum": [
880
+ "TheClub",
881
+ "TheGoad",
882
+ "TheHead",
883
+ "TheHook",
884
+ "TheManacle",
885
+ "ThePillar",
886
+ "ThePsychic",
887
+ "TheWindow",
888
+ "TheArm",
889
+ "TheFish",
890
+ "TheFlint",
891
+ "TheHouse",
892
+ "TheMark",
893
+ "TheMouth",
894
+ "TheNeedle",
895
+ "TheWall",
896
+ "TheWater",
897
+ "TheWheel",
898
+ "TheEye",
899
+ "TheTooth",
900
+ "ThePlant",
901
+ "TheSerpent",
902
+ "TheOx",
903
+ "AmberAcorn",
904
+ "CeruleanBell",
905
+ "CrimsonHeart",
906
+ "VerdantLeaf",
907
+ "VioletVessel"
908
+ ]
909
+ },
910
+ "MotelyTag": {
911
+ "type": "string",
912
+ "enum": [
913
+ "UncommonTag",
914
+ "RareTag",
915
+ "NegativeTag",
916
+ "FoilTag",
917
+ "HolographicTag",
918
+ "PolychromeTag",
919
+ "InvestmentTag",
920
+ "VoucherTag",
921
+ "BossTag",
922
+ "StandardTag",
923
+ "CharmTag",
924
+ "MeteorTag",
925
+ "BuffoonTag",
926
+ "HandyTag",
927
+ "GarbageTag",
928
+ "EtherealTag",
929
+ "CouponTag",
930
+ "DoubleTag",
931
+ "JuggleTag",
932
+ "D6Tag",
933
+ "TopupTag",
934
+ "SpeedTag",
935
+ "OrbitalTag",
936
+ "EconomyTag"
937
+ ]
938
+ },
939
+ "StandardCardConfig": {
940
+ "type": "object",
941
+ "additionalProperties": false,
942
+ "properties": {
943
+ "rank": {
944
+ "type": "string"
945
+ },
946
+ "suit": {
947
+ "type": "string"
948
+ },
949
+ "seal": {
950
+ "$ref": "#/$defs/MotelyItemSeal"
951
+ },
952
+ "enhancement": {
953
+ "$ref": "#/$defs/MotelyItemEnhancement"
954
+ },
955
+ "edition": {
956
+ "$ref": "#/$defs/MotelyItemEdition"
957
+ },
958
+ "sources": {
959
+ "$ref": "#/$defs/JamlSources"
960
+ }
961
+ }
962
+ },
963
+ "MotelyItemSeal": {
964
+ "type": "string",
965
+ "enum": [
966
+ "None",
967
+ "Gold",
968
+ "Red",
969
+ "Blue",
970
+ "Purple"
971
+ ]
972
+ },
973
+ "MotelyItemEnhancement": {
974
+ "type": "string",
975
+ "enum": [
976
+ "None",
977
+ "Bonus",
978
+ "Mult",
979
+ "Wild",
980
+ "Glass",
981
+ "Steel",
982
+ "Stone",
983
+ "Gold",
984
+ "Lucky"
985
+ ]
986
+ },
987
+ "MotelyItemEdition": {
988
+ "type": "string",
989
+ "enum": [
990
+ "None",
991
+ "Foil",
992
+ "Holographic",
993
+ "Polychrome",
994
+ "Negative"
995
+ ]
996
+ },
997
+ "JamlSources": {
998
+ "type": "object",
999
+ "additionalProperties": false,
1000
+ "properties": {
1001
+ "shopItems": {
1002
+ "type": "array",
1003
+ "items": {
1004
+ "type": "integer"
1005
+ }
1006
+ },
1007
+ "boosterPacks": {
1008
+ "type": "array",
1009
+ "items": {
1010
+ "type": "integer"
1011
+ }
1012
+ },
1013
+ "minShopItem": {
1014
+ "type": "integer"
1015
+ },
1016
+ "maxShopItem": {
1017
+ "type": "integer"
1018
+ },
1019
+ "tags": {
1020
+ "type": "boolean"
1021
+ },
1022
+ "requireMega": {
1023
+ "type": "boolean"
1024
+ },
1025
+ "charmTag": {
1026
+ "type": "boolean"
1027
+ },
1028
+ "etherealTag": {
1029
+ "type": "boolean"
1030
+ },
1031
+ "judgement": {
1032
+ "type": "array",
1033
+ "items": {
1034
+ "type": "integer"
1035
+ }
1036
+ },
1037
+ "rareTag": {
1038
+ "type": "array",
1039
+ "items": {
1040
+ "type": "integer"
1041
+ }
1042
+ },
1043
+ "uncommonTag": {
1044
+ "type": "array",
1045
+ "items": {
1046
+ "type": "integer"
1047
+ }
1048
+ },
1049
+ "wraith": {
1050
+ "type": "array",
1051
+ "items": {
1052
+ "type": "integer"
1053
+ }
1054
+ },
1055
+ "soulCard": {
1056
+ "type": "array",
1057
+ "items": {
1058
+ "type": "integer"
1059
+ }
1060
+ },
1061
+ "arcanaPacks": {
1062
+ "type": "array",
1063
+ "items": {
1064
+ "type": "integer"
1065
+ }
1066
+ },
1067
+ "spectralPacks": {
1068
+ "type": "array",
1069
+ "items": {
1070
+ "type": "integer"
1071
+ }
1072
+ },
1073
+ "riffRaff": {
1074
+ "type": "array",
1075
+ "items": {
1076
+ "type": "integer"
1077
+ }
1078
+ },
1079
+ "purpleSealOrEightBall": {
1080
+ "type": "array",
1081
+ "items": {
1082
+ "type": "integer"
1083
+ }
1084
+ },
1085
+ "emperor": {
1086
+ "type": "array",
1087
+ "items": {
1088
+ "type": "integer"
1089
+ }
1090
+ },
1091
+ "sixthSense": {
1092
+ "type": "array",
1093
+ "items": {
1094
+ "type": "integer"
1095
+ }
1096
+ },
1097
+ "seance": {
1098
+ "type": "array",
1099
+ "items": {
1100
+ "type": "integer"
1101
+ }
1102
+ },
1103
+ "certificate": {
1104
+ "type": "array",
1105
+ "items": {
1106
+ "type": "integer"
1107
+ }
1108
+ },
1109
+ "incantation": {
1110
+ "type": "array",
1111
+ "items": {
1112
+ "type": "integer"
1113
+ }
1114
+ },
1115
+ "familiar": {
1116
+ "type": "array",
1117
+ "items": {
1118
+ "type": "integer"
1119
+ }
1120
+ },
1121
+ "grim": {
1122
+ "type": "array",
1123
+ "items": {
1124
+ "type": "integer"
1125
+ }
1126
+ },
1127
+ "deckDraw": {
1128
+ "type": "array",
1129
+ "items": {
1130
+ "type": "integer"
1131
+ }
1132
+ },
1133
+ "uncommonShopJokers": {
1134
+ "type": "array",
1135
+ "items": {
1136
+ "type": "integer"
1137
+ }
1138
+ },
1139
+ "rareShopJokers": {
1140
+ "type": "array",
1141
+ "items": {
1142
+ "type": "integer"
1143
+ }
1144
+ },
1145
+ "commonShopJokers": {
1146
+ "type": "array",
1147
+ "items": {
1148
+ "type": "integer"
1149
+ }
1150
+ },
1151
+ "allShopJokers": {
1152
+ "type": "array",
1153
+ "items": {
1154
+ "type": "integer"
1155
+ }
1156
+ }
1157
+ }
1158
+ },
1159
+ "MotelyEventType": {
1160
+ "type": "string",
1161
+ "enum": [
1162
+ "LuckyMoney",
1163
+ "LuckyMult",
1164
+ "MisprintMult",
1165
+ "WheelOfFortune",
1166
+ "CavendishExtinct",
1167
+ "GrosMichelExtinct",
1168
+ "SpaceLevelup",
1169
+ "BusinessPayout",
1170
+ "BloodstoneTrigger",
1171
+ "ParkingPayout",
1172
+ "GlassDestroy",
1173
+ "WheelStaysFlipped"
1174
+ ]
1175
+ },
1176
+ "MotelyJokerSticker": {
1177
+ "type": "string",
1178
+ "enum": [
1179
+ "None",
1180
+ "Eternal",
1181
+ "Perishable",
1182
+ "Rental"
1183
+ ]
1184
+ },
1185
+ "MotelyDeck": {
1186
+ "type": "string",
1187
+ "enum": [
1188
+ "Red",
1189
+ "Blue",
1190
+ "Yellow",
1191
+ "Green",
1192
+ "Black",
1193
+ "Magic",
1194
+ "Nebula",
1195
+ "Ghost",
1196
+ "Abandoned",
1197
+ "Checkered",
1198
+ "Zodiac",
1199
+ "Painted",
1200
+ "Anaglyph",
1201
+ "Plasma",
1202
+ "Erratic"
1203
+ ]
1204
+ },
1205
+ "MotelyStake": {
1206
+ "type": "string",
1207
+ "enum": [
1208
+ "White",
1209
+ "Red",
1210
+ "Green",
1211
+ "Black",
1212
+ "Blue",
1213
+ "Purple",
1214
+ "Orange",
1215
+ "Gold"
1216
+ ]
1217
+ }
1218
+ }
1219
+ }