-
-
Notifications
You must be signed in to change notification settings - Fork 61
/
dbs.py
900 lines (893 loc) · 28.1 KB
/
dbs.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
# eli fessler
# clovervidia
# Weapons database
# https://stat.ink/api-info/weapon2?_lang_=en-US
# https://stat.ink/api/v2/weapon
weapons = {
0: 'bold', # Sploosh-o-matic
1: 'bold_neo', # Neo Sploosh-o-matic
2: 'bold_7', # Sploosh-o-matic 7
10: 'wakaba', # Splattershot Jr.
11: 'momiji', # Custom Splattershot Jr.
12: 'ochiba', # Kensa Splattershot Jr.
20: 'sharp', # Splash-o-matic
21: 'sharp_neo', # Neo Splash-o-matic
30: 'promodeler_mg', # Aerospray MG
31: 'promodeler_rg', # Aerospray RG
32: 'promodeler_pg', # Aerospray PG
40: 'sshooter', # Splattershot
41: 'sshooter_collabo', # Tentatek Splattershot
42: 'sshooter_becchu', # Kensa Splattershot
45: 'heroshooter_replica', # Hero Shot Replica
46: 'octoshooter_replica', # Octo Shot Replica
50: '52gal', # .52 Gal
51: '52gal_deco', # .52 Gal Deco
52: '52gal_becchu', # Kensa .52 Gal
60: 'nzap85', # N-ZAP '85
61: 'nzap89', # N-ZAP '89
62: 'nzap83', # N-ZAP '83
70: 'prime', # Splattershot Pro
71: 'prime_collabo', # Forge Splattershot Pro
72: 'prime_becchu', # Kensa Splattershot Pro
80: '96gal', # .96 Gal
81: '96gal_deco', # .96 Gal Deco
90: 'jetsweeper', # Jet Squelcher
91: 'jetsweeper_custom', # Custom Jet Squelcher
200: 'nova', # Luna Blaster
201: 'nova_neo', # Luna Blaster Neo
202: 'nova_becchu', # Kensa Luna Blaster
210: 'hotblaster', # Blaster
211: 'hotblaster_custom', # Custom Blaster
215: 'heroblaster_replica', # Hero Blaster Replica
220: 'longblaster', # Range Blaster
221: 'longblaster_custom', # Custom Range Blaster
222: 'longblaster_necro', # Grim Range Blaster
230: 'clashblaster', # Clash Blaster
231: 'clashblaster_neo', # Clash Blaster Neo
240: 'rapid', # Rapid Blaster
241: 'rapid_deco', # Rapid Blaster Deco
242: 'rapid_becchu', # Kensa Rapid Blaster
250: 'rapid_elite', # Rapid Blaster Pro
251: 'rapid_elite_deco', # Rapid Blaster Pro Deco
300: 'l3reelgun', # L-3 Nozzlenose
301: 'l3reelgun_d', # L-3 Nozzlenose D
302: 'l3reelgun_becchu', # Kensa L-3 Nozzlenose
310: 'h3reelgun', # H-3 Nozzlenose
311: 'h3reelgun_d', # H-3 Nozzlenose D
312: 'h3reelgun_cherry', # Cherry H-3 Nozzlenose
400: 'bottlegeyser', # Squeezer
401: 'bottlegeyser_foil', # Foil Squeezer
1000: 'carbon', # Carbon Roller
1001: 'carbon_deco', # Carbon Roller Deco
1010: 'splatroller', # Splat Roller
1011: 'splatroller_collabo', # Krak-On Splat Roller
1012: 'splatroller_becchu', # Kensa Splat Roller
1015: 'heroroller_replica', # Hero Roller Replica
1020: 'dynamo', # Dynamo Roller
1021: 'dynamo_tesla', # Gold Dynamo Roller
1022: 'dynamo_becchu', # Kensa Dynamo Roller
1030: 'variableroller', # Flingza Roller
1031: 'variableroller_foil', # Foil Flingza Roller
1100: 'pablo', # Inkbrush
1101: 'pablo_hue', # Inkbrush Nouveau
1102: 'pablo_permanent', # Permanent Inkbrush
1110: 'hokusai', # Octobrush
1111: 'hokusai_hue', # Octobrush Nouveau
1112: 'hokusai_becchu', # Kensa Octobrush
1115: 'herobrush_replica', # Herobrush Replica
2000: 'squiclean_a', # Classic Squiffer
2001: 'squiclean_b', # New Squiffer
2002: 'squiclean_g', # Fresh Squiffer
2010: 'splatcharger', # Splat Charger
2011: 'splatcharger_collabo', # Firefin Splat Charger
2012: 'splatcharger_becchu', # Kensa Charger
2015: 'herocharger_replica', # Hero Charger Replica
2020: 'splatscope', # Splatterscope
2021: 'splatscope_collabo', # Firefin Splatterscope
2022: 'splatscope_becchu', # Kensa Splatterscope
2030: 'liter4k', # E-liter 4K
2031: 'liter4k_custom', # Custom E-liter 4K
2040: 'liter4k_scope', # E-liter 4K Scope
2041: 'liter4k_scope_custom', # Custom E-liter 4K Scope
2050: 'bamboo14mk1', # Bamboozler 14 Mk I
2051: 'bamboo14mk2', # Bamboozler 14 Mk II
2052: 'bamboo14mk3', # Bamboozler 14 Mk III
2060: 'soytuber', # Goo Tuber
2061: 'soytuber_custom', # Custom Goo Tuber
3000: 'bucketslosher', # Slosher
3001: 'bucketslosher_deco', # Slosher Deco
3002: 'bucketslosher_soda', # Soda Slosher
3005: 'heroslosher_replica', # Hero Slosher Replica
3010: 'hissen', # Tri-Slosher
3011: 'hissen_hue', # Tri-Slosher Nouveau
3020: 'screwslosher', # Sloshing Machine
3021: 'screwslosher_neo', # Sloshing Machine Neo
3022: 'screwslosher_becchu', # Kensa Sloshing Machine
3030: 'furo', # Bloblobber
3031: 'furo_deco', # Bloblobber Deco
3040: 'explosher', # Explosher
3041: 'explosher_custom', # Custom Explosher
4000: 'splatspinner', # Mini Splatling
4001: 'splatspinner_collabo', # Zink Mini Splatling
4002: 'splatspinner_becchu', # Kensa Mini Splatling
4010: 'barrelspinner', # Heavy Splatling
4011: 'barrelspinner_deco', # Heavy Splatling Deco
4012: 'barrelspinner_remix', # Heavy Splatling Remix
4015: 'herospinner_replica', # Hero Splatling Replica
4020: 'hydra', # Hydra Splatling
4021: 'hydra_custom', # Custom Hydra Splatling
4030: 'kugelschreiber', # Ballpoint Splatling
4031: 'kugelschreiber_hue', # Ballpoint Splatling Nouveau
4040: 'nautilus47', # Nautilus 47
4041: 'nautilus79', # Nautilus 79
5000: 'sputtery', # Dapple Dualies
5001: 'sputtery_hue', # Dapple Dualies Nouveau
5002: 'sputtery_clear', # Clear Dapple Dualies
5010: 'maneuver', # Splat Dualies
5011: 'maneuver_collabo', # Enperry Splat Dualies
5012: 'maneuver_becchu', # Kensa Splat Dualies
5015: 'heromaneuver_replica', # Hero Dualie Replicas
5020: 'kelvin525', # Glooga Dualies
5021: 'kelvin525_deco', # Glooga Dualies Deco
5022: 'kelvin525_becchu', # Kensa Glooga Dualies
5030: 'dualsweeper', # Dualie Squelchers
5031: 'dualsweeper_custom', # Custom Dualie Squelchers
5040: 'quadhopper_black', # Dark Tetra Dualies
5041: 'quadhopper_white', # Light Tetra Dualies
6000: 'parashelter', # Splat Brella
6001: 'parashelter_sorella', # Sorella Brella
6005: 'heroshelter_replica', # Hero Brella Replica
6010: 'campingshelter', # Tenta Brella
6011: 'campingshelter_sorella', # Tenta Sorella Brella
6012: 'campingshelter_camo', # Tenta Camo Brella
6020: 'spygadget', # Undercover Brella
6021: 'spygadget_sorella', # Undercover Sorella Brella
6022: 'spygadget_becchu', # Kensa Undercover Brella
20000: 'kuma_blaster', # Grizzco Blaster
20010: 'kuma_brella', # Grizzco Brella
20020: 'kuma_charger', # Grizzco Charger
20030: 'kuma_slosher' # Grizzco Slosher
}
# Stage database
# https://app.splatoon2.nintendo.net/api/data/stages (needs auth)
stages = {
0: 'battera', # The Reef
1: 'fujitsubo', # Musselforge Fitness
2: 'gangaze', # Starfish Mainstage
3: 'chozame', # Sturgeon Shipyard
4: 'ama', # Inkblot Art Academy
5: 'kombu', # Humpback Pump Track
6: 'manta', # Manta Maria
7: 'hokke', # Port Mackerel
8: 'tachiuo', # Moray Towers
9: 'engawa', # Snapper Canal
10: 'mozuku', # Kelp Dome
11: 'bbass', # Blackbelly Skatepark
12: 'devon', # Shellendorf Institute
13: 'zatou', # MakoMart
14: 'hakofugu', # Walleye Warehouse
15: 'arowana', # Arowana Mall
16: 'mongara', # Camp Triggerfish
17: 'shottsuru', # Piranha Pit
18: 'ajifry', # Goby Arena
19: 'otoro', # New Albacore Hotel
20: 'sumeshi', # Wahoo World
21: 'anchovy', # Ancho-V Games
22: 'mutsugoro', # Skipper Pavilion
100: 'mystery_04', # Shifty: Windmill House on the Pearlie
101: 'mystery_01', # Shifty: Wayslide Cool
102: 'mystery_02', # Shifty: The Secret of S.P.L.A.T.
103: 'mystery_03', # Shifty: Goosponge
105: 'mystery_07', # Shifty: Cannon Fire Pearl
106: 'mystery_06', # Shifty: Zone of Glass
107: 'mystery_05', # Shifty: Fancy Spew
108: 'mystery_09', # Shifty: Grapplink Girl
109: 'mystery_10', # Shifty: Zappy Longshocking
110: 'mystery_08', # Shifty: The Bunker Games
111: 'mystery_11', # Shifty: A Swiftly Tilting Balance
112: 'mystery_13', # Shifty: The Switches
113: 'mystery_12', # Shifty: Sweet Valley Tentacles
114: 'mystery_14', # Shifty: The Bouncey Twins
115: 'mystery_15', # Shifty: Railway Chillin'
116: 'mystery_16', # Shifty: Gusher Towns
117: 'mystery_17', # Shifty: The Maze Dasher
118: 'mystery_18', # Shifty: Flooders in the Attic
119: 'mystery_19', # Shifty: The Splat in Our Zones
120: 'mystery_20', # Shifty: The Ink is Spreading
121: 'mystery_21', # Shifty: Bridge to Tentaswitchia
122: 'mystery_22', # Shifty: The Chronicles of Rolonium
123: 'mystery_23', # Shifty: Furler in the Ashes
124 : 'mystery_24', # Shifty: MC.Princess Diaries
9999: 'mystery', # Shifty Station
# clearly the funniest way to go about doing this
'battera': 'Reef',
'fujitsubo': 'Fitness',
'gangaze': 'Mainstage',
'chozame': 'Shipyard',
'ama': 'Academy',
'kombu': 'Track',
'manta': 'Manta',
'hokke': 'Port',
'tachiuo': 'Towers',
'engawa': 'Canal',
'mozuku': 'Dome',
'bbass': 'Skatepark',
'devon': 'Institute',
'zatou': 'Mart',
'hakofugu': 'Warehouse',
'arowana': 'Mall',
'mongara': 'Camp',
'shottsuru': 'Pit',
'ajifry': 'Arena',
'otoro': 'Hotel',
'sumeshi': 'World',
'anchovy': 'Games',
'mutsugoro': 'Pavilion',
'mystery': 'Shifty',
'mystery_01': 'Shifty: Wayslide',
'mystery_02': 'Shifty: S.P.L.A.T.',
'mystery_03': 'Shifty: Goosponge',
'mystery_04': 'Shifty: Windmill',
'mystery_05': 'Shifty: Spew',
'mystery_06': 'Shifty: Glass',
'mystery_07': 'Shifty: Cannon',
'mystery_08': 'Shifty: Bunker',
'mystery_09': 'Shifty: Grapplink',
'mystery_10': 'Shifty: Longshocking',
'mystery_11': 'Shifty: Balance',
'mystery_12': 'Shifty: Tentacles',
'mystery_13': 'Shifty: Switches',
'mystery_14': 'Shifty: Bouncey',
'mystery_15': 'Shifty: Railway',
'mystery_16': 'Shifty: Gusher',
'mystery_17': 'Shifty: Dasher',
'mystery_18': 'Shifty: Flooders',
'mystery_19': 'Shifty: Zones',
'mystery_20': 'Shifty: Spreading',
'mystery_21': 'Shifty: Tentaswitchia',
'mystery_22': 'Shifty: Rolonium',
'mystery_23': 'Shifty: Furler',
'mystery_24': 'Shifty: Diaries'
}
# Gear database
# https://stat.ink/api-info/gear2-headgear
# https://stat.ink/api-info/gear2-clothing
# https://stat.ink/api-info/gear2-shoes
headgears = {
1: 'white_headband',
1000: 'urchins_cap',
1001: 'lightweight_cap',
1002: 'takoroka_mesh',
1003: 'streetstyle_cap',
1004: 'squid_stitch_cap',
1005: 'squidvader_cap',
1006: 'camo_mesh',
1007: 'five_panel_cap',
1008: 'zekko_mesh',
1009: 'backwards_cap',
1010: 'two_stripe_mesh',
1011: 'jet_cap',
1012: 'cycling_cap',
1014: 'cycle_king_cap',
1018: 'long_billed_cap',
1019: 'king_flip_mesh',
1020: 'hickory_work_cap',
1021: 'woolly_urchins_classic',
1023: 'jellyvader_cap',
1024: 'house_tag_denim_cap',
1025: 'blowfish_newsie',
1026: 'do_rag_cap_and_glasses',
1027: 'pilot_hat',
2000: 'bobble_hat',
2001: 'short_beanie',
2002: 'striped_beanie',
2003: 'sporty_bobble_hat',
2004: 'special_forces_beret',
2005: 'squid_nordic',
2006: 'sennyu_bon_bon_beanie',
2008: 'knitted_hat',
2009: 'annaki_beret',
2010: 'yamagiri_beanie',
2011: 'sneaky_beanie',
3000: 'retro_specs',
3001: 'splash_goggles',
3002: 'pilot_goggles',
3003: 'tinted_shades',
3004: 'black_arrowbands',
3005: 'snorkel_mask',
3006: 'white_arrowbands',
3007: 'fake_contacts',
3008: '18k_aviators',
3009: 'full_moon_glasses',
3010: 'octoglasses',
3011: 'half_rim_glasses',
3012: 'double_egg_shades',
3013: 'zekko_cap',
3014: 'sv925_circle_shades',
3015: 'annaki_beret_and_glasses',
3016: 'swim_goggles',
3017: 'ink_guard_goggles',
3018: 'toni_kensa_goggles',
3019: 'sennyu_goggles',
3020: 'sennyu_specs',
4000: 'safari_hat',
4001: 'jungle_hat',
4002: 'camping_hat',
4003: 'blowfish_bell_hat',
4004: 'bamboo_hat',
4005: 'straw_boater',
4006: 'classic_straw_boater',
4007: 'treasure_hunter',
4008: 'bucket_hat',
4009: 'patched_hat',
4010: 'tulip_parasol',
4011: 'fugu_bell_hat',
4012: 'seashell_bamboo_hat',
4013: 'hothouse_hat',
4014: 'mountie_hat',
5000: 'studio_headphones',
5001: 'designer_headphones',
5002: 'noise_cancelers',
5003: 'squidfin_hook_cans',
5004: 'squidlife_headphones',
5005: 'studio_octophones',
5006: 'sennyu_headphones',
6000: 'golf_visor',
6001: 'fishfry_visor',
6002: 'sun_visor',
6003: 'takoroka_visor',
6004: 'face_visor',
7000: 'bike_helmet',
7002: 'stealth_goggles',
7004: 'skate_helmet',
7005: 'visor_skate_helmet',
7006: 'mtb_helmet',
7007: 'hockey_helmet',
7008: 'matte_bike_helmet',
7009: 'octo_tackle_helmet_deco',
7010: 'moist_ghillie_helmet',
7011: 'deca_tackle_visor_helmet',
8000: 'gas_mask',
8001: 'paintball_mask',
8002: 'paisley_bandana',
8003: 'skull_bandana',
8004: 'painters_mask',
8005: 'annaki_mask',
8006: 'octoking_facemask',
8007: 'squid_facemask',
8008: 'firefin_facemask',
8009: 'king_facemask',
8010: 'motocross_nose_guard',
8011: 'forge_mask',
8012: 'digi_camo_forge_mask',
8013: 'koshien_bandana',
9001: 'b_ball_headband',
9002: 'squash_headband',
9003: 'tennis_headband',
9004: 'jogging_headband',
9005: 'soccer_headband',
9007: 'fishfry_biscuit_bandana',
9008: 'black_fishfry_bandana',
10000: 'kaiser_cuff', # Eminence Cuff
21000: 'headlamp_helmet',
21001: 'dust_blocker_2000',
21002: 'welding_mask',
21003: 'beekeeper_hat',
21004: 'octoleet_goggles',
21005: 'cap_of_legend',
21006: 'oceanic_hard_hat',
21007: 'workers_head_towel',
21008: 'workers_cap',
21009: 'sailor_cap',
22000: 'mecha_head_htr',
24000: 'kyonshi_hat',
24001: 'lil_devil_horns',
24002: 'hockey_mask',
24003: 'anglerfish_mask',
24004: 'festive_party_cone',
24005: 'new_years_glasses_dx',
24006: 'twisty_headband',
24007: 'eel_cake_hat',
24008: 'purple_novelty_visor',
24009: 'green_novelty_visor',
24010: 'orange_novelty_visor',
24011: 'pink_novelty_visor',
24012: 'jetflame_crest',
24013: 'fierce_fishskull',
24014: 'hivemind_antenna',
24015: 'eye_of_justice',
25000: 'squid_hairclip',
25001: 'samurai_helmet',
25002: 'power_mask',
25003: 'squid_clip_ons',
25004: 'squinja_mask',
25005: 'power_mask_mk_i',
25006: 'pearlescent_crown',
25007: 'marinated_headphones',
25008: 'enchanted_hat',
25009: 'steel_helm',
25010: 'fresh_fish_head',
27000: 'hero_headset_replica',
27004: 'armor_helmet_replica',
27101: 'hero_headphones_replica',
27104: 'octoling_shades',
27105: 'null_visor_replica',
27106: 'old_timey_hat',
27107: 'conductor_cap',
27108: 'golden_toothpick'
}
clothes = {
2: 'basic_tee',
3: 'fresh_octo_tee',
1000: 'white_tee',
1001: 'black_squideye',
1003: 'sky_blue_squideye',
1004: 'rockenberg_white',
1005: 'rockenberg_black',
1006: 'black_tee',
1007: 'sunny_day_tee',
1008: 'rainy_day_tee',
1009: 'reggae_tee',
1010: 'fugu_tee',
1011: 'mint_tee',
1012: 'grape_tee',
1013: 'red_vector_tee',
1014: 'gray_vector_tee',
1015: 'blue_peaks_tee',
1016: 'ivory_peaks_tee',
1017: 'squid_stitch_tee',
1018: 'pirate_stripe_tee',
1019: 'sailor_stripe_tee',
1020: 'white_8_bit_fishfry',
1021: 'black_8_bit_fishfry',
1022: 'white_anchor_tee',
1023: 'black_anchor_tee',
1026: 'carnivore_tee',
1027: 'pearl_tee',
1028: 'octo_tee',
1029: 'herbivore_tee',
1030: 'black_v_neck_tee',
1031: 'white_deca_logo_tee',
1032: 'half_sleeve_sweater',
1033: 'king_jersey',
1034: 'gray_8_bit_fishfry',
1035: 'white_v_neck_tee',
1036: 'white_urchin_rock_tee',
1037: 'black_urchin_rock_tee',
1038: 'wet_floor_band_tee',
1039: 'squid_squad_band_tee',
1040: 'navy_deca_logo_tee',
1041: 'mister_shrug_tee',
1042: 'chirpy_chips_band_tee',
1043: 'hightide_era_band_tee',
1044: 'red_v_neck_limited_tee',
1045: 'green_v_neck_limited_tee',
1046: 'omega_3_tee',
1047: 'annaki_polpo_pic_tee',
1048: 'firewave_tee',
1049: 'takoroka_galactic_tie_dye',
1050: 'takoroka_rainbow_tie_dye',
1051: 'missus_shrug_tee',
1052: 'league_tee',
1053: 'friend_tee',
1054: 'tentatek_slogan_tee',
1055: 'icewave_tee',
1056: 'octoking_hk_jersey',
1057: 'dakro_nana_tee',
1058: 'dakro_golden_tee',
1059: 'black_velour_octoking_tee',
1061: 'swc_logo_tee',
1060: 'green_velour_octoking_tee',
2000: 'white_striped_ls',
2001: 'black_ls',
2002: 'purple_camo_ls',
2003: 'navy_striped_ls',
2004: 'zekko_baseball_ls',
2005: 'varsity_baseball_ls',
2006: 'black_baseball_ls',
2007: 'white_baseball_ls',
2008: 'white_ls',
2009: 'green_striped_ls',
2010: 'squidmark_ls',
2011: 'zink_ls',
2012: 'striped_peaks_ls',
2013: 'pink_easy_stripe_shirt',
2014: 'inkopolis_squaps_jersey',
2015: 'annaki_drive_tee',
2016: 'lime_easy_stripe_shirt',
2017: 'annaki_evolution_tee',
2018: 'zekko_long_carrot_tee',
2019: 'zekko_long_radish_tee',
2020: 'black_cuttlegear_ls',
2021: 'takoroka_crazy_baseball_ls',
2022: 'red_cuttlegear_ls',
2023: 'khaki_16_bit_fishfry',
2024: 'blue_16_bit_fishfry',
3000: 'white_layered_ls',
3001: 'yellow_layered_ls',
3002: 'camo_layered_ls',
3003: 'black_layered_ls',
3004: 'zink_layered_ls',
3005: 'layered_anchor_ls',
3006: 'choco_layered_ls',
3007: 'part_time_pirate',
3008: 'layered_vector_ls',
3009: 'green_tee',
3010: 'red_tentatek_tee',
3011: 'blue_tentatek_tee',
3012: 'octo_layered_ls',
3013: 'squid_yellow_layered_ls',
4000: 'shrimp_pink_polo',
4001: 'striped_rugby',
4002: 'tricolor_rugby',
4003: 'sage_polo',
4004: 'black_polo',
4005: 'cycling_shirt',
4006: 'cycle_king_jersey',
4007: 'slipstream_united',
4008: 'fc_albacore',
5000: 'olive_ski_jacket',
5001: 'takoroka_nylon_vintage',
5002: 'berry_ski_jacket',
5003: 'varsity_jacket',
5004: 'school_jersey',
5005: 'green_cardigan',
5006: 'black_inky_rider',
5007: 'white_inky_rider',
5008: 'retro_gamer_jersey',
5009: 'orange_cardigan',
5010: 'forge_inkling_parka',
5011: 'forge_octarian_jacket',
5012: 'blue_sailor_suit',
5013: 'white_sailor_suit',
5014: 'squid_satin_jacket',
5015: 'zapfish_satin_jacket',
5016: 'krak_on_528',
5017: 'chilly_mountain_coat',
5018: 'takoroka_windcrusher',
5019: 'matcha_down_jacket',
5020: 'fa_01_jacket',
5021: 'fa_01_reversed',
5022: 'pullover_coat',
5023: 'kensa_coat',
5024: 'birded_corduroy_jacket',
5025: 'deep_octo_satin_jacket',
5026: 'zekko_redleaf_coat',
5027: 'eggplant_mountain_coat',
5028: 'zekko_jade_coat',
5029: 'light_bomber_jacket',
5030: 'brown_fa_11_bomber',
5031: 'gray_fa_11_bomber',
5032: 'king_bench_kaiser', # Milky Eminence Jacket
5033: 'navy_eminence_jacket',
5034: 'tumeric_zekko_coat',
5035: 'custom_painted_f_3',
5036: 'dark_bomber_jacket',
5037: 'moist_ghillie_suit',
5038: 'white_leather_f_3',
5039: 'chili_pepper_ski_jacket',
5040: 'whale_knit_sweater',
5041: 'rockin_leather_jacket',
5042: 'kung_fu_zip_up',
5043: 'panda_kung_fu_zip_up',
5044: 'sennyu_suit',
6000: 'b_ball_jersey_home',
6001: 'b_ball_jersey_away',
6003: 'white_king_tank',
6004: 'slash_king_tank',
6005: 'navy_king_tank',
6006: 'lob_stars_jersey',
7000: 'gray_college_sweat',
7001: 'squidmark_sweat',
7002: 'retro_sweat',
7003: 'firefin_navy_sweat',
7004: 'navy_college_sweat',
7005: 'reel_sweat',
7006: 'anchor_sweat',
7007: 'negative_longcuff_sweater',
7008: 'short_knit_layers',
7009: 'positive_longcuff_sweater',
7010: 'annaki_blue_cuff',
7011: 'annaki_yellow_cuff',
7012: 'annaki_red_cuff',
7013: 'n_pacer_sweat',
7014: 'octarian_retro',
7015: 'takoroka_jersey',
8000: 'lumberjack_shirt',
8001: 'rodeo_shirt',
8002: 'green_check_shirt',
8003: 'white_shirt',
8004: 'urchins_jersey',
8005: 'aloha_shirt',
8006: 'red_check_shirt',
8007: 'baby_jelly_shirt',
8008: 'baseball_jersey',
8009: 'gray_mixed_shirt',
8010: 'vintage_check_shirt',
8011: 'round_collar_shirt',
8012: 'logo_aloha_shirt',
8013: 'striped_shirt',
8014: 'linen_shirt',
8015: 'shirt_and_tie',
8017: 'hula_punk_shirt',
8018: 'octobowler_shirt',
8019: 'inkfall_shirt',
8020: 'crimson_parashooter',
8021: 'baby_jelly_shirt_and_tie',
8022: 'prune_parashooter',
8023: 'red_hula_punk_with_tie',
8024: 'chili_octo_aloha',
8025: 'annaki_flannel_hoodie',
8026: 'ink_wash_shirt',
8027: 'dots_on_dots_shirt',
8028: 'toni_k_baseball_jersey',
8029: 'online_jersey',
9000: 'mountain_vest',
9001: 'forest_vest',
9002: 'dark_urban_vest',
9003: 'yellow_urban_vest',
9004: 'squid_pattern_waistcoat',
9005: 'squidstar_waistcoat',
9007: 'fishing_vest',
9008: 'front_zip_vest',
9009: 'silver_tentatek_vest',
10000: 'camo_zip_hoodie',
10001: 'green_zip_hoodie',
10002: 'zekko_hoodie',
10004: 'shirt_with_blue_hoodie',
10005: 'grape_hoodie',
10006: 'gray_hoodie',
10007: 'hothouse_hoodie',
10008: 'pink_hoodie',
10009: 'olive_zekko_parka',
10010: 'black_hoodie',
10011: 'octo_support_hoodie',
21000: 'squiddor_polo',
21001: 'anchor_life_vest',
21002: 'juice_parka',
21003: 'garden_gear',
21004: 'crustwear_xxl',
21005: 'north_country_parka',
21006: 'octoleet_armor',
21007: 'record_shop_look_ep',
21008: 'dev_uniform',
21009: 'office_attire',
21010: 'srl_coat',
22000: 'mecha_body_akm',
23000: 'splatfest_tee_replica',
25000: 'school_uniform',
25001: 'samurai_jacket',
25002: 'power_armor',
25003: 'school_cardigan',
25004: 'squinja_suit',
25005: 'power_armor_mk_i',
25006: 'pearlescent_hoodie',
25007: 'marinated_top',
25008: 'enchanted_robe',
25009: 'steel_platemail',
25010: 'fresh_fish_gloves',
26000: 'splatfest_tee',
27000: 'hero_jacket_replica',
27004: 'armor_jacket_replica',
27101: 'hero_hoodie_replica',
27104: 'neo_octoling_armor',
27105: 'null_armor_replica',
27106: 'old_timey_clothes'
}
shoes = {
1: 'cream_basics',
1000: 'blue_lo_tops',
1001: 'banana_basics',
1002: 'le_lo_tops',
1003: 'white_seahorses',
1004: 'orange_lo_tops',
1005: 'black_seahorses',
1006: 'clownfish_basics',
1007: 'yellow_seahorses',
1008: 'strapping_whites',
1009: 'strapping_reds',
1010: 'soccer_shoes',
1011: 'le_soccer_shoes',
1012: 'sunny_climbing_shoes',
1013: 'birch_climbing_shoes',
1014: 'green_laceups',
1015: 'white_laceless_dakroniks',
1016: 'blue_laceless_dakroniks',
1017: 'suede_gray_lace_ups',
1018: 'suede_nation_lace_ups',
1019: 'suede_marine_lace_ups',
1020: 'toni_kensa_soccer_shoes',
2000: 'red_hi_horses',
2001: 'zombie_hi_horses',
2002: 'cream_hi_tops',
2003: 'purple_hi_horses',
2004: 'hunter_hi_tops',
2005: 'red_hi_tops',
2006: 'gold_hi_horses',
2008: 'shark_moccasins',
2009: 'mawcasins',
2010: 'chocolate_dakroniks',
2011: 'mint_dakroniks',
2012: 'black_dakroniks',
2013: 'piranha_moccasins',
2014: 'white_norimaki_750s',
2015: 'black_norimaki_750s',
2016: 'sunset_orca_hi_tops',
2017: 'red_and_black_squidkid_iv',
2018: 'blue_and_black_squidkid_iv',
2019: 'gray_sea_slug_hi_tops',
2020: 'orca_hi_tops',
2021: 'imperial_kaiser', # Milky Enperrials
2022: 'navy_enperrials',
2023: 'amber_sea_slug_hi_tops',
2024: 'yellow_iromaki_750s',
2025: 'red_and_white_squidkid_v',
2026: 'honey_and_orange_squidkid_v',
2027: 'sun_and_shade_squidkid_iv',
2028: 'orca_woven_hi_tops',
2029: 'green_iromaki_750s',
2030: 'purple_iromaki_750s',
2031: 'red_iromaki_750s',
2032: 'blue_iromaki_750s',
2033: 'orange_iromaki_750s',
2034: 'red_power_stripes',
2035: 'blue_power_stripes',
2036: 'toni_kensa_black_hi_tops',
2037: 'sesame_salt_270s',
2038: 'black_and_blue_squidkid_v',
2039: 'orca_passion_hi_tops',
2040: 'truffle_canvas_hi_tops',
2041: 'online_squidkid_v',
3000: 'pink_trainers',
3001: 'orange_arrows',
3002: 'neon_sea_slugs',
3003: 'white_arrows',
3004: 'cyan_trainers',
3005: 'blue_sea_slugs',
3006: 'red_sea_slugs',
3007: 'purple_sea_slugs',
3008: 'crazy_arrows',
3009: 'black_trainers',
3010: 'violet_trainers',
3011: 'canary_trainers',
3012: 'yellow_mesh_sneakers',
3013: 'arrow_pull_ons',
3014: 'red_mesh_sneakers',
3015: 'n_pacer_cao',
3016: 'n_pacer_ag',
3017: 'n_pacer_au',
3018: 'sea_slug_volt_95s',
3019: 'athletic_arrows',
4000: 'oyster_clogs',
4001: 'choco_clogs',
4002: 'blueberry_casuals',
4003: 'plum_casuals',
4007: 'neon_delta_straps',
4008: 'black_flip_flops',
4009: 'snow_delta_straps',
4010: 'luminous_delta_straps',
4011: 'red_fishfry_sandals',
4012: 'yellow_fishfry_sandals',
4013: 'musselforge_flip_flops',
5000: 'trail_boots',
5001: 'custom_trail_boots',
5002: 'pro_trail_boots',
6000: 'moto_boots',
6001: 'tan_work_boots',
6002: 'red_work_boots',
6003: 'blue_moto_boots',
6004: 'green_rain_boots',
6005: 'acerola_rain_boots',
6006: 'punk_whites',
6007: 'punk_cherries',
6008: 'punk_yellows',
6009: 'bubble_rain_boots',
6010: 'snowy_down_boots',
6011: 'icy_down_boots',
6012: 'hunting_boots',
6013: 'punk_blacks',
6014: 'deepsea_leather_boots',
6015: 'moist_ghillie_boots',
6016: 'annaki_arachno_boots',
6017: 'new_leaf_leather_boots',
6018: 'tea_green_hunting_boots',
7000: 'blue_slip_ons',
7001: 'red_slip_ons',
7002: 'squid_stitch_slip_ons',
7003: 'polka_dot_slip_ons',
8000: 'white_kicks',
8001: 'cherry_kicks',
8002: 'turquoise_kicks',
8003: 'squink_wingtips',
8004: 'roasted_brogues',
8005: 'kid_clams',
8006: 'smoky_wingtips',
8007: 'navy_red_soled_wingtips',
8008: 'gray_yellow_soled_wingtips',
8009: 'inky_kid_clams',
8010: 'annaki_habaneros',
8011: 'annaki_tigers',
8012: 'sennyu_inksoles',
21001: 'angry_rain_boots',
21002: 'non_slip_senseis',
21003: 'octoleet_boots',
21004: 'friendship_bracelet',
21005: 'flipper_floppers',
21006: 'wooden_sandals',
22000: 'mecha_legs_lbs',
23000: 'pearl_scout_lace_ups',
23001: 'pearlescent_squidkid_iv',
23002: 'pearl_punk_crowns',
23003: 'new_day_arrows',
23004: 'marination_lace_ups',
23005: 'rina_squidkid_iv',
23006: 'trooper_power_stripes',
23007: 'midnight_slip_ons',
25000: 'school_shoes',
25001: 'samurai_shoes',
25002: 'power_boots',
25003: 'fringed_loafers',
25004: 'squinja_boots',
25005: 'power_boots_mk_i',
25006: 'pearlescent_kicks',
25007: 'marinated_slip_ons',
25008: 'enchanted_boots',
25009: 'steel_greaves',
25010: 'fresh_fish_feet',
27000: 'hero_runner_replicas',
27004: 'armor_boot_replicas',
27101: 'hero_snowboots_replicas',
27104: 'neo_octoling_boots',
27105: 'null_boots_replica',
27106: 'old_timey_shoes'
}
# Ability database
# https://github.com/fetus-hina/stat.ink/blob/master/doc/api-2/post-battle.md#gear-ability
abilities = {
-1: None, # locked ("?") or does not exist
0: 'ink_saver_main',
1: 'ink_saver_sub',
2: 'ink_recovery_up',
3: 'run_speed_up',
4: 'swim_speed_up',
5: 'special_charge_up',
6: 'special_saver',
7: 'special_power_up',
8: 'quick_respawn',
9: 'quick_super_jump',
10: 'sub_power_up',
11: 'ink_resistance_up',
12: 'bomb_defense_up',
13: 'cold_blooded',
100: 'opening_gambit',
101: 'last_ditch_effort',
102: 'tenacity',
103: 'comeback',
104: 'ninja_squid',
105: 'haunt',
106: 'thermal_ink',
107: 'respawn_punisher',
108: 'ability_doubler',
109: 'stealth_jump',
110: 'object_shredder',
111: 'drop_roller',
200: 'bomb_defense_up_dx',
201: 'main_power_up'
}
# Colors for the profile image's background
profile_colors = {
0: 'pink',
1: 'green',
2: 'yellow',
3: 'purple',
4: 'blue',
5: 'sun-yellow'
}
# Splatfest ranks
fest_ranks = {
0: 'fanboy',
1: 'fiend',
2: 'defender',
3: 'champion',
4: 'king'
}