ps99-api 1.0.0 → 1.0.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 (45) hide show
  1. package/.github/workflows/release-on-main.yml +19 -7
  2. package/dist/common.d.ts +2 -0
  3. package/dist/common.js +1 -0
  4. package/dist/common.js.map +1 -0
  5. package/dist/index.d.ts +11 -0
  6. package/dist/index.js +11 -0
  7. package/dist/index.js.map +1 -0
  8. package/dist/params/clans.d.ts +8 -0
  9. package/dist/params/clans.js +1 -0
  10. package/dist/params/clans.js.map +1 -0
  11. package/dist/ps99-api.d.ts +27 -0
  12. package/dist/ps99-api.js +1 -0
  13. package/dist/ps99-api.js.map +1 -0
  14. package/dist/request-client/axios.d.ts +3 -0
  15. package/dist/request-client/axios.js +1 -0
  16. package/dist/request-client/axios.js.map +1 -0
  17. package/dist/request-client/common.d.ts +18 -0
  18. package/dist/request-client/common.js +1 -0
  19. package/dist/request-client/common.js.map +1 -0
  20. package/dist/responses/activeClanBattle.d.ts +32 -0
  21. package/dist/responses/activeClanBattle.js +1 -0
  22. package/dist/responses/activeClanBattle.js.map +1 -0
  23. package/dist/responses/clan.d.ts +90 -0
  24. package/dist/responses/clan.js +1 -0
  25. package/dist/responses/clan.js.map +1 -0
  26. package/dist/responses/clans.d.ts +21 -0
  27. package/dist/responses/clans.js +1 -0
  28. package/dist/responses/clans.js.map +1 -0
  29. package/dist/responses/collection.d.ts +1242 -0
  30. package/dist/responses/collection.js +1 -0
  31. package/dist/responses/collection.js.map +1 -0
  32. package/dist/responses/collections.d.ts +5 -0
  33. package/dist/responses/collections.js +1 -0
  34. package/dist/responses/collections.js.map +1 -0
  35. package/dist/responses/exists.d.ts +32 -0
  36. package/dist/responses/exists.js +1 -0
  37. package/dist/responses/exists.js.map +1 -0
  38. package/dist/responses/rap.d.ts +39 -0
  39. package/dist/responses/rap.js +1 -0
  40. package/dist/responses/rap.js.map +1 -0
  41. package/package.json +3 -3
  42. package/src/index.ts +10 -0
  43. package/tsconfig.json +5 -2
  44. package/dist/__tests__/ps99-api.js +0 -150
  45. package/tsconfig.build.json +0 -10
@@ -0,0 +1,1242 @@
1
+ export type CollectionResponseBody = {
2
+ status: string;
3
+ data: ({
4
+ configName: string;
5
+ category: string;
6
+ configData: {
7
+ goldenThumbnail: string;
8
+ indexObtainable: boolean;
9
+ huge: boolean;
10
+ name: string;
11
+ indexDesc: string;
12
+ thumbnail: string;
13
+ };
14
+ collection: string;
15
+ } | {
16
+ configName: string;
17
+ category: string;
18
+ configData: {
19
+ goldenThumbnail: string;
20
+ indexObtainable: boolean;
21
+ huge: boolean;
22
+ name: string;
23
+ fly: boolean;
24
+ indexDesc: string;
25
+ thumbnail: string;
26
+ };
27
+ collection: string;
28
+ } | {
29
+ configName: string;
30
+ category: string;
31
+ configData: {
32
+ goldenThumbnail: string;
33
+ animations: {
34
+ flyHeight: number;
35
+ angelusSpin: boolean;
36
+ };
37
+ indexObtainable: boolean;
38
+ huge: boolean;
39
+ name: string;
40
+ fly: boolean;
41
+ indexDesc: string;
42
+ thumbnail: string;
43
+ };
44
+ collection: string;
45
+ } | {
46
+ configName: string;
47
+ category: string;
48
+ configData: {
49
+ goldenThumbnail: string;
50
+ animations: {
51
+ flipbookAnimationGold: string[];
52
+ flipbookAnimationSpeed: number;
53
+ flipbookAnimation: string[];
54
+ };
55
+ indexObtainable: boolean;
56
+ huge: boolean;
57
+ name: string;
58
+ indexDesc: string;
59
+ thumbnail: string;
60
+ };
61
+ collection: string;
62
+ } | {
63
+ configName: string;
64
+ category: string;
65
+ configData: {
66
+ goldenThumbnail: string;
67
+ animations: {
68
+ ballBounceHeight: number;
69
+ };
70
+ indexObtainable: boolean;
71
+ huge: boolean;
72
+ name: string;
73
+ indexDesc: string;
74
+ thumbnail: string;
75
+ };
76
+ collection: string;
77
+ } | {
78
+ configName: string;
79
+ category: string;
80
+ configData: {
81
+ goldenThumbnail: string;
82
+ indexObtainable: boolean;
83
+ huge: boolean;
84
+ name: string;
85
+ indexDesc: string;
86
+ hideSerial: boolean;
87
+ thumbnail: string;
88
+ };
89
+ collection: string;
90
+ } | {
91
+ configName: string;
92
+ category: string;
93
+ configData: {
94
+ goldenThumbnail: string;
95
+ animations: {
96
+ hybridFly: boolean;
97
+ };
98
+ indexObtainable: boolean;
99
+ huge: boolean;
100
+ name: string;
101
+ indexDesc: string;
102
+ thumbnail: string;
103
+ };
104
+ collection: string;
105
+ } | {
106
+ configName: string;
107
+ category: string;
108
+ configData: {
109
+ goldenThumbnail: string;
110
+ animations: {
111
+ balloon: boolean;
112
+ };
113
+ indexObtainable: boolean;
114
+ huge: boolean;
115
+ name: string;
116
+ fly: boolean;
117
+ indexDesc: string;
118
+ thumbnail: string;
119
+ };
120
+ collection: string;
121
+ } | {
122
+ configName: string;
123
+ category: string;
124
+ configData: {
125
+ goldenThumbnail: string;
126
+ tradable: boolean;
127
+ animations: {
128
+ balloon: boolean;
129
+ };
130
+ indexObtainable: boolean;
131
+ hideExists: boolean;
132
+ huge: boolean;
133
+ name: string;
134
+ fly: boolean;
135
+ indexDesc: string;
136
+ ugc: boolean;
137
+ thumbnail: string;
138
+ };
139
+ collection: string;
140
+ } | {
141
+ configName: string;
142
+ category: string;
143
+ configData: {
144
+ goldenThumbnail: string;
145
+ indexObtainable: boolean;
146
+ huge: boolean;
147
+ name: string;
148
+ hideSerial: boolean;
149
+ fly: boolean;
150
+ indexDesc: string;
151
+ thumbnail: string;
152
+ };
153
+ collection: string;
154
+ } | {
155
+ configName: string;
156
+ category: string;
157
+ configData: {
158
+ goldenThumbnail: string;
159
+ animations: {
160
+ flyHeightChange: number;
161
+ };
162
+ indexObtainable: boolean;
163
+ huge: boolean;
164
+ name: string;
165
+ fly: boolean;
166
+ indexDesc: string;
167
+ thumbnail: string;
168
+ };
169
+ collection: string;
170
+ } | {
171
+ configName: string;
172
+ category: string;
173
+ configData: {
174
+ goldenThumbnail: string;
175
+ animations: {
176
+ flyHeightChange: number;
177
+ swerve: boolean;
178
+ swerveMaxAngle: number;
179
+ flyHeight: number;
180
+ swerveAggression: number;
181
+ };
182
+ indexObtainable: boolean;
183
+ huge: boolean;
184
+ name: string;
185
+ fly: boolean;
186
+ indexDesc: string;
187
+ thumbnail: string;
188
+ };
189
+ collection: string;
190
+ } | {
191
+ configName: string;
192
+ category: string;
193
+ configData: {
194
+ goldenThumbnail: string;
195
+ indexObtainable: boolean;
196
+ huge: boolean;
197
+ name: string;
198
+ indexDesc: string;
199
+ evolved: boolean;
200
+ thumbnail: string;
201
+ };
202
+ collection: string;
203
+ } | {
204
+ configName: string;
205
+ category: string;
206
+ configData: {
207
+ goldenThumbnail: string;
208
+ indexObtainable: boolean;
209
+ huge: boolean;
210
+ name: string;
211
+ evolved: boolean;
212
+ fly: boolean;
213
+ indexDesc: string;
214
+ thumbnail: string;
215
+ };
216
+ collection: string;
217
+ } | {
218
+ configName: string;
219
+ category: string;
220
+ configData: {
221
+ goldenThumbnail: string;
222
+ animations: {
223
+ replacementPool: number[][];
224
+ jelly: boolean;
225
+ replacements: {
226
+ dst: {};
227
+ isUnique: boolean;
228
+ title: string;
229
+ desc: string;
230
+ }[];
231
+ };
232
+ indexObtainable: boolean;
233
+ huge: boolean;
234
+ name: string;
235
+ indexDesc: string;
236
+ thumbnail: string;
237
+ };
238
+ collection: string;
239
+ } | {
240
+ configName: string;
241
+ category: string;
242
+ configData: {
243
+ goldenThumbnail: string;
244
+ animations: {
245
+ colorVariants: {
246
+ Chance: number;
247
+ Magnitude: number;
248
+ Title: string;
249
+ Color: {};
250
+ Id: number;
251
+ Name: string;
252
+ IsUnique: boolean;
253
+ Desc: string;
254
+ }[];
255
+ };
256
+ huge: boolean;
257
+ name: string;
258
+ fly: boolean;
259
+ preventGolden: boolean;
260
+ thumbnail: string;
261
+ };
262
+ collection: string;
263
+ } | {
264
+ configName: string;
265
+ category: string;
266
+ configData: {
267
+ goldenThumbnail: string;
268
+ preventGolden: boolean;
269
+ huge: boolean;
270
+ name: string;
271
+ animations: {
272
+ colorVariants: {
273
+ Chance: number;
274
+ Magnitude: number;
275
+ Title: string;
276
+ Color: {};
277
+ Id: number;
278
+ Name: string;
279
+ IsUnique: boolean;
280
+ Desc: string;
281
+ }[];
282
+ };
283
+ thumbnail: string;
284
+ };
285
+ collection: string;
286
+ } | {
287
+ configName: string;
288
+ category: string;
289
+ configData: {
290
+ goldenThumbnail: string;
291
+ animations: {
292
+ balloon: boolean;
293
+ };
294
+ indexObtainable: boolean;
295
+ huge: boolean;
296
+ name: string;
297
+ preventGolden: boolean;
298
+ fly: boolean;
299
+ indexDesc: string;
300
+ thumbnail: string;
301
+ };
302
+ collection: string;
303
+ } | {
304
+ configName: string;
305
+ category: string;
306
+ configData: {
307
+ goldenThumbnail: string;
308
+ preventGolden: boolean;
309
+ indexObtainable: boolean;
310
+ huge: boolean;
311
+ name: string;
312
+ indexDesc: string;
313
+ thumbnail: string;
314
+ };
315
+ collection: string;
316
+ } | {
317
+ configName: string;
318
+ category: string;
319
+ configData: {
320
+ goldenThumbnail: string;
321
+ animations: {
322
+ swerveAggression: number;
323
+ swerve: boolean;
324
+ swerveMaxAngle: number;
325
+ };
326
+ indexObtainable: boolean;
327
+ huge: boolean;
328
+ name: string;
329
+ fly: boolean;
330
+ indexDesc: string;
331
+ thumbnail: string;
332
+ };
333
+ collection: string;
334
+ } | {
335
+ configName: string;
336
+ category: string;
337
+ configData: {
338
+ goldenThumbnail: string;
339
+ animations: {
340
+ flyHeight: number;
341
+ flyHeightChange: number;
342
+ };
343
+ indexObtainable: boolean;
344
+ huge: boolean;
345
+ name: string;
346
+ fly: boolean;
347
+ indexDesc: string;
348
+ thumbnail: string;
349
+ };
350
+ collection: string;
351
+ } | {
352
+ configName: string;
353
+ category: string;
354
+ configData: {
355
+ goldenThumbnail: string;
356
+ animations: {
357
+ angelusSpin: boolean;
358
+ };
359
+ indexObtainable: boolean;
360
+ huge: boolean;
361
+ name: string;
362
+ fly: boolean;
363
+ indexDesc: string;
364
+ thumbnail: string;
365
+ };
366
+ collection: string;
367
+ } | {
368
+ configName: string;
369
+ category: string;
370
+ configData: {
371
+ goldenThumbnail: string;
372
+ animations: {
373
+ fadeFrames: {
374
+ instant: boolean;
375
+ duration: number;
376
+ iconThumbnail: string;
377
+ textureName: string;
378
+ }[];
379
+ idleActionAnimations: (string | number)[][];
380
+ customAnimations: boolean;
381
+ };
382
+ indexObtainable: boolean;
383
+ huge: boolean;
384
+ name: string;
385
+ indexDesc: string;
386
+ thumbnail: string;
387
+ };
388
+ collection: string;
389
+ } | {
390
+ configName: string;
391
+ category: string;
392
+ configData: {
393
+ titanic: boolean;
394
+ goldenThumbnail: string;
395
+ indexObtainable: boolean;
396
+ name: string;
397
+ fly: boolean;
398
+ indexDesc: string;
399
+ thumbnail: string;
400
+ };
401
+ collection: string;
402
+ } | {
403
+ configName: string;
404
+ category: string;
405
+ configData: {
406
+ titanic: boolean;
407
+ goldenThumbnail: string;
408
+ animations: {
409
+ balloon: boolean;
410
+ ridingGravity: number;
411
+ ridingCameraOffset: {};
412
+ ridingJumpPower: number;
413
+ };
414
+ indexObtainable: boolean;
415
+ name: string;
416
+ fly: boolean;
417
+ indexDesc: string;
418
+ thumbnail: string;
419
+ };
420
+ collection: string;
421
+ } | {
422
+ configName: string;
423
+ category: string;
424
+ configData: {
425
+ titanic: boolean;
426
+ goldenThumbnail: string;
427
+ indexObtainable: boolean;
428
+ name: string;
429
+ indexDesc: string;
430
+ thumbnail: string;
431
+ };
432
+ collection: string;
433
+ } | {
434
+ configName: string;
435
+ category: string;
436
+ configData: {
437
+ titanic: boolean;
438
+ goldenThumbnail: string;
439
+ animations: {
440
+ ridingGravity: number;
441
+ ridingCameraOffset: {};
442
+ swerveMaxAngle: number;
443
+ flyHeight: number;
444
+ spin: boolean;
445
+ swerve: boolean;
446
+ };
447
+ indexObtainable: boolean;
448
+ name: string;
449
+ fly: boolean;
450
+ indexDesc: string;
451
+ thumbnail: string;
452
+ };
453
+ collection: string;
454
+ } | {
455
+ configName: string;
456
+ category: string;
457
+ configData: {
458
+ titanic: boolean;
459
+ goldenThumbnail: string;
460
+ tradable: boolean;
461
+ hideExists: boolean;
462
+ indexObtainable: boolean;
463
+ name: string;
464
+ indexDesc: string;
465
+ ugc: boolean;
466
+ thumbnail: string;
467
+ };
468
+ collection: string;
469
+ } | {
470
+ configName: string;
471
+ category: string;
472
+ configData: {
473
+ titanic: boolean;
474
+ goldenThumbnail: string;
475
+ animations: {
476
+ flyHeight: number;
477
+ flyHeightChange: number;
478
+ ridingCameraOffset: {};
479
+ ridingTransparency: number;
480
+ };
481
+ indexObtainable: boolean;
482
+ name: string;
483
+ fly: boolean;
484
+ indexDesc: string;
485
+ thumbnail: string;
486
+ };
487
+ collection: string;
488
+ } | {
489
+ configName: string;
490
+ category: string;
491
+ configData: {
492
+ titanic: boolean;
493
+ goldenThumbnail: string;
494
+ animations: {
495
+ ridingCameraOffset: {};
496
+ boneFlyingAnimation: string;
497
+ };
498
+ indexObtainable: boolean;
499
+ flyingTitanic: boolean;
500
+ name: string;
501
+ fly: boolean;
502
+ indexDesc: string;
503
+ thumbnail: string;
504
+ };
505
+ collection: string;
506
+ } | {
507
+ configName: string;
508
+ category: string;
509
+ configData: {
510
+ titanic: boolean;
511
+ goldenThumbnail: string;
512
+ animations: {
513
+ balloon: boolean;
514
+ balloonSpeed: number;
515
+ balloonScale: {};
516
+ };
517
+ indexObtainable: boolean;
518
+ name: string;
519
+ indexDesc: string;
520
+ thumbnail: string;
521
+ };
522
+ collection: string;
523
+ } | {
524
+ configName: string;
525
+ category: string;
526
+ configData: {
527
+ titanic: boolean;
528
+ goldenThumbnail: string;
529
+ animations: {
530
+ ridingCameraOffset: {};
531
+ };
532
+ indexObtainable: boolean;
533
+ name: string;
534
+ fly: boolean;
535
+ indexDesc: string;
536
+ thumbnail: string;
537
+ };
538
+ collection: string;
539
+ } | {
540
+ configName: string;
541
+ category: string;
542
+ configData: {
543
+ titanic: boolean;
544
+ goldenThumbnail: string;
545
+ animations: {
546
+ replacementPool: number[][];
547
+ jelly: boolean;
548
+ replacements: {
549
+ dst: {};
550
+ isUnique: boolean;
551
+ title: string;
552
+ desc: string;
553
+ }[];
554
+ };
555
+ indexObtainable: boolean;
556
+ name: string;
557
+ indexDesc: string;
558
+ thumbnail: string;
559
+ };
560
+ collection: string;
561
+ } | {
562
+ configName: string;
563
+ category: string;
564
+ configData: {
565
+ titanic: boolean;
566
+ goldenThumbnail: string;
567
+ animations: {
568
+ fadeFrames: {
569
+ instant: boolean;
570
+ duration: number;
571
+ iconThumbnail: string;
572
+ textureName: string;
573
+ }[];
574
+ idleActionAnimations: (string | number)[][];
575
+ customAnimations: boolean;
576
+ };
577
+ indexObtainable: boolean;
578
+ name: string;
579
+ indexDesc: string;
580
+ thumbnail: string;
581
+ };
582
+ collection: string;
583
+ } | {
584
+ configName: string;
585
+ category: string;
586
+ configData: {
587
+ goldenThumbnail: string;
588
+ fromWorldNumber: number;
589
+ fromZoneNumber: number;
590
+ cachedPower: number[];
591
+ name: string;
592
+ fly: boolean;
593
+ thumbnail: string;
594
+ fromEgg: string;
595
+ };
596
+ collection: string;
597
+ } | {
598
+ configName: string;
599
+ category: string;
600
+ configData: {
601
+ goldenThumbnail: string;
602
+ fromWorldNumber: number;
603
+ fromZoneNumber: number;
604
+ cachedPower: number[];
605
+ name: string;
606
+ thumbnail: string;
607
+ fromEgg: string;
608
+ };
609
+ collection: string;
610
+ } | {
611
+ configName: string;
612
+ category: string;
613
+ configData: {
614
+ goldenThumbnail: string;
615
+ name: string;
616
+ exclusiveLevel: number;
617
+ thumbnail: string;
618
+ };
619
+ collection: string;
620
+ } | {
621
+ configName: string;
622
+ category: string;
623
+ configData: {
624
+ exclusiveLevel: number;
625
+ goldenThumbnail: string;
626
+ name: string;
627
+ fly: boolean;
628
+ thumbnail: string;
629
+ };
630
+ collection: string;
631
+ } | {
632
+ configName: string;
633
+ category: string;
634
+ configData: {
635
+ goldenThumbnail: string;
636
+ fromWorldNumber: number;
637
+ fromZoneNumber: number;
638
+ cachedPower: number[];
639
+ name: string;
640
+ power: number;
641
+ thumbnail: string;
642
+ fromEgg: string;
643
+ };
644
+ collection: string;
645
+ } | {
646
+ configName: string;
647
+ category: string;
648
+ configData: {
649
+ goldenThumbnail: string;
650
+ animations: {
651
+ angelusSpin: boolean;
652
+ };
653
+ fromWorldNumber: number;
654
+ fromZoneNumber: number;
655
+ cachedPower: number[];
656
+ name: string;
657
+ fly: boolean;
658
+ thumbnail: string;
659
+ fromEgg: string;
660
+ };
661
+ collection: string;
662
+ } | {
663
+ configName: string;
664
+ category: string;
665
+ configData: {
666
+ goldenThumbnail: string;
667
+ fromWorldNumber: number;
668
+ fromZoneNumber: number;
669
+ name: string;
670
+ cachedPower: number[];
671
+ overrideZoneNumber: number;
672
+ thumbnail: string;
673
+ fromEgg: string;
674
+ };
675
+ collection: string;
676
+ } | {
677
+ configName: string;
678
+ category: string;
679
+ configData: {
680
+ goldenThumbnail: string;
681
+ power: number;
682
+ fromWorldNumber: number;
683
+ fromZoneNumber: number;
684
+ cachedPower: number[];
685
+ name: string;
686
+ thumbnail: string;
687
+ fly: boolean;
688
+ fromEgg: string;
689
+ };
690
+ collection: string;
691
+ } | {
692
+ configName: string;
693
+ category: string;
694
+ configData: {
695
+ exclusiveLevel: number;
696
+ goldenThumbnail: string;
697
+ animations: {
698
+ angelusSpin: boolean;
699
+ };
700
+ name: string;
701
+ fly: boolean;
702
+ thumbnail: string;
703
+ };
704
+ collection: string;
705
+ } | {
706
+ configName: string;
707
+ category: string;
708
+ configData: {
709
+ exclusiveLevel: number;
710
+ goldenThumbnail: string;
711
+ name: string;
712
+ hideSerial: boolean;
713
+ thumbnail: string;
714
+ };
715
+ collection: string;
716
+ } | {
717
+ configName: string;
718
+ category: string;
719
+ configData: {
720
+ goldenThumbnail: string;
721
+ fromWorldNumber: number;
722
+ hidden: boolean;
723
+ cachedPower: number[];
724
+ name: string;
725
+ thumbnail: string;
726
+ };
727
+ collection: string;
728
+ } | {
729
+ configName: string;
730
+ category: string;
731
+ configData: {
732
+ goldenThumbnail: string;
733
+ fromWorldNumber: number;
734
+ hidden: boolean;
735
+ cachedPower: number[];
736
+ name: string;
737
+ fly: boolean;
738
+ thumbnail: string;
739
+ };
740
+ collection: string;
741
+ } | {
742
+ configName: string;
743
+ category: string;
744
+ configData: {
745
+ goldenThumbnail: string;
746
+ fromWorldNumber: number;
747
+ hidden: boolean;
748
+ cachedPower: number[];
749
+ name: string;
750
+ fromZoneNumber: number;
751
+ thumbnail: string;
752
+ };
753
+ collection: string;
754
+ } | {
755
+ configName: string;
756
+ category: string;
757
+ configData: {
758
+ goldenThumbnail: string;
759
+ fromWorldNumber: number;
760
+ hidden: boolean;
761
+ name: string;
762
+ thumbnail: string;
763
+ };
764
+ collection: string;
765
+ } | {
766
+ configName: string;
767
+ category: string;
768
+ configData: {
769
+ goldenThumbnail: string;
770
+ fromWorldNumber: number;
771
+ hidden: boolean;
772
+ name: string;
773
+ fly: boolean;
774
+ thumbnail: string;
775
+ };
776
+ collection: string;
777
+ } | {
778
+ configName: string;
779
+ category: string;
780
+ configData: {
781
+ exclusiveLevel: number;
782
+ goldenThumbnail: string;
783
+ name: string;
784
+ hideSerial: boolean;
785
+ fly: boolean;
786
+ thumbnail: string;
787
+ };
788
+ collection: string;
789
+ } | {
790
+ configName: string;
791
+ category: string;
792
+ configData: {
793
+ exclusiveLevel: number;
794
+ goldenThumbnail: string;
795
+ animations: {
796
+ hybridFly: boolean;
797
+ };
798
+ name: string;
799
+ thumbnail: string;
800
+ };
801
+ collection: string;
802
+ } | {
803
+ configName: string;
804
+ category: string;
805
+ configData: {
806
+ goldenThumbnail: string;
807
+ animations: {
808
+ hybridFly: boolean;
809
+ };
810
+ name: string;
811
+ exclusiveLevel: number;
812
+ thumbnail: string;
813
+ };
814
+ collection: string;
815
+ } | {
816
+ configName: string;
817
+ category: string;
818
+ configData: {
819
+ goldenThumbnail: string;
820
+ fromWorldNumber: number;
821
+ fromZoneNumber: number;
822
+ cachedPower: number[];
823
+ name: string;
824
+ hidden: boolean;
825
+ thumbnail: string;
826
+ };
827
+ collection: string;
828
+ } | {
829
+ configName: string;
830
+ category: string;
831
+ configData: {
832
+ goldenThumbnail: string;
833
+ fromWorldNumber: number;
834
+ hidden: boolean;
835
+ fromZoneNumber: number;
836
+ cachedPower: number[];
837
+ name: string;
838
+ fly: boolean;
839
+ thumbnail: string;
840
+ };
841
+ collection: string;
842
+ } | {
843
+ configName: string;
844
+ category: string;
845
+ configData: {
846
+ exclusiveLevel: number;
847
+ goldenThumbnail: string;
848
+ animations: {
849
+ balloon: boolean;
850
+ };
851
+ name: string;
852
+ fly: boolean;
853
+ thumbnail: string;
854
+ };
855
+ collection: string;
856
+ } | {
857
+ configName: string;
858
+ category: string;
859
+ configData: {
860
+ goldenThumbnail: string;
861
+ name: string;
862
+ exclusiveLevel: number;
863
+ fly: boolean;
864
+ thumbnail: string;
865
+ };
866
+ collection: string;
867
+ } | {
868
+ configName: string;
869
+ category: string;
870
+ configData: {
871
+ goldenThumbnail: string;
872
+ animations: {
873
+ flyHeightChange: number;
874
+ };
875
+ name: string;
876
+ exclusiveLevel: number;
877
+ fly: boolean;
878
+ thumbnail: string;
879
+ };
880
+ collection: string;
881
+ } | {
882
+ configName: string;
883
+ category: string;
884
+ configData: {
885
+ goldenThumbnail: string;
886
+ animations: {
887
+ jelly: boolean;
888
+ };
889
+ name: string;
890
+ exclusiveLevel: number;
891
+ thumbnail: string;
892
+ };
893
+ collection: string;
894
+ } | {
895
+ configName: string;
896
+ category: string;
897
+ configData: {
898
+ goldenThumbnail: string;
899
+ animations: {
900
+ ballBounceHeight: number;
901
+ };
902
+ fromWorldNumber: number;
903
+ fromZoneNumber: number;
904
+ cachedPower: number[];
905
+ name: string;
906
+ thumbnail: string;
907
+ fromEgg: string;
908
+ };
909
+ collection: string;
910
+ } | {
911
+ configName: string;
912
+ category: string;
913
+ configData: {
914
+ goldenThumbnail: string;
915
+ animations: {
916
+ christmasLights: boolean;
917
+ };
918
+ fromWorldNumber: number;
919
+ hidden: boolean;
920
+ cachedPower: number[];
921
+ name: string;
922
+ thumbnail: string;
923
+ };
924
+ collection: string;
925
+ } | {
926
+ configName: string;
927
+ category: string;
928
+ configData: {
929
+ name: string;
930
+ goldenThumbnail: string;
931
+ animations: {
932
+ flyHeight: number;
933
+ flyHeightChange: number;
934
+ flySpeed: number;
935
+ };
936
+ fromWorldNumber: number;
937
+ fromZoneNumber: number;
938
+ thumbnail: string;
939
+ cachedPower: number[];
940
+ fly: boolean;
941
+ fromEgg: string;
942
+ };
943
+ collection: string;
944
+ } | {
945
+ configName: string;
946
+ category: string;
947
+ configData: {
948
+ exclusiveLevel: number;
949
+ goldenThumbnail: string;
950
+ animations: {
951
+ flipbookAnimationGold: string[];
952
+ flipbookAnimationSpeed: number;
953
+ flipbookAnimation: string[];
954
+ };
955
+ name: string;
956
+ thumbnail: string;
957
+ };
958
+ collection: string;
959
+ } | {
960
+ configName: string;
961
+ category: string;
962
+ configData: {
963
+ goldenThumbnail: string;
964
+ animations: {
965
+ flyHeightChange: number;
966
+ swerve: boolean;
967
+ swerveMaxAngle: number;
968
+ flyHeight: number;
969
+ swerveAggression: number;
970
+ };
971
+ name: string;
972
+ exclusiveLevel: number;
973
+ fly: boolean;
974
+ thumbnail: string;
975
+ };
976
+ collection: string;
977
+ } | {
978
+ configName: string;
979
+ category: string;
980
+ configData: {
981
+ goldenThumbnail: string;
982
+ animations: {
983
+ balloon: boolean;
984
+ };
985
+ fromWorldNumber: number;
986
+ fromZoneNumber: number;
987
+ cachedPower: number[];
988
+ name: string;
989
+ thumbnail: string;
990
+ fromEgg: string;
991
+ };
992
+ collection: string;
993
+ } | {
994
+ configName: string;
995
+ category: string;
996
+ configData: {
997
+ exclusiveLevel: number;
998
+ goldenThumbnail: string;
999
+ name: string;
1000
+ thumbnail: string;
1001
+ };
1002
+ collection: string;
1003
+ } | {
1004
+ configName: string;
1005
+ category: string;
1006
+ configData: {
1007
+ goldenThumbnail: string;
1008
+ indexObtainable: boolean;
1009
+ name: string;
1010
+ exclusiveLevel: number;
1011
+ indexDesc: string;
1012
+ thumbnail: string;
1013
+ };
1014
+ collection: string;
1015
+ } | {
1016
+ configName: string;
1017
+ category: string;
1018
+ configData: {
1019
+ exclusiveLevel: number;
1020
+ goldenThumbnail: string;
1021
+ animations: {
1022
+ fadeFrames: {
1023
+ instant: boolean;
1024
+ duration: number;
1025
+ iconThumbnail: string;
1026
+ textureName: string;
1027
+ }[];
1028
+ idleActionAnimations: (string | number)[][];
1029
+ customAnimations: boolean;
1030
+ };
1031
+ name: string;
1032
+ thumbnail: string;
1033
+ };
1034
+ collection: string;
1035
+ } | {
1036
+ configName: string;
1037
+ category: string;
1038
+ configData: {
1039
+ titanic: boolean;
1040
+ name: string;
1041
+ goldenThumbnail: string;
1042
+ thumbnail: string;
1043
+ };
1044
+ collection: string;
1045
+ } | {
1046
+ configName: string;
1047
+ category: string;
1048
+ configData: {
1049
+ goldenThumbnail: string;
1050
+ animations: {
1051
+ vertexColorAnim: {
1052
+ Time: number;
1053
+ Value: {};
1054
+ }[];
1055
+ vertexColorAnimSpeed: number;
1056
+ };
1057
+ indexObtainable: boolean;
1058
+ huge: boolean;
1059
+ name: string;
1060
+ indexDesc: string;
1061
+ thumbnail: string;
1062
+ };
1063
+ collection: string;
1064
+ } | {
1065
+ configName: string;
1066
+ category: string;
1067
+ configData: {
1068
+ goldenThumbnail: string;
1069
+ animations: {
1070
+ replacementPool: number[][];
1071
+ jelly: boolean;
1072
+ replacements: {
1073
+ dst: {};
1074
+ isUnique: boolean;
1075
+ title: string;
1076
+ desc: string;
1077
+ }[];
1078
+ };
1079
+ indexObtainable: boolean;
1080
+ huge: boolean;
1081
+ name: string;
1082
+ indexDesc: string;
1083
+ hideExists: boolean;
1084
+ thumbnail: string;
1085
+ };
1086
+ collection: string;
1087
+ } | {
1088
+ configName: string;
1089
+ category: string;
1090
+ configData: {
1091
+ titanic: boolean;
1092
+ goldenThumbnail: string;
1093
+ animations: {
1094
+ replacementPool: number[][];
1095
+ jelly: boolean;
1096
+ replacements: {
1097
+ dst: {};
1098
+ isUnique: boolean;
1099
+ title: string;
1100
+ desc: string;
1101
+ }[];
1102
+ };
1103
+ indexObtainable: boolean;
1104
+ flyingTitanic: boolean;
1105
+ name: string;
1106
+ hideExists: boolean;
1107
+ fly: boolean;
1108
+ indexDesc: string;
1109
+ thumbnail: string;
1110
+ };
1111
+ collection: string;
1112
+ } | {
1113
+ configName: string;
1114
+ category: string;
1115
+ configData: {
1116
+ goldenThumbnail: string;
1117
+ name: string;
1118
+ thumbnail: string;
1119
+ };
1120
+ collection: string;
1121
+ } | {
1122
+ configName: string;
1123
+ category: string;
1124
+ configData: {
1125
+ goldenThumbnail: string;
1126
+ isFromLastZone: boolean;
1127
+ fromWorldNumber: number;
1128
+ fromZoneNumber: number;
1129
+ thumbnail: string;
1130
+ cachedPower: number[];
1131
+ name: string;
1132
+ fly: boolean;
1133
+ fromEgg: string;
1134
+ };
1135
+ collection: string;
1136
+ } | {
1137
+ configName: string;
1138
+ category: string;
1139
+ configData: {
1140
+ goldenThumbnail: string;
1141
+ animations: {
1142
+ jelly: boolean;
1143
+ };
1144
+ name: string;
1145
+ exclusiveLevel: number;
1146
+ hideExists: boolean;
1147
+ thumbnail: string;
1148
+ };
1149
+ collection: string;
1150
+ } | {
1151
+ configName: string;
1152
+ category: string;
1153
+ configData: {
1154
+ goldenThumbnail: string;
1155
+ animations: {
1156
+ jelly: boolean;
1157
+ };
1158
+ exclusiveLevel: number;
1159
+ name: string;
1160
+ hideExists: boolean;
1161
+ fly: boolean;
1162
+ thumbnail: string;
1163
+ };
1164
+ collection: string;
1165
+ } | {
1166
+ configName: string;
1167
+ category: string;
1168
+ configData: {
1169
+ goldenThumbnail: string;
1170
+ animations: {
1171
+ vertexColorAnim: {
1172
+ Time: number;
1173
+ Value: {};
1174
+ }[];
1175
+ vertexColorAnimSpeed: number;
1176
+ };
1177
+ fromWorldNumber: number;
1178
+ fromZoneNumber: number;
1179
+ cachedPower: number[];
1180
+ name: string;
1181
+ thumbnail: string;
1182
+ fromEgg: string;
1183
+ };
1184
+ collection: string;
1185
+ } | {
1186
+ configName: string;
1187
+ category: string;
1188
+ configData: {
1189
+ goldenThumbnail: string;
1190
+ fromWorldNumber: number;
1191
+ fromZoneNumber: number;
1192
+ cachedPower: number[];
1193
+ isFromLastZone: boolean;
1194
+ name: string;
1195
+ thumbnail: string;
1196
+ fromEgg: string;
1197
+ };
1198
+ collection: string;
1199
+ } | {
1200
+ configName: string;
1201
+ category: string;
1202
+ configData: {
1203
+ goldenThumbnail: string;
1204
+ animations: {
1205
+ vertexColorAnim: {
1206
+ Time: number;
1207
+ Value: {};
1208
+ }[];
1209
+ vertexColorAnimSpeed: number;
1210
+ };
1211
+ fromWorldNumber: number;
1212
+ fromZoneNumber: number;
1213
+ cachedPower: number[];
1214
+ name: string;
1215
+ fly: boolean;
1216
+ thumbnail: string;
1217
+ fromEgg: string;
1218
+ };
1219
+ collection: string;
1220
+ } | {
1221
+ configName: string;
1222
+ category: string;
1223
+ configData: {
1224
+ goldenThumbnail: string;
1225
+ animations: {
1226
+ balloon: boolean;
1227
+ vertexColorAnimSpeed: number;
1228
+ vertexColorAnim: {
1229
+ Time: number;
1230
+ Value: {};
1231
+ }[];
1232
+ };
1233
+ fromWorldNumber: number;
1234
+ fromZoneNumber: number;
1235
+ cachedPower: number[];
1236
+ name: string;
1237
+ thumbnail: string;
1238
+ fromEgg: string;
1239
+ };
1240
+ collection: string;
1241
+ })[];
1242
+ };