-
Notifications
You must be signed in to change notification settings - Fork 6
/
meowfficer_list.json
1346 lines (1346 loc) · 55.7 KB
/
meowfficer_list.json
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
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"id": 10011,
"name": "Justice",
"rarity": "Super Rare",
"type": [
"DD"
],
"slot": "Command",
"timer": "10:24:00",
"nationality": 1,
"stats": {
"command": 52,
"support": 44,
"tactic": 65
},
"skill": {
"name": "31 Knots of Justice",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/1001.png",
"level": {
"1": {
"id": 10011,
"desc": "When assigned to a fleet with 3 DDs: gives your fleet +1 tile movement on the map.",
"opsi": "When assigned to a fleet with 3 DDs: increases your Vanguard's TRP by a moderate amount based on the Tactics stat."
},
"2": {
"id": 10012,
"desc": "When assigned as the Command Cat to a fleet that has at least 1 DD: 15.0% chance to launch a preemptive torpedo strike when engaging any non-Boss fleet on the map.",
"opsi": "When assigned as the Command Cat, and when the 2nd ship in your Vanguard is a DD: fires a Lv. 1 special barrage."
},
"3": {
"id": 10013,
"desc": "When assigned as the Command Cat to a fleet that isn't in combat and has at least 1 DD: adds an option in the Strategy Menu to switch positions with a friendly fleet in combat if it is directly adjacent to yours.",
"opsi": "Improves the special barrage to Lv. 2."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10011/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10011/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10011/banner.png",
"talent": []
},
{
"id": 10021,
"name": "Antenna",
"rarity": "Super Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "General",
"timer": "10:45:00",
"nationality": 1,
"stats": {
"command": 64,
"support": 43,
"tactic": 55
},
"skill": {
"name": "Snipurr",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/1002.png",
"level": {
"1": {
"id": 10021,
"desc": "When engaging an enemy Vanguard or Main Fleet: increases the Accuracy of your BBs, BCs, and BBVs by a large amount based on the Tactics stat.",
"opsi": "When engaging an enemy Vanguard or Main Fleet: increases the Accuracy of your BBs, BCs, and BBVs by a large amount based on the Tactics stat."
},
"2": {
"id": 10022,
"desc": "When assigned to a fleet with a BB, BC, or BBV as its Flagship: increases the DMG the Flagship deals based on the Directives stat.",
"opsi": "When assigned to a fleet with a BB, BC, or BBV as its Flagship: increases the DMG the Flagship deals based on the Directives stat."
},
"3": {
"id": 10023,
"desc": "Increases EVA and AA for your BBs, BCs, and BBVs by a moderate amount based on the Directives stat.",
"opsi": "Increases EVA and AA for your BBs, BCs, and BBVs by a moderate amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10021/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10021/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10021/banner.png",
"talent": []
},
{
"id": 11011,
"name": "Bunny",
"rarity": "Elite",
"type": [
"DD"
],
"slot": "Command",
"timer": "06:09:00",
"nationality": 1,
"stats": {
"command": 55,
"support": 43,
"tactic": 36
},
"skill": {
"name": "Bite Their Fingers",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/1101.png",
"level": {
"1": {
"id": 11011,
"desc": "When assigned as the Command Cat to a fleet that has at least 1 DD: 15.0% chance to launch a preemptive torpedo strike when engaging any non-Boss fleet on the map.",
"opsi": "When assigned as the Command Cat: increases your DD's TRP by a small amount based on the Directives stat."
},
"2": {
"id": 11012,
"desc": "Once per battle, when a DD is the frontmost ship of your Vanguard: activates Meowfficer Barrage Ⅰ when in close proximity to an enemy.",
"opsi": "Once per battle, when a DD is the frontmost ship of your Vanguard: activates Meowfficer Barrage Ⅰ when in close proximity to an enemy."
},
"3": {
"id": 11013,
"desc": "Upgrades Meowfficer Barrage Ⅰ to Meowfficer Barrage Ⅱ.",
"opsi": "Upgrades Meowfficer Barrage Ⅰ to Meowfficer Barrage Ⅱ."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/banner.png",
"talent": []
},
{
"id": 11021,
"name": "Eagle",
"rarity": "Elite",
"type": [
"CV",
"CVL"
],
"slot": "Staff",
"timer": "05:36:00",
"nationality": 1,
"stats": {
"command": 52,
"support": 33,
"tactic": 49
},
"skill": {
"name": "Nine Lives",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/1102.png",
"level": {
"1": {
"id": 11021,
"desc": "When assigned as the Staff Cat: increases the RLD of your CVs and CVLs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the RLD of your CVs and CVLs by a small amount based on the Tactics stat."
},
"2": {
"id": 11022,
"desc": "When the fleet runs into an Airstrike on the map: gives a chance to completely evade the Airstrike based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA and AA of your CVs and CVLs by a small amount based on the Tactics stat."
},
"3": {
"id": 11023,
"desc": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/11000/banner.png",
"talent": []
},
{
"id": 12011,
"name": "Lady",
"rarity": "Rare",
"type": [
"CV",
"CVL"
],
"slot": "Staff",
"timer": "02:03:00",
"nationality": 1,
"stats": {
"command": 40,
"support": 28,
"tactic": 52
},
"skill": {
"name": "Carrier Boost",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/buff.png",
"level": {
"1": {
"id": 12011,
"desc": "When assigned as the Staff Cat: increases the RLD of your CVs and CVLs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the RLD of your CVs and CVLs by a small amount based on the Logistics stat."
},
"2": {
"id": 12012,
"desc": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a small amount based on the Directives stat."
},
"3": {
"id": 12013,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 12021,
"name": "SG",
"rarity": "Rare",
"type": [
"CL",
"CA",
"CB"
],
"slot": "Staff",
"timer": "02:25:00",
"nationality": 1,
"stats": {
"command": 51,
"support": 41,
"tactic": 26
},
"skill": {
"name": "Recon Boost",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/def.png",
"level": {
"1": {
"id": 12021,
"desc": "Decreases the fleet's chance of running into an Ambush based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your CLs, CAs, and CBs by a small amount based on the Logistics stat."
},
"2": {
"id": 12022,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your CLs, CAs, and CBs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your CLs, CAs, and CBs by a small amount based on the Tactics stat."
},
"3": {
"id": 12023,
"desc": "When assigned as the Staff Cat: increases the FP your CLs, CAs, and CBs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the FP your CLs, CAs, and CBs by a small amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 20011,
"name": "Lime",
"rarity": "Super Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "10:05:00",
"nationality": 2,
"stats": {
"command": 52,
"support": 55,
"tactic": 58
},
"skill": {
"name": "Churchill's Blessing",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2001.png",
"level": {
"1": {
"id": 20011,
"desc": "When assigned as the Staff Cat: increases the FP and AA of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the FP and AA of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat."
},
"2": {
"id": 20012,
"desc": "When assigned as the Staff Cat and when in a coastal battle (i.e. fighting on a tile adjacent to impassable land): increases the entire fleet's FP by a moderate amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: for 30s after the battle starts, increases your entire fleet's FP by a moderate amount based on the Tactics stat."
},
"3": {
"id": 20013,
"desc": "Increases the DMG your BBs, BCs, and BBVs deal based on the Tactics stat.",
"opsi": "Increases the DMG your BBs, BCs, and BBVs deal based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20011/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20011/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20011/banner.png",
"talent": []
},
{
"id": 20021,
"name": "Pound",
"rarity": "Super Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Command",
"timer": "10:27:00",
"nationality": 2,
"stats": {
"command": 59,
"support": 67,
"tactic": 36
},
"skill": {
"name": "Rule Britannya",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2002.png",
"level": {
"1": {
"id": 20021,
"desc": "When assigned as the Command Cat: increases the FP and AA of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Command Cat: increases the FP and AA of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat."
},
"2": {
"id": 20022,
"desc": "When assigned as the Command Cat to a fleet with at least 4 Royal Navy ships: decreases the DMG your Vanguard takes for 30s after the battle starts based on the Logistics stat.",
"opsi": "When assigned as the Command Cat to a fleet with at least 4 Royal Navy ships: decreases the DMG your Vanguard takes for 30s after the battle starts based on the Logistics stat."
},
"3": {
"id": 20023,
"desc": "When assigned as the Command Cat: increases the EVA of your Royal Navy ships by a large amount based on the Logistics stat.",
"opsi": "When assigned as the Command Cat: increases the EVA of your Royal Navy ships by a large amount based on the Logistics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20021/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20021/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/20021/banner.png",
"talent": []
},
{
"id": 21011,
"name": "Pepper",
"rarity": "Elite",
"type": [
"CL",
"CA",
"CB"
],
"slot": "Staff",
"timer": "06:16:00",
"nationality": 2,
"stats": {
"command": 50,
"support": 44,
"tactic": 45
},
"skill": {
"name": "Commerce Purrsuiter",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2101.png",
"level": {
"1": {
"id": 21011,
"desc": "When assigned as the Staff Cat: increases the EVA of your CLs, CAs, and CBs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your CLs, CAs, and CBs by a small amount based on the Logistics stat."
},
"2": {
"id": 21012,
"desc": "When assigned as the Staff Cat and when engaging an enemy Cargo Fleet: increases the FP of your CLs, CAs, and CBs by a large amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat and when engaging an enemy Cargo Fleet: increases the FP of your CLs, CAs, and CBs by a large amount based on the Tactics stat."
},
"3": {
"id": 21013,
"desc": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a moderate amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/banner.png",
"talent": []
},
{
"id": 21021,
"name": "Soup",
"rarity": "Elite",
"type": [
"DD"
],
"slot": "Staff",
"timer": "05:30:00",
"nationality": 2,
"stats": {
"command": 55,
"support": 39,
"tactic": 33
},
"skill": {
"name": "Purrceptive",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2102.png",
"level": {
"1": {
"id": 21021,
"desc": "When assigned as the Staff Cat and when engaging an enemy Vanguard Fleet: increases the Accuracy of your DDs by a moderate amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat and when engaging an enemy Vanguard Fleet: increases the Accuracy of your DDs by a moderate amount based on the Tactics stat."
},
"2": {
"id": 21022,
"desc": "When assigned as the Staff Cat: increases the EVA of your DDs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your DDs by a small amount based on the Logistics stat."
},
"3": {
"id": 21023,
"desc": "When assigned to a fleet that is within 3 tiles of an enemy Vanguard Fleet: gives your fleet +1 tile movement on the map.",
"opsi": "When an enemy Recon Fleet is within the surrounding 3 tiles of the fleet this Meowfficer is assigned to: increases the EVA of your DDs by a small amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/banner.png",
"talent": []
},
{
"id": 21031,
"name": "Ark",
"rarity": "Elite",
"type": [
"CV",
"CVL"
],
"slot": "Staff",
"timer": "06:43:00",
"nationality": 2,
"stats": {
"command": 64,
"support": 23,
"tactic": 44
},
"skill": {
"name": "Tiddles' Legacy",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2103.png",
"level": {
"1": {
"id": 21031,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat."
},
"2": {
"id": 21032,
"desc": "When assigned to a fleet that is within 2 tiles of an enemy Vanguard Fleet: gives your fleet +1 tile movement on the map.",
"opsi": "When an enemy Recon Fleet is within the surrounding 2 tiles of the fleet this Meowfficer is assigned to: increases the EVA of your DDs by a small amount based on the Logistics stat."
},
"3": {
"id": 21033,
"desc": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/banner.png",
"talent": []
},
{
"id": 21041,
"name": "Marble",
"rarity": "Elite",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "07:26:00",
"nationality": 2,
"stats": {
"command": 48,
"support": 39,
"tactic": 44
},
"skill": {
"name": "Sophissticated",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/2104.png",
"level": {
"1": {
"id": 21041,
"desc": "Decreases the chance of the fleet running into an Airstrike on the map based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your BBs, BCs, and BBVs by a small amount based on the Logistics stat."
},
"2": {
"id": 21042,
"desc": "When assigned as the Staff Cat: increases the RLD of your BBs, BCs, and BBVs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the RLD of your BBs, BCs, and BBVs by a small amount based on the Directives stat."
},
"3": {
"id": 21043,
"desc": "When assigned as the Staff Cat: increases the FP of your Royal Navy ships by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the FP of your Royal Navy ships by a small amount based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/21000/banner.png",
"talent": []
},
{
"id": 22011,
"name": "Rose",
"rarity": "Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "02:17:00",
"nationality": 2,
"stats": {
"command": 29,
"support": 64,
"tactic": 23
},
"skill": {
"name": "Battleship Boost",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/buff.png",
"level": {
"1": {
"id": 22011,
"desc": "When assigned as the Staff Cat: increases the RLD of your BBs, BCs, and BBVs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the RLD of your BBs, BCs, and BBVs by a small amount based on the Logistics stat."
},
"2": {
"id": 22012,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a small amount based on the Logistics stat. (Unlocks at Skill Lvl 2)",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a small amount based on the Logistics stat. (Unlocks at Skill Lvl 2)"
},
"3": {
"id": 22013,
"desc": "When assigned as the Staff Cat: increases the FP of your BBs, BCs, and BBVs by a small amount based on the Logistics stat. (Unlocks at Skill Lvl 3)",
"opsi": "When assigned as the Staff Cat: increases the FP of your BBs, BCs, and BBVs by a small amount based on the Logistics stat. (Unlocks at Skill Lvl 3)"
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 22021,
"name": "Bugles",
"rarity": "Rare",
"type": [
"CL",
"CA",
"CB"
],
"slot": "Staff",
"timer": "01:39:00",
"nationality": 2,
"stats": {
"command": 38,
"support": 29,
"tactic": 52
},
"skill": {
"name": "Cruiser Tactics",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/buff.png",
"level": {
"1": {
"id": 22021,
"desc": "When assigned as the Staff Cat: increases the FP of your CLs, CAs, and CBs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the FP of your CLs, CAs, and CBs by a small amount based on the Tactics stat."
},
"2": {
"id": 22022,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your CLs, CAs, and CBs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your CLs, CAs, and CBs by a small amount based on the Tactics stat."
},
"3": {
"id": 22023,
"desc": "When assigned as the Staff Cat: increases the EVA of your CLs, CAs, and CBs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your CLs, CAs, and CBs by a small amount based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 30011,
"name": "Bishamaru",
"rarity": "Super Rare",
"type": [
"CV",
"CVL"
],
"slot": "Staff",
"timer": "09:58:00",
"nationality": 3,
"stats": {
"command": 49,
"support": 38,
"tactic": 68
},
"skill": {
"name": "Paws of Fury",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/3001.png",
"level": {
"1": {
"id": 30011,
"desc": "When assigned as the Staff Cat: increases the AVI and RLD of your CVs and CVLs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AVI and RLD of your CVs and CVLs by a small amount based on the Directives stat."
},
"2": {
"id": 30012,
"desc": "Decreases the fleet's chance of running into an Ambush based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your CVs and CVLs by a small amount based on the Logistics stat."
},
"3": {
"id": 30013,
"desc": "Once per battle, if your fleet consists of only 1 CV or CVL: quickens the load time of your CV's/CVL's first Airstrike by 8.0% and launches an additional Torpedo Bomber airstrike once.",
"opsi": "Once per battle, if your fleet consists of only 1 CV or CVL: quickens the load time of your CV's/CVL's first Airstrike by 8.0% and launches an additional Torpedo Bomber airstrike once."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30011/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30011/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30011/banner.png",
"talent": []
},
{
"id": 30021,
"name": "Takemaru",
"rarity": "Super Rare",
"type": [
"CL",
"CA",
"CB"
],
"slot": "Command",
"timer": "09:40:00",
"nationality": 3,
"stats": {
"command": 62,
"support": 30,
"tactic": 66
},
"skill": {
"name": "Ironbottom Tail Swipe",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/3002.png",
"level": {
"1": {
"id": 30021,
"desc": "When assigned as the Command Cat: increases the FP and TRP of your CLs, CAs, and CBs by a moderate amount based on the Tactics stat.",
"opsi": "When assigned as the Command Cat: increases the FP and TRP of your CLs, CAs, and CBs by a moderate amount based on the Tactics stat."
},
"2": {
"id": 30022,
"desc": "When assigned as the Command Cat to a fleet that is within 2 tiles of an enemy Main Fleet: decreases the DMG your Flagship takes based on the Directives stat.",
"opsi": "When assigned as the Command Cat to a fleet that is within 2 tiles of an enemy Main Fleet: decreases the DMG your Flagship takes based on the Directives stat."
},
"3": {
"id": 30023,
"desc": "For 30s after the battle starts when assigned as the Command Cat and when engaging an enemy Main Fleet: increases the Accuracy and EVA of your CLs, CAs, and CBs by a large amount based on the Tactics stat.",
"opsi": "For 30s after the battle starts when assigned as the Command Cat and when engaging an enemy Main Fleet: increases the Accuracy and EVA of your CLs, CAs, and CBs by a large amount based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30021/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30021/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/30021/banner.png",
"talent": []
},
{
"id": 31011,
"name": "Jiromaru",
"rarity": "Elite",
"type": [
"CV",
"CVL"
],
"slot": "Staff",
"timer": "05:37:00",
"nationality": 3,
"stats": {
"command": 61,
"support": 33,
"tactic": 41
},
"skill": {
"name": "Belly Flop Bombardment",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/3101.png",
"level": {
"1": {
"id": 31011,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your CVs and CVLs by a small amount based on the Tactics stat."
},
"2": {
"id": 31012,
"desc": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AVI of your CVs and CVLs by a moderate amount based on the Directives stat."
},
"3": {
"id": 31013,
"desc": "When assigned to a fleet that has at least 1 CV or CVL: 15.0% chance to launch a preemptive airstrike when engaging any non-Boss fleet on the map. The DMG of the airstrike is based on the Tactics stat as well as the Level and Fleet Power of both sides.",
"opsi": "When assigned to a fleet with a Flagship that is a CV or CVL: launches an airstrike 15s after the battle starts."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/banner.png",
"talent": []
},
{
"id": 31021,
"name": "Yoshimaru",
"rarity": "Elite",
"type": [
"DD"
],
"slot": "Staff",
"timer": "06:23:00",
"nationality": 3,
"stats": {
"command": 62,
"support": 36,
"tactic": 36
},
"skill": {
"name": "Feral Instincts",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/3102.png",
"level": {
"1": {
"id": 31021,
"desc": "When assigned as the Staff Cat: increases the EVA of your DDs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your DDs by a small amount based on the Directives stat."
},
"2": {
"id": 31022,
"desc": "When assigned as the Staff Cat: increases the TRP of your DDs by a moderate amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the TRP of your DDs by a moderate amount based on the Logistics stat."
},
"3": {
"id": 31023,
"desc": "When assigned as the Staff Cat and when your Vanguard consists of only 1 DD: increases your DD's TRP by a large amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat and when your Vanguard consists of only 1 DD: increases your DD's TRP by a large amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/31000/banner.png",
"talent": []
},
{
"id": 32011,
"name": "Asamaru",
"rarity": "Rare",
"type": [
"CL",
"CA",
"CB"
],
"slot": "Staff",
"timer": "02:06:00",
"nationality": 3,
"stats": {
"command": 48,
"support": 24,
"tactic": 40
},
"skill": {
"name": "Cruiser Directives",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/buff.png",
"level": {
"1": {
"id": 32011,
"desc": "When assigned as the Staff Cat: increases the FP of your CLs, CAs, and CBs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the FP of your CLs, CAs, and CBs by a small amount based on the Directives stat."
},
"2": {
"id": 32012,
"desc": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a small amount based on the Logistics stat."
},
"3": {
"id": 32013,
"desc": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the TRP of your CLs, CAs, and CBs by a small amount based on the Directives stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 32021,
"name": "Katsumaru",
"rarity": "Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "01:55:00",
"nationality": 3,
"stats": {
"command": 47,
"support": 36,
"tactic": 32
},
"skill": {
"name": "Battleship Support",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/buff.png",
"level": {
"1": {
"id": 32021,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a small amount based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a small amount based on the Logistics stat."
},
"2": {
"id": 32022,
"desc": "When assigned as the Staff Cat: increases the AA of your BBs, BCs, and BBVs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the AA of your BBs, BCs, and BBVs by a small amount based on the Directives stat."
},
"3": {
"id": 32023,
"desc": "When assigned as the Staff Cat: increases the FP of your BBs, BCs, and BBVs by a small amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the FP of your BBs, BCs, and BBVs by a small amount based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/10000/banner.png",
"talent": []
},
{
"id": 40011,
"name": "Steel",
"rarity": "Super Rare",
"type": [
"SS",
"SSV"
],
"slot": "Command",
"timer": "09:35:00",
"nationality": 4,
"stats": {
"command": 66,
"support": 40,
"tactic": 52
},
"skill": {
"name": "Silent Hunter",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/4001.png",
"level": {
"1": {
"id": 40011,
"desc": "Increases the TRP of your SSs and SSVs by a small amount based on the Command and Logistics stats.",
"opsi": "Increases the TRP of your SSs and SSVs by a small amount based on the Command and Logistics stats."
},
"2": {
"id": 40012,
"desc": "Increases ASR by 1 level.",
"opsi": "When assigned as the Command Cat to a fleet: increases the OXY of your SSs by 15."
},
"3": {
"id": 40013,
"desc": "Increases the DMG dealt to enemy fleets while in Attack Mode based on the Tactics stat.",
"opsi": "When assigned as the Command Cat to a fleet: fires a special torpedo barrage after the Flagship of your Submarine Fleet enters battle."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40011/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40011/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40011/banner.png",
"talent": []
},
{
"id": 40021,
"name": "Oscar",
"rarity": "Super Rare",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "10:03:00",
"nationality": 4,
"stats": {
"command": 66,
"support": 37,
"tactic": 54
},
"skill": {
"name": "Unsinkable Oscar",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/4002.png",
"level": {
"1": {
"id": 40021,
"desc": "When assigned as the Staff Cat: increases the FP and Accuracy of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the FP and Accuracy of your BBs, BCs, and BBVs by a moderate amount based on the Directives stat."
},
"2": {
"id": 40022,
"desc": "When assigned as the Staff Cat to a fleet that has at least 1 BB, BC, or BBV: 15.0% chance to launch a preemptive volley when engaging an enemy Vanguard Fleet. The DMG of the volley is based on the Directives stat as well as the Level and Fleet Power of both sides.",
"opsi": "When assigned as the Staff Cat, and when the Flagship of your fleet is a BB, BC, or BBV: 50.0% chance to fire a special barrage 20s after the battle starts."
},
"3": {
"id": 40023,
"desc": "When assigned as the Staff Cat and when engaging an enemy Main Fleet: decreases the DMG your BBs, BCs, and BBVs take and increases their RLD based on the Logistics stat.",
"opsi": "When assigned as the Staff Cat and when engaging an enemy Main Fleet: decreases the DMG your BBs, BCs, and BBVs take and increases their RLD based on the Logistics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40021/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40021/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/40021/banner.png",
"talent": []
},
{
"id": 41011,
"name": "Potato",
"rarity": "Elite",
"type": [
"BB",
"BC",
"BBV"
],
"slot": "Staff",
"timer": "06:45:00",
"nationality": 4,
"stats": {
"command": 56,
"support": 35,
"tactic": 43
},
"skill": {
"name": "Paladin of the Sea",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/4101.png",
"level": {
"1": {
"id": 41011,
"desc": "When assigned as the Staff Cat: increases the EVA of your BBs, BCs, and BBVs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the EVA of your BBs, BCs, and BBVs by a small amount based on the Directives stat."
},
"2": {
"id": 41012,
"desc": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a moderate amount based on the Tactics stat.",
"opsi": "When assigned as the Staff Cat: increases the Accuracy of your BBs, BCs, and BBVs by a moderate amount based on the Tactics stat."
},
"3": {
"id": 41013,
"desc": "When engaging an enemy Main Fleet: decreases the DMG your Flagship takes based on the Tactics stat.",
"opsi": "When engaging an enemy Main Fleet: decreases the DMG your Flagship takes based on the Tactics stat."
}
}
},
"image": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/41000/image.png",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/41000/icon.png",
"banner": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/character/41000/banner.png",
"talent": []
},
{
"id": 41021,
"name": "Edelweiss",
"rarity": "Elite",
"type": [
"SS",
"SSV"
],
"slot": "Staff",
"timer": "05:57:00",
"nationality": 4,
"stats": {
"command": 59,
"support": 34,
"tactic": 41
},
"skill": {
"name": "Champion of the Sea",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/meowfficer/skill/4102.png",
"level": {
"1": {
"id": 41021,
"desc": "When assigned as the Staff Cat: increases the TRP of your SSs and SSVs by a small amount based on the Directives stat.",
"opsi": "When assigned as the Staff Cat: increases the TRP of your SSs and SSVs by a small amount based on the Directives stat."