jaml-ui 0.16.0 → 0.17.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 (86) hide show
  1. package/DESIGN.md +9 -11
  2. package/dist/assets.d.ts +6 -0
  3. package/dist/assets.js +9 -0
  4. package/dist/components/AnalyzerExplorer.d.ts +4 -1
  5. package/dist/components/AnalyzerExplorer.js +14 -48
  6. package/dist/components/GameCard.js +8 -7
  7. package/dist/components/JamlAestheticSelector.d.ts +4 -0
  8. package/dist/components/JamlAestheticSelector.js +6 -19
  9. package/dist/components/JamlAnalyzerFullscreen.d.ts +7 -1
  10. package/dist/components/JamlAnalyzerFullscreen.js +18 -47
  11. package/dist/components/JamlIde.js +12 -24
  12. package/dist/components/JamlIdeVisual.js +3 -56
  13. package/dist/components/JamlMapPreview.d.ts +6 -1
  14. package/dist/components/JamlMapPreview.js +99 -21
  15. package/dist/components/JamlSeedInput.d.ts +5 -0
  16. package/dist/components/JamlSeedInput.js +11 -14
  17. package/dist/components/JamlSpeedometer.d.ts +8 -8
  18. package/dist/components/JamlSpeedometer.js +24 -46
  19. package/dist/components/MotelyVersionBadge.d.ts +1 -3
  20. package/dist/components/MotelyVersionBadge.js +4 -16
  21. package/dist/components/jamlMap/JamlMapEditorDemo.d.ts +8 -0
  22. package/dist/components/jamlMap/JamlMapEditorDemo.js +170 -0
  23. package/dist/components/jamlMap/JokerPicker.d.ts +7 -0
  24. package/dist/components/jamlMap/JokerPicker.js +258 -0
  25. package/dist/components/jamlMap/MysterySlot.d.ts +32 -0
  26. package/dist/components/jamlMap/MysterySlot.js +109 -0
  27. package/dist/components/jamlMap/index.d.ts +3 -0
  28. package/dist/components/jamlMap/index.js +3 -0
  29. package/dist/core.d.ts +0 -2
  30. package/dist/core.js +0 -2
  31. package/dist/decode/motelyItemDecoder.d.ts +10 -23
  32. package/dist/decode/motelyItemDecoder.js +103 -272
  33. package/dist/decode/motelySprite.d.ts +4 -0
  34. package/dist/decode/motelySprite.js +57 -0
  35. package/dist/hooks/analyzerStreamRegistry.js +30 -82
  36. package/dist/hooks/useAnalyzer.d.ts +10 -3
  37. package/dist/hooks/useAnalyzer.js +11 -6
  38. package/dist/hooks/useIntersectionObserver.d.ts +14 -0
  39. package/dist/hooks/useIntersectionObserver.js +50 -0
  40. package/dist/index.d.ts +5 -8
  41. package/dist/index.js +4 -7
  42. package/dist/motely.d.ts +2 -2
  43. package/dist/motely.js +2 -2
  44. package/dist/motelyDisplay.d.ts +4 -623
  45. package/dist/motelyDisplay.js +26 -165
  46. package/dist/r3f/Card3D.d.ts +2 -2
  47. package/dist/r3f/Card3D.js +13 -48
  48. package/dist/r3f/JimboText3D.js +3 -2
  49. package/dist/render/CanvasRenderer.js +7 -171
  50. package/dist/sprites/spriteMapper.d.ts +71 -0
  51. package/dist/sprites/spriteMapper.js +40 -0
  52. package/dist/ui/JimboBadge.d.ts +8 -2
  53. package/dist/ui/JimboBadge.js +6 -22
  54. package/dist/ui/JimboToggleList.js +2 -7
  55. package/dist/ui/codeBlock.js +2 -3
  56. package/dist/ui/footer.d.ts +4 -0
  57. package/dist/ui/footer.js +6 -4
  58. package/dist/ui/hooks.d.ts +89 -0
  59. package/dist/ui/hooks.js +551 -0
  60. package/dist/ui/jimboBackground.js +2 -131
  61. package/dist/ui/jimboCopyRow.d.ts +4 -0
  62. package/dist/ui/jimboCopyRow.js +5 -22
  63. package/dist/ui/jimboFilterBar.d.ts +1 -4
  64. package/dist/ui/jimboFilterBar.js +2 -61
  65. package/dist/ui/jimboFlankNav.d.ts +1 -2
  66. package/dist/ui/jimboFlankNav.js +5 -30
  67. package/dist/ui/jimboTabs.d.ts +1 -5
  68. package/dist/ui/jimboTabs.js +6 -41
  69. package/dist/ui/jimboText.d.ts +1 -1
  70. package/dist/ui/jimboText.js +15 -32
  71. package/dist/ui/jimboTooltip.d.ts +1 -12
  72. package/dist/ui/jimboTooltip.js +6 -82
  73. package/dist/ui/panel.d.ts +2 -1
  74. package/dist/ui/panel.js +11 -47
  75. package/dist/ui/showcase.d.ts +4 -0
  76. package/dist/ui/showcase.js +9 -36
  77. package/dist/ui/sprites.js +3 -2
  78. package/dist/ui.d.ts +1 -0
  79. package/dist/ui.js +2 -0
  80. package/package.json +7 -6
  81. package/dist/decode/packedBalatroItem.d.ts +0 -13
  82. package/dist/decode/packedBalatroItem.js +0 -26
  83. package/dist/hooks/loadMotelyWasm.d.ts +0 -7
  84. package/dist/hooks/loadMotelyWasm.js +0 -16
  85. package/dist/utils/itemUtils.d.ts +0 -11
  86. package/dist/utils/itemUtils.js +0 -71
@@ -1,629 +1,10 @@
1
- type MotelyLabelEntry<K extends string = string> = Readonly<{
2
- key: K;
3
- label: string;
4
- }>;
5
- type EntryKey<T extends readonly MotelyLabelEntry[]> = T[number]["key"];
6
- declare const BOSS_ENTRIES: readonly [{
7
- readonly key: "AmberAcorn";
8
- readonly label: "Amber Acorn";
9
- }, {
10
- readonly key: "CeruleanBell";
11
- readonly label: "Cerulean Bell";
12
- }, {
13
- readonly key: "CrimsonHeart";
14
- readonly label: "Crimson Heart";
15
- }, {
16
- readonly key: "VerdantLeaf";
17
- readonly label: "Verdant Leaf";
18
- }, {
19
- readonly key: "VioletVessel";
20
- readonly label: "Violet Vessel";
21
- }, {
22
- readonly key: "TheArm";
23
- readonly label: "The Arm";
24
- }, {
25
- readonly key: "TheClub";
26
- readonly label: "The Club";
27
- }, {
28
- readonly key: "TheEye";
29
- readonly label: "The Eye";
30
- }, {
31
- readonly key: "TheFish";
32
- readonly label: "The Fish";
33
- }, {
34
- readonly key: "TheFlint";
35
- readonly label: "The Flint";
36
- }, {
37
- readonly key: "TheGoad";
38
- readonly label: "The Goad";
39
- }, {
40
- readonly key: "TheHead";
41
- readonly label: "The Head";
42
- }, {
43
- readonly key: "TheHook";
44
- readonly label: "The Hook";
45
- }, {
46
- readonly key: "TheHouse";
47
- readonly label: "The House";
48
- }, {
49
- readonly key: "TheManacle";
50
- readonly label: "The Manacle";
51
- }, {
52
- readonly key: "TheMark";
53
- readonly label: "The Mark";
54
- }, {
55
- readonly key: "TheMouth";
56
- readonly label: "The Mouth";
57
- }, {
58
- readonly key: "TheNeedle";
59
- readonly label: "The Needle";
60
- }, {
61
- readonly key: "TheOx";
62
- readonly label: "The Ox";
63
- }, {
64
- readonly key: "ThePillar";
65
- readonly label: "The Pillar";
66
- }, {
67
- readonly key: "ThePlant";
68
- readonly label: "The Plant";
69
- }, {
70
- readonly key: "ThePsychic";
71
- readonly label: "The Psychic";
72
- }, {
73
- readonly key: "TheSerpent";
74
- readonly label: "The Serpent";
75
- }, {
76
- readonly key: "TheTooth";
77
- readonly label: "The Tooth";
78
- }, {
79
- readonly key: "TheWall";
80
- readonly label: "The Wall";
81
- }, {
82
- readonly key: "TheWater";
83
- readonly label: "The Water";
84
- }, {
85
- readonly key: "TheWheel";
86
- readonly label: "The Wheel";
87
- }, {
88
- readonly key: "TheWindow";
89
- readonly label: "The Window";
90
- }];
91
- declare const VOUCHER_ENTRIES: readonly [{
92
- readonly key: "Overstock";
93
- readonly label: "Overstock";
94
- }, {
95
- readonly key: "OverstockPlus";
96
- readonly label: "Overstock Plus";
97
- }, {
98
- readonly key: "ClearanceSale";
99
- readonly label: "Clearance Sale";
100
- }, {
101
- readonly key: "Liquidation";
102
- readonly label: "Liquidation";
103
- }, {
104
- readonly key: "Hone";
105
- readonly label: "Hone";
106
- }, {
107
- readonly key: "GlowUp";
108
- readonly label: "Glow Up";
109
- }, {
110
- readonly key: "RerollSurplus";
111
- readonly label: "Reroll Surplus";
112
- }, {
113
- readonly key: "RerollGlut";
114
- readonly label: "Reroll Glut";
115
- }, {
116
- readonly key: "CrystalBall";
117
- readonly label: "Crystal Ball";
118
- }, {
119
- readonly key: "OmenGlobe";
120
- readonly label: "Omen Globe";
121
- }, {
122
- readonly key: "Telescope";
123
- readonly label: "Telescope";
124
- }, {
125
- readonly key: "Observatory";
126
- readonly label: "Observatory";
127
- }, {
128
- readonly key: "Grabber";
129
- readonly label: "Grabber";
130
- }, {
131
- readonly key: "NachoTong";
132
- readonly label: "Nacho Tong";
133
- }, {
134
- readonly key: "Wasteful";
135
- readonly label: "Wasteful";
136
- }, {
137
- readonly key: "Recyclomancy";
138
- readonly label: "Recyclomancy";
139
- }, {
140
- readonly key: "TarotMerchant";
141
- readonly label: "Tarot Merchant";
142
- }, {
143
- readonly key: "TarotTycoon";
144
- readonly label: "Tarot Tycoon";
145
- }, {
146
- readonly key: "PlanetMerchant";
147
- readonly label: "Planet Merchant";
148
- }, {
149
- readonly key: "PlanetTycoon";
150
- readonly label: "Planet Tycoon";
151
- }, {
152
- readonly key: "SeedMoney";
153
- readonly label: "Seed Money";
154
- }, {
155
- readonly key: "MoneyTree";
156
- readonly label: "Money Tree";
157
- }, {
158
- readonly key: "Blank";
159
- readonly label: "Blank";
160
- }, {
161
- readonly key: "Antimatter";
162
- readonly label: "Antimatter";
163
- }, {
164
- readonly key: "MagicTrick";
165
- readonly label: "Magic Trick";
166
- }, {
167
- readonly key: "Illusion";
168
- readonly label: "Illusion";
169
- }, {
170
- readonly key: "Hieroglyph";
171
- readonly label: "Hieroglyph";
172
- }, {
173
- readonly key: "Petroglyph";
174
- readonly label: "Petroglyph";
175
- }, {
176
- readonly key: "DirectorsCut";
177
- readonly label: "Director's Cut";
178
- }, {
179
- readonly key: "Retcon";
180
- readonly label: "Retcon";
181
- }, {
182
- readonly key: "PaintBrush";
183
- readonly label: "Paint Brush";
184
- }, {
185
- readonly key: "Palette";
186
- readonly label: "Palette";
187
- }];
188
- declare const TAG_ENTRIES: readonly [{
189
- readonly key: "UncommonTag";
190
- readonly label: "Uncommon Tag";
191
- }, {
192
- readonly key: "RareTag";
193
- readonly label: "Rare Tag";
194
- }, {
195
- readonly key: "NegativeTag";
196
- readonly label: "Negative Tag";
197
- }, {
198
- readonly key: "FoilTag";
199
- readonly label: "Foil Tag";
200
- }, {
201
- readonly key: "HolographicTag";
202
- readonly label: "Holographic Tag";
203
- }, {
204
- readonly key: "PolychromeTag";
205
- readonly label: "Polychrome Tag";
206
- }, {
207
- readonly key: "InvestmentTag";
208
- readonly label: "Investment Tag";
209
- }, {
210
- readonly key: "VoucherTag";
211
- readonly label: "Voucher Tag";
212
- }, {
213
- readonly key: "BossTag";
214
- readonly label: "Boss Tag";
215
- }, {
216
- readonly key: "StandardTag";
217
- readonly label: "Standard Tag";
218
- }, {
219
- readonly key: "CharmTag";
220
- readonly label: "Charm Tag";
221
- }, {
222
- readonly key: "MeteorTag";
223
- readonly label: "Meteor Tag";
224
- }, {
225
- readonly key: "BuffoonTag";
226
- readonly label: "Buffoon Tag";
227
- }, {
228
- readonly key: "HandyTag";
229
- readonly label: "Handy Tag";
230
- }, {
231
- readonly key: "GarbageTag";
232
- readonly label: "Garbage Tag";
233
- }, {
234
- readonly key: "EtherealTag";
235
- readonly label: "Ethereal Tag";
236
- }, {
237
- readonly key: "CouponTag";
238
- readonly label: "Coupon Tag";
239
- }, {
240
- readonly key: "DoubleTag";
241
- readonly label: "Double Tag";
242
- }, {
243
- readonly key: "JuggleTag";
244
- readonly label: "Juggle Tag";
245
- }, {
246
- readonly key: "D6Tag";
247
- readonly label: "D6 Tag";
248
- }, {
249
- readonly key: "TopupTag";
250
- readonly label: "Top-up Tag";
251
- }, {
252
- readonly key: "SpeedTag";
253
- readonly label: "Speed Tag";
254
- }, {
255
- readonly key: "OrbitalTag";
256
- readonly label: "Orbital Tag";
257
- }, {
258
- readonly key: "EconomyTag";
259
- readonly label: "Economy Tag";
260
- }];
261
- declare const BOOSTER_PACK_ENTRIES: readonly [{
262
- readonly key: "Arcana";
263
- readonly label: "Arcana Pack";
264
- }, {
265
- readonly key: "JumboArcana";
266
- readonly label: "Jumbo Arcana Pack";
267
- }, {
268
- readonly key: "MegaArcana";
269
- readonly label: "Mega Arcana Pack";
270
- }, {
271
- readonly key: "Celestial";
272
- readonly label: "Celestial Pack";
273
- }, {
274
- readonly key: "JumboCelestial";
275
- readonly label: "Jumbo Celestial Pack";
276
- }, {
277
- readonly key: "MegaCelestial";
278
- readonly label: "Mega Celestial Pack";
279
- }, {
280
- readonly key: "Standard";
281
- readonly label: "Standard Pack";
282
- }, {
283
- readonly key: "JumboStandard";
284
- readonly label: "Jumbo Standard Pack";
285
- }, {
286
- readonly key: "MegaStandard";
287
- readonly label: "Mega Standard Pack";
288
- }, {
289
- readonly key: "Buffoon";
290
- readonly label: "Buffoon Pack";
291
- }, {
292
- readonly key: "JumboBuffoon";
293
- readonly label: "Jumbo Buffoon Pack";
294
- }, {
295
- readonly key: "MegaBuffoon";
296
- readonly label: "Mega Buffoon Pack";
297
- }, {
298
- readonly key: "Spectral";
299
- readonly label: "Spectral Pack";
300
- }, {
301
- readonly key: "JumboSpectral";
302
- readonly label: "Jumbo Spectral Pack";
303
- }, {
304
- readonly key: "MegaSpectral";
305
- readonly label: "Mega Spectral Pack";
306
- }];
307
- export declare const MOTELY_DISPLAY_SCHEMA: {
308
- readonly bosses: readonly [{
309
- readonly key: "AmberAcorn";
310
- readonly label: "Amber Acorn";
311
- }, {
312
- readonly key: "CeruleanBell";
313
- readonly label: "Cerulean Bell";
314
- }, {
315
- readonly key: "CrimsonHeart";
316
- readonly label: "Crimson Heart";
317
- }, {
318
- readonly key: "VerdantLeaf";
319
- readonly label: "Verdant Leaf";
320
- }, {
321
- readonly key: "VioletVessel";
322
- readonly label: "Violet Vessel";
323
- }, {
324
- readonly key: "TheArm";
325
- readonly label: "The Arm";
326
- }, {
327
- readonly key: "TheClub";
328
- readonly label: "The Club";
329
- }, {
330
- readonly key: "TheEye";
331
- readonly label: "The Eye";
332
- }, {
333
- readonly key: "TheFish";
334
- readonly label: "The Fish";
335
- }, {
336
- readonly key: "TheFlint";
337
- readonly label: "The Flint";
338
- }, {
339
- readonly key: "TheGoad";
340
- readonly label: "The Goad";
341
- }, {
342
- readonly key: "TheHead";
343
- readonly label: "The Head";
344
- }, {
345
- readonly key: "TheHook";
346
- readonly label: "The Hook";
347
- }, {
348
- readonly key: "TheHouse";
349
- readonly label: "The House";
350
- }, {
351
- readonly key: "TheManacle";
352
- readonly label: "The Manacle";
353
- }, {
354
- readonly key: "TheMark";
355
- readonly label: "The Mark";
356
- }, {
357
- readonly key: "TheMouth";
358
- readonly label: "The Mouth";
359
- }, {
360
- readonly key: "TheNeedle";
361
- readonly label: "The Needle";
362
- }, {
363
- readonly key: "TheOx";
364
- readonly label: "The Ox";
365
- }, {
366
- readonly key: "ThePillar";
367
- readonly label: "The Pillar";
368
- }, {
369
- readonly key: "ThePlant";
370
- readonly label: "The Plant";
371
- }, {
372
- readonly key: "ThePsychic";
373
- readonly label: "The Psychic";
374
- }, {
375
- readonly key: "TheSerpent";
376
- readonly label: "The Serpent";
377
- }, {
378
- readonly key: "TheTooth";
379
- readonly label: "The Tooth";
380
- }, {
381
- readonly key: "TheWall";
382
- readonly label: "The Wall";
383
- }, {
384
- readonly key: "TheWater";
385
- readonly label: "The Water";
386
- }, {
387
- readonly key: "TheWheel";
388
- readonly label: "The Wheel";
389
- }, {
390
- readonly key: "TheWindow";
391
- readonly label: "The Window";
392
- }];
393
- readonly vouchers: readonly [{
394
- readonly key: "Overstock";
395
- readonly label: "Overstock";
396
- }, {
397
- readonly key: "OverstockPlus";
398
- readonly label: "Overstock Plus";
399
- }, {
400
- readonly key: "ClearanceSale";
401
- readonly label: "Clearance Sale";
402
- }, {
403
- readonly key: "Liquidation";
404
- readonly label: "Liquidation";
405
- }, {
406
- readonly key: "Hone";
407
- readonly label: "Hone";
408
- }, {
409
- readonly key: "GlowUp";
410
- readonly label: "Glow Up";
411
- }, {
412
- readonly key: "RerollSurplus";
413
- readonly label: "Reroll Surplus";
414
- }, {
415
- readonly key: "RerollGlut";
416
- readonly label: "Reroll Glut";
417
- }, {
418
- readonly key: "CrystalBall";
419
- readonly label: "Crystal Ball";
420
- }, {
421
- readonly key: "OmenGlobe";
422
- readonly label: "Omen Globe";
423
- }, {
424
- readonly key: "Telescope";
425
- readonly label: "Telescope";
426
- }, {
427
- readonly key: "Observatory";
428
- readonly label: "Observatory";
429
- }, {
430
- readonly key: "Grabber";
431
- readonly label: "Grabber";
432
- }, {
433
- readonly key: "NachoTong";
434
- readonly label: "Nacho Tong";
435
- }, {
436
- readonly key: "Wasteful";
437
- readonly label: "Wasteful";
438
- }, {
439
- readonly key: "Recyclomancy";
440
- readonly label: "Recyclomancy";
441
- }, {
442
- readonly key: "TarotMerchant";
443
- readonly label: "Tarot Merchant";
444
- }, {
445
- readonly key: "TarotTycoon";
446
- readonly label: "Tarot Tycoon";
447
- }, {
448
- readonly key: "PlanetMerchant";
449
- readonly label: "Planet Merchant";
450
- }, {
451
- readonly key: "PlanetTycoon";
452
- readonly label: "Planet Tycoon";
453
- }, {
454
- readonly key: "SeedMoney";
455
- readonly label: "Seed Money";
456
- }, {
457
- readonly key: "MoneyTree";
458
- readonly label: "Money Tree";
459
- }, {
460
- readonly key: "Blank";
461
- readonly label: "Blank";
462
- }, {
463
- readonly key: "Antimatter";
464
- readonly label: "Antimatter";
465
- }, {
466
- readonly key: "MagicTrick";
467
- readonly label: "Magic Trick";
468
- }, {
469
- readonly key: "Illusion";
470
- readonly label: "Illusion";
471
- }, {
472
- readonly key: "Hieroglyph";
473
- readonly label: "Hieroglyph";
474
- }, {
475
- readonly key: "Petroglyph";
476
- readonly label: "Petroglyph";
477
- }, {
478
- readonly key: "DirectorsCut";
479
- readonly label: "Director's Cut";
480
- }, {
481
- readonly key: "Retcon";
482
- readonly label: "Retcon";
483
- }, {
484
- readonly key: "PaintBrush";
485
- readonly label: "Paint Brush";
486
- }, {
487
- readonly key: "Palette";
488
- readonly label: "Palette";
489
- }];
490
- readonly tags: readonly [{
491
- readonly key: "UncommonTag";
492
- readonly label: "Uncommon Tag";
493
- }, {
494
- readonly key: "RareTag";
495
- readonly label: "Rare Tag";
496
- }, {
497
- readonly key: "NegativeTag";
498
- readonly label: "Negative Tag";
499
- }, {
500
- readonly key: "FoilTag";
501
- readonly label: "Foil Tag";
502
- }, {
503
- readonly key: "HolographicTag";
504
- readonly label: "Holographic Tag";
505
- }, {
506
- readonly key: "PolychromeTag";
507
- readonly label: "Polychrome Tag";
508
- }, {
509
- readonly key: "InvestmentTag";
510
- readonly label: "Investment Tag";
511
- }, {
512
- readonly key: "VoucherTag";
513
- readonly label: "Voucher Tag";
514
- }, {
515
- readonly key: "BossTag";
516
- readonly label: "Boss Tag";
517
- }, {
518
- readonly key: "StandardTag";
519
- readonly label: "Standard Tag";
520
- }, {
521
- readonly key: "CharmTag";
522
- readonly label: "Charm Tag";
523
- }, {
524
- readonly key: "MeteorTag";
525
- readonly label: "Meteor Tag";
526
- }, {
527
- readonly key: "BuffoonTag";
528
- readonly label: "Buffoon Tag";
529
- }, {
530
- readonly key: "HandyTag";
531
- readonly label: "Handy Tag";
532
- }, {
533
- readonly key: "GarbageTag";
534
- readonly label: "Garbage Tag";
535
- }, {
536
- readonly key: "EtherealTag";
537
- readonly label: "Ethereal Tag";
538
- }, {
539
- readonly key: "CouponTag";
540
- readonly label: "Coupon Tag";
541
- }, {
542
- readonly key: "DoubleTag";
543
- readonly label: "Double Tag";
544
- }, {
545
- readonly key: "JuggleTag";
546
- readonly label: "Juggle Tag";
547
- }, {
548
- readonly key: "D6Tag";
549
- readonly label: "D6 Tag";
550
- }, {
551
- readonly key: "TopupTag";
552
- readonly label: "Top-up Tag";
553
- }, {
554
- readonly key: "SpeedTag";
555
- readonly label: "Speed Tag";
556
- }, {
557
- readonly key: "OrbitalTag";
558
- readonly label: "Orbital Tag";
559
- }, {
560
- readonly key: "EconomyTag";
561
- readonly label: "Economy Tag";
562
- }];
563
- readonly boosterPacks: readonly [{
564
- readonly key: "Arcana";
565
- readonly label: "Arcana Pack";
566
- }, {
567
- readonly key: "JumboArcana";
568
- readonly label: "Jumbo Arcana Pack";
569
- }, {
570
- readonly key: "MegaArcana";
571
- readonly label: "Mega Arcana Pack";
572
- }, {
573
- readonly key: "Celestial";
574
- readonly label: "Celestial Pack";
575
- }, {
576
- readonly key: "JumboCelestial";
577
- readonly label: "Jumbo Celestial Pack";
578
- }, {
579
- readonly key: "MegaCelestial";
580
- readonly label: "Mega Celestial Pack";
581
- }, {
582
- readonly key: "Standard";
583
- readonly label: "Standard Pack";
584
- }, {
585
- readonly key: "JumboStandard";
586
- readonly label: "Jumbo Standard Pack";
587
- }, {
588
- readonly key: "MegaStandard";
589
- readonly label: "Mega Standard Pack";
590
- }, {
591
- readonly key: "Buffoon";
592
- readonly label: "Buffoon Pack";
593
- }, {
594
- readonly key: "JumboBuffoon";
595
- readonly label: "Jumbo Buffoon Pack";
596
- }, {
597
- readonly key: "MegaBuffoon";
598
- readonly label: "Mega Buffoon Pack";
599
- }, {
600
- readonly key: "Spectral";
601
- readonly label: "Spectral Pack";
602
- }, {
603
- readonly key: "JumboSpectral";
604
- readonly label: "Jumbo Spectral Pack";
605
- }, {
606
- readonly key: "MegaSpectral";
607
- readonly label: "Mega Spectral Pack";
608
- }];
609
- };
610
- export type MotelyDisplaySchema = typeof MOTELY_DISPLAY_SCHEMA;
611
- export type MotelyBossKey = EntryKey<typeof BOSS_ENTRIES>;
612
- export type MotelyVoucherKey = EntryKey<typeof VOUCHER_ENTRIES>;
613
- export type MotelyTagKey = EntryKey<typeof TAG_ENTRIES>;
614
- export type MotelyBoosterPackKey = EntryKey<typeof BOOSTER_PACK_ENTRIES>;
1
+ export declare function motelyBossDisplayName(value: number): string;
615
2
  export declare function motelyBossDisplayNameFromKey(key: string): string;
3
+ export declare function motelyVoucherDisplayName(value: number): string;
616
4
  export declare function motelyVoucherDisplayNameFromKey(key: string): string;
5
+ export declare function motelyTagDisplayName(value: number): string;
617
6
  export declare function motelyTagDisplayNameFromKey(key: string): string;
7
+ export declare function motelyBoosterPackDisplayName(value: number): string;
618
8
  export declare function motelyBoosterPackDisplayNameFromKey(key: string): string;
619
9
  export declare function motelyItemDisplayNameFromKey(key: string): string;
620
- export declare function motelyBossDisplayName(value: number): string;
621
- export declare function motelyVoucherDisplayName(value: number): string;
622
- export declare function motelyTagDisplayName(value: number): string;
623
- export declare function motelyBoosterPackDisplayName(value: number): string;
624
10
  export declare function motelyItemDisplayNameFromValue(value: number): string;
625
- export declare function motelyBossKeyFromDisplayName(label: string): MotelyBossKey | null;
626
- export declare function motelyVoucherKeyFromDisplayName(label: string): MotelyVoucherKey | null;
627
- export declare function motelyTagKeyFromDisplayName(label: string): MotelyTagKey | null;
628
- export declare function motelyBoosterPackKeyFromDisplayName(label: string): MotelyBoosterPackKey | null;
629
- export {};