ps99-api 1.0.0

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