-
Notifications
You must be signed in to change notification settings - Fork 6
/
skill.json
16770 lines (16770 loc) · 878 KB
/
skill.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
{
"14": {
"id": 14,
"type": 3,
"name": "Universal Bulin",
"desc": "Can be used as material to Limit Break Elite (or below) ships.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/14.png",
"max_level": 1
},
"15": {
"id": 15,
"type": 3,
"name": "Prototype Bulin MKII",
"desc": "Can be used as material to Limit Break Super Rare ships.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/15.png",
"max_level": 1
},
"16": {
"id": 16,
"type": 3,
"name": "Specialized Bulin Custom MKIII",
"desc": "Can be used as material to Limit Break all Ultra Rare (UR) ships.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/16.png",
"max_level": 1
},
"1001": {
"id": 1001,
"type": 3,
"name": "Artillery Command: Destroyers",
"desc": "Increases the FP of all DDs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1002": {
"id": 1002,
"type": 3,
"name": "Artillery Command: Cruisers",
"desc": "Increases the FP of all Cruisers in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1003": {
"id": 1003,
"type": 3,
"name": "Artillery Command: Battleships",
"desc": "Increases the FP of all BBs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1004": {
"id": 1004,
"type": 3,
"name": "Artillery Command: Vanguard",
"desc": "Increases the FP of your Vanguard by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1005": {
"id": 1005,
"type": 3,
"name": "Artillery Command: Main Fleet",
"desc": "Increases the FP of your Main Fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1006": {
"id": 1006,
"type": 3,
"name": "Artillery Command: All",
"desc": "Increases the FP of your entire fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1000.png",
"max_level": 10
},
"1011": {
"id": 1011,
"type": 3,
"name": "Torpedo Command: Destroyers",
"desc": "Increases the TRP of all DDs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1010.png",
"max_level": 10
},
"1012": {
"id": 1012,
"type": 3,
"name": "Torpedo Command: Cruisers",
"desc": "Increases the TRP of all Cruisers in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1010.png",
"max_level": 10
},
"1013": {
"id": 1013,
"type": 3,
"name": "Torpedo Command: Vanguard",
"desc": "Increases the TRP of your Vanguard by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1010.png",
"max_level": 10
},
"1021": {
"id": 1021,
"type": 3,
"name": "Aviation Command: All",
"desc": "Increases the AVI of your entire fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1020.png",
"max_level": 10
},
"1031": {
"id": 1031,
"type": 3,
"name": "Reload Command: Destroyers",
"desc": "Increases the RLD of all DDs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1032": {
"id": 1032,
"type": 3,
"name": "Reload Command: Cruisers",
"desc": "Increases the RLD of all Cruisers in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1033": {
"id": 1033,
"type": 3,
"name": "Reload Command: Battleships",
"desc": "Increases the RLD of all BBs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1034": {
"id": 1034,
"type": 3,
"name": "Reload Command: Vanguard",
"desc": "Increases the RLD of your Vanguard by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1035": {
"id": 1035,
"type": 3,
"name": "Reload Command: Main Fleet",
"desc": "Increases the RLD of your Main Fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1036": {
"id": 1036,
"type": 3,
"name": "Reload Command: All",
"desc": "Increases the RLD of your entire fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1037": {
"id": 1037,
"type": 3,
"name": "Reload Command: Light Carriers",
"desc": "Increases the RLD of all CVLs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1030.png",
"max_level": 10
},
"1041": {
"id": 1041,
"type": 3,
"name": "Anti-Air Command: Destroyers",
"desc": "Increases the AA of all DDs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1042": {
"id": 1042,
"type": 3,
"name": "Anti-Air Command: Cruisers",
"desc": "Increases the AA of all Cruisers in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1043": {
"id": 1043,
"type": 3,
"name": "Anti-Air Command: Battleships",
"desc": "Increases the AA of all BBs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1044": {
"id": 1044,
"type": 3,
"name": "Anti-Air Command: Vanguard",
"desc": "Increases the AA of your Vanguard by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1045": {
"id": 1045,
"type": 3,
"name": "Anti-Air Command: Main Fleet",
"desc": "Increases the AA of your Main Fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1046": {
"id": 1046,
"type": 3,
"name": "Anti-Air Command: All",
"desc": "Increases the AA of your entire fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1040.png",
"max_level": 10
},
"1051": {
"id": 1051,
"type": 3,
"name": "Tactical Command: Destroyers",
"desc": "Increases the FP, TRP, and RLD of all DDs in your fleet by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1052": {
"id": 1052,
"type": 3,
"name": "Tactical Command: Cruisers",
"desc": "Increases the FP, TRP, and RLD of all Cruisers in your fleet by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1053": {
"id": 1053,
"type": 3,
"name": "Tactical Command: Battleships",
"desc": "Increases the FP, TRP, and RLD of all BBs in your fleet by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1054": {
"id": 1054,
"type": 3,
"name": "Tactical Command: Vanguard",
"desc": "Increases the FP, TRP, and RLD of your Vanguard by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1055": {
"id": 1055,
"type": 3,
"name": "Tactical Command: Main Fleet",
"desc": "Increases the FP, TRP, and RLD of your Main Fleet by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1056": {
"id": 1056,
"type": 3,
"name": "Tactical Command: All",
"desc": "Increases the FP, TRP, and RLD of your entire fleet by 1.0% (10.0%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1050.png",
"max_level": 10
},
"1061": {
"id": 1061,
"type": 2,
"name": "Flank Defense",
"desc": "While this ship is afloat: decreases the DMG your Main Fleet takes by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1060.png",
"max_level": 10
},
"1071": {
"id": 1071,
"type": 3,
"name": "Frontline Recon",
"desc": "While this ship is afloat: increases the DMG of all BBs, BCs, and BMs in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1070.png",
"max_level": 10
},
"1081": {
"id": 1081,
"type": 3,
"name": "Air Raid Assistance",
"desc": "While this ship is afloat: increases the DMG of all Carriers in your fleet by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1080.png",
"max_level": 10
},
"1091": {
"id": 1091,
"type": 3,
"name": "Torpedo Squadron",
"desc": "While this ship is afloat: increases the TRP and RLD of all DDs and CLs in your fleet by 3.0% (15.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/1090.png",
"max_level": 10
},
"2001": {
"id": 2001,
"type": 1,
"name": "Quick Reload",
"desc": "Every 20s: 30.0% (60.0%) chance to increase this ship's RLD by 20.0% (40.0%) for 10s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2000.png",
"max_level": 10
},
"2011": {
"id": 2011,
"type": 1,
"name": "Full Firepower",
"desc": "Every 20s: 30.0% (60.0%) chance to increase this ship's FP by 20.0% (40.0%) for 10s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2010.png",
"max_level": 10
},
"2021": {
"id": 2021,
"type": 3,
"name": "Reload Order",
"desc": "Every 20s: 25.0% chance to increase the RLD of your entire fleet by 5.0% (25.0%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2020.png",
"max_level": 10
},
"2031": {
"id": 2031,
"type": 3,
"name": "Assault Order",
"desc": "Every 20s: 25.0% chance to increase the DMG of your entire fleet by 5.0% (25.0%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2030.png",
"max_level": 10
},
"2041": {
"id": 2041,
"type": 1,
"name": "Focused Assault",
"desc": "When this ship fires its Main Guns: 15.0% (30.0%) chance to deal double DMG with its Main Guns.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2040.png",
"max_level": 10
},
"2051": {
"id": 2051,
"type": 1,
"name": "Double Torpedo",
"desc": "When this ship fires its Torpedoes: 15.0% (30.0%) chance to launch a second wave of Torpedoes.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2050.png",
"max_level": 10
},
"2061": {
"id": 2061,
"type": 1,
"name": "Double Gun",
"desc": "When this ship fires its Main Guns: 15% (25%) chance to fire its Main Guns twice.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2060.png",
"max_level": 10
},
"2071": {
"id": 2071,
"type": 1,
"name": "Cover Fire",
"desc": "Increases this ship's FP by 10% (20%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2070.png",
"max_level": 10
},
"2081": {
"id": 2081,
"type": 1,
"name": "Piercing Shells",
"desc": "Increases this ship's DMG with AP by 15% (25%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2080.png",
"max_level": 10
},
"2091": {
"id": 2091,
"type": 1,
"name": "Magnetic Torpedoes",
"desc": "Every $1s: fires 4 magnetic torpedoes that track the enemy. Torpedo DMG is based on the skill's level.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2090.png",
"max_level": 10
},
"2101": {
"id": 2101,
"type": 1,
"name": "Torpedo Launch",
"desc": "Every $1s: fires 3 torpedoes towards the enemy. Torpedo DMG is based on the skill's level.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2100.png",
"max_level": 10
},
"2111": {
"id": 2111,
"type": 1,
"name": "Disturbance Strategy",
"desc": "Increases this ship's DMG to Bombing Ships, Torpedo Ships, and Cargo Ships by 10% (25%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2110.png",
"max_level": 10
},
"2121": {
"id": 2121,
"type": 1,
"name": "Target Designator: Torpedo",
"desc": "When this ship's Torpedoes hit an enemy: 7.0% (17.0%) chance to increase the DMG the enemy takes from Torpedoes by 20.0% (40.0%) for 8s. Effect does not stack.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2120.png",
"max_level": 10
},
"2131": {
"id": 2131,
"type": 1,
"name": "Aerial Support",
"desc": "When an enemy aircraft is shot down within your fleet's Anti-Air Gun range: increases this ship's FP and AA by 5.0% (25.0%) for 8s. Effect does not stack, but shooting down additional aircraft will refresh its duration.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2130.png",
"max_level": 10
},
"2141": {
"id": 2141,
"type": 2,
"name": "Anti-Destroyer Tactics",
"desc": "Increases this ship's Hit Rate against enemy DDs by 5.0% (20.0%) and decreases the DMG it takes from enemy DD Torpedoes by 5.0% (20.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2140.png",
"max_level": 10
},
"2151": {
"id": 2151,
"type": 3,
"name": "Impartial Destruction",
"desc": "This ship's Torpedo DMG is unaffected by the enemy's Armor Type. Changes this ship's Torpedo DMG modifier to 100.0% (115.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2150.png",
"max_level": 10
},
"2161": {
"id": 2161,
"type": 1,
"name": "Lightning Strikes Twice",
"desc": "10s after the battle starts and with a 15.0% (25.0%) chance every 20s after that: fires a wave of torpedoes. (Which torpedoes are fired are based on this ship's equipped Torpedoes.)",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2160.png",
"max_level": 10
},
"2171": {
"id": 2171,
"type": 2,
"name": "Anti-Air Vigilance",
"desc": "Increases this ship's AA by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2170.png",
"max_level": 10
},
"2181": {
"id": 2181,
"type": 2,
"name": "Comprehensive Defense",
"desc": "At the start of the battle and every 30s after that: increases this ship's AA and ASW by 5% (15%) for 20s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2180.png",
"max_level": 10
},
"2191": {
"id": 2191,
"type": 3,
"name": "Ammunition Command",
"desc": "When the fleet this ship is in is Out of Ammo: decreases the effect of the DMG debuff by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2190.png",
"max_level": 10
},
"2201": {
"id": 2201,
"type": 2,
"name": "Air-Surface Switch",
"desc": "While this ship is equipping the Twin 127mm MK12 Dual Gun: increases this ship's AA by 5% (15%) but decreases its FP by 15% (5%); while not equipping this gun: increases this ship's FP by 5% (15%) but decreases its AA by 15% (5%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/2200.png",
"max_level": 10
},
"3001": {
"id": 3001,
"type": 1,
"name": "Quick Takeoff",
"desc": "When this ship launches an Airstrike: 5% (15%) chance to make the next Airstrike available immediately.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3000.png",
"max_level": 10
},
"3011": {
"id": 3011,
"type": 1,
"name": "Assault Carrier",
"desc": "When this ship launches an Airstrike: 15% (25%) chance for the Airstrike to deal double DMG.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3010.png",
"max_level": 10
},
"3021": {
"id": 3021,
"type": 3,
"name": "Fleet Carrier",
"desc": "When this ship launches an Airstrike: increases the DMG of your Vanguard by 5% (15%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3020.png",
"max_level": 10
},
"3031": {
"id": 3031,
"type": 3,
"name": "Support Carrier",
"desc": "When this ship launches an Airstrike: heals your entire Vanguard for 3.5% (8.0%) of its max HP.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3030.png",
"max_level": 10
},
"3041": {
"id": 3041,
"type": 3,
"name": "Air Support",
"desc": "When this ship launches an Airstrike: increases the AVI of all Carriers in your fleet, excluding this ship, by 5% (15%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3040.png",
"max_level": 10
},
"3051": {
"id": 3051,
"type": 2,
"name": "Air Cover",
"desc": "When this ship launches an Airstrike: decreases the DMG your Vanguard takes by 5% (15%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3050.png",
"max_level": 10
},
"3511": {
"id": 3511,
"type": 3,
"name": "Extra Oxygen",
"desc": "Increases this ship's OXY by 4 (40).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3510.png",
"max_level": 10
},
"3521": {
"id": 3521,
"type": 2,
"name": "Surface Combat",
"desc": "Increases the time this ship can stay in combat after resurfacing by 4.5 (12.0)s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3520.png",
"max_level": 10
},
"3531": {
"id": 3531,
"type": 1,
"name": "Slow Torpedoes",
"desc": "Increases the DMG of this ship's Torpedoes by 4.5% (12.0%) but decreases their Speed by 1.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3530.png",
"max_level": 10
},
"3571": {
"id": 3571,
"type": 1,
"name": "Light Cruiser Hunter",
"desc": "Increases this ship's DMG to CLs by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3570.png",
"max_level": 10
},
"3581": {
"id": 3581,
"type": 1,
"name": "Heavy Cruiser Hunter",
"desc": "Increases this ship's DMG to CAs by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3580.png",
"max_level": 10
},
"3591": {
"id": 3591,
"type": 1,
"name": "Carrier Hunter",
"desc": "Increases this ship's DMG to CVs by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3590.png",
"max_level": 10
},
"3611": {
"id": 3611,
"type": 1,
"name": "Wolf Pack Tactics",
"desc": "For each Iron Blood SS in your fleet: increases this boat's TRP, RLD, and Accuracy by 1.5% (6.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3610.png",
"max_level": 10
},
"3621": {
"id": 3621,
"type": 3,
"name": "Airspace Affirmation",
"desc": "When your Aerial Superiority status is higher than \"AD\": increases this boat's FP, TRP, and RLD by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3620.png",
"max_level": 10
},
"3631": {
"id": 3631,
"type": 3,
"name": "Open Ocean Support",
"desc": "Increases this boat's OXY by 2 (20). Once per sortie, while this boat is afloat: you can call in Submarine Support even if your fleet is outside the Submarine Fleet's ASR.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/3630.png",
"max_level": 10
},
"4001": {
"id": 4001,
"type": 2,
"name": "Defensive Stance",
"desc": "Every 20s: 30% (60%) chance to decrease the DMG this ship takes by 10% (30%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4000.png",
"max_level": 10
},
"4011": {
"id": 4011,
"type": 3,
"name": "Defense Order",
"desc": "Every 20s: 25.0% chance to decrease the DMG your entire fleet takes by 5% (15%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4010.png",
"max_level": 10
},
"4021": {
"id": 4021,
"type": 2,
"name": "Vice Defense",
"desc": "When this ship is attacked: 3.5% (8.0%) chance to decrease the DMG of the incoming attack by 50.0%.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4020.png",
"max_level": 10
},
"4031": {
"id": 4031,
"type": 2,
"name": "Damage Control",
"desc": "Every 25s: this ship heals itself for 5% (15%) HP.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4030.png",
"max_level": 10
},
"4041": {
"id": 4041,
"type": 2,
"name": "Draw Fire",
"desc": "Every 20s: 10% (40%) chance for this ship to absorb 50.0% of the DMG your Vanguard takes for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4040.png",
"max_level": 10
},
"4051": {
"id": 4051,
"type": 2,
"name": "Forward Armor",
"desc": "When this ship is attacked: 15.0% chance to deploy a stationary, forward-facing shield that can block up to 12 shells. Shield lasts for $1s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4050.png",
"max_level": 10
},
"4061": {
"id": 4061,
"type": 2,
"name": "Side Armor",
"desc": "When this ship is attacked: 15.0% chance to deploy 2 stationary shields, one on each side, that can each block up to 6 shells. Shields last for $1s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4060.png",
"max_level": 10
},
"4071": {
"id": 4071,
"type": 2,
"name": "Emergency Maneuvers",
"desc": "Every 20s: 15.0% (30.0%) chance for this ship to evade all enemy attacks for 6s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4070.png",
"max_level": 10
},
"4081": {
"id": 4081,
"type": 2,
"name": "Smokescreen",
"desc": "After the battle begins and 15.0% (30.0%) chance every 15s after that: deploys a smokescreen that increases Evasion Rate by 20.0% (40.0%) for all your ships in it. Does not stack with other smokescreen skills. Smokescreen lasts 5s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4080.png",
"max_level": 10
},
"4091": {
"id": 4091,
"type": 2,
"name": "Anti-Air Mode",
"desc": "When this ship fires its Anti-Air Guns: 25.0% chance to increase this ship's AA by 20.0% (40.0%) but decrease its FP by 40.0% (20.0%) for 3s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4090.png",
"max_level": 10
},
"4101": {
"id": 4101,
"type": 2,
"name": "Smokescreen: Light Cruisers",
"desc": "10s after the battle begins and 20.0% chance every 20s after that: deploys a smokescreen that increases Evasion Rate by 15% (35%) and decreases DMG taken from enemy aircraft by 15% (35%) for all your ships inside it. Smokescreen lasts for 10s, and does not stack with other smokescreens.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4100.png",
"max_level": 10
},
"4111": {
"id": 4111,
"type": 2,
"name": "AP Protection",
"desc": "Decreases the DMG this ship takes from AP by 10% (20%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4110.png",
"max_level": 10
},
"4121": {
"id": 4121,
"type": 2,
"name": "Protective Armor",
"desc": "Decreases the Main Gun DMG taken from enemy DDs and CLs by 5.0% (20.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4120.png",
"max_level": 10
},
"4131": {
"id": 4131,
"type": 2,
"name": "Ramming Prohibited",
"desc": "Decreases the Ramming DMG your Vanguard takes by 15.0% (30.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4130.png",
"max_level": 10
},
"4141": {
"id": 4141,
"type": 2,
"name": "Swift Defender",
"desc": "While this ship is afloat: decreases the DMG your Main Fleet takes by 3.5% (8.0%) and decreases the Torpedo and Main Gun DMG this ship takes from enemy DDs and CLs by 1% (10%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4140.png",
"max_level": 10
},
"4151": {
"id": 4151,
"type": 2,
"name": "Mobility Mastery",
"desc": "Decreases this ship's DMG taken from enemy DD guns and torpedoes by 5.0% (10.0%). Every 20s: increases this ship's Speed by 5 and FP by 5.0% (20.0%) for 10s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4150.png",
"max_level": 10
},
"4161": {
"id": 4161,
"type": 3,
"name": "Supporting Wings",
"desc": "The following buffs are active as long as this ship is afloat: 1) At the start of the battle, increases AVI by 4.5% (12.0%) and RLD by 5.0% (10.0%) for all CVs and CVLs in the same fleet this ship is in, and decreases the load time of this ship's first Airstrike by 10.0% (25.0%). 2) At the start of the battle, increases RLD and AVI by 3.5% (8.0%) for all CVs and CVLs in the fleet this ship is NOT in. Effect does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4160.png",
"max_level": 10
},
"4181": {
"id": 4181,
"type": 2,
"name": "Mobility Mastery",
"desc": "Decreases this ship's DMG taken from enemy DD guns and torpedoes by 5.0% (10.0%). Every 20s: increases this ship's Speed by 5 and FP by 5.0% (20.0%) for 10s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/4180.png",
"max_level": 10
},
"5001": {
"id": 5001,
"type": 3,
"name": "Interference",
"desc": "Every 20s: 25.0% chance to pick one enemy at random (prioritizes humanoid enemies) and decrease their Fire Rate and DMG for $1s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5000.png",
"max_level": 10
},
"5011": {
"id": 5011,
"type": 3,
"name": "Vulnerability Detection",
"desc": "Every 20s: 25.0% chance to pick one enemy at random (prioritizes humanoid enemies) and increase the DMG they take by 20.0% for $1s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5010.png",
"max_level": 10
},
"5021": {
"id": 5021,
"type": 2,
"name": "Carrier Escort",
"desc": "While this ship is afloat: decreases the DMG all Carriers in your fleet take by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5020.png",
"max_level": 10
},
"5031": {
"id": 5031,
"type": 2,
"name": "Battleship Escort",
"desc": "While this ship is afloat: decreases the DMG all BCs and BBs in your fleet take by 5% (15%). Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5030.png",
"max_level": 10
},
"5041": {
"id": 5041,
"type": 3,
"name": "Flares",
"desc": "10s after the battle begins and 20.0% (40.0%) chance every 20s after that: throws a flare that decreases the Evasion Rate of all enemies in its range by 25.0%. Flare lasts 10s. Prioritizes throwing flare at the enemy closest to this ship.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5040.png",
"max_level": 10
},
"5051": {
"id": 5051,
"type": 3,
"name": "Flagship Cover",
"desc": "While this ship is afloat: decreases the DMG your Flagship takes by 15% (25%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5050.png",
"max_level": 10
},
"5061": {
"id": 5061,
"type": 3,
"name": "Destroyer Squadron",
"desc": "If your Vanguard consists of only this ship and DDs: increases this ship's Speed by 4 and increases the DMG it deals to enemy DDs and CLs by 5.0% (20.0%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5060.png",
"max_level": 10
},
"5071": {
"id": 5071,
"type": 2,
"name": "Chevalier's Bouclier",
"desc": "Every 20s, if your Vanguard consists of only Iris Libre and/or Vichya Dominion ships: 50.0% chance to decrease the DMG your fleet takes by 10.0% (30.0%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5070.png",
"max_level": 10
},
"5081": {
"id": 5081,
"type": 1,
"name": "Chevalier's Sabre",
"desc": "Every 20s, if your Vanguard consists of only Iris Libre and/or Vichya Dominion ships: 50.0% chance to increase the DMG your fleet deals by 5.0% (25.0%) for 8s. Does not stack with the same skill.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5080.png",
"max_level": 10
},
"5101": {
"id": 5101,
"type": 3,
"name": "Rapid Response",
"desc": "At the start of the battle: increases this ship's FP and TRP by 9% (24.0%); FP and TRP decreases by 3.0% (8.0%) every 12s afterwards, stopping after 3 decreases.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5100.png",
"max_level": 10
},
"5111": {
"id": 5111,
"type": 3,
"name": "One For All",
"desc": "While this ship is in the first or last position in the Main Fleet: increases RLD by 5% (15%) for all CVs and CVLs in your fleet (excluding this ship) and increases AA by 20 (50) for your Main Fleet.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/5110.png",
"max_level": 10
},
"10010": {
"id": 10010,
"type": 2,
"name": "Baptismal Flames",
"desc": "Once per battle, when this ship's HP falls below 20.0%: restores 15% (25%) of its max HP.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10010.png",
"max_level": 10
},
"10020": {
"id": 10020,
"type": 2,
"name": "Aquatic Vortex",
"desc": "Every 10s: 20.0% (40.0%) chance to increase this ship's EVA by 30.0% (60.0%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10020.png",
"max_level": 10
},
"10030": {
"id": 10030,
"type": 3,
"name": "Sister's Temperament",
"desc": "Increases the FP and EVA of all Fletcher-class DDs in your fleet by 10% (30%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10030.png",
"max_level": 10
},
"10040": {
"id": 10040,
"type": 3,
"name": "31-Knot Burke",
"desc": "When this ship fires its Main Guns: 4.0% chance to increase the Speed of your entire fleet and increase the EVA of your Vanguard by 20.0% (40.0%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10040.png",
"max_level": 10
},
"10050": {
"id": 10050,
"type": 2,
"name": "Operation Rainbow",
"desc": "When this ship takes DMG: 15.0% chance to grant 100% Evasion Rate to your entire Vanguard for $1s. Has a 20s cooldown when activated. Starts the battle on cooldown.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10050.png",
"max_level": 10
},
"10060": {
"id": 10060,
"type": 2,
"name": "Red Phoenix",
"desc": "Once per battle, when this ship's HP falls below 20.0%: restores 15% (25%) of its max HP and increases its FP by 30.0% for 15s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10060.png",
"max_level": 10
},
"10070": {
"id": 10070,
"type": 3,
"name": "Radar Scan",
"desc": "Every 20s: 30.0% (60.0%) chance to apply a debuff to all onscreen enemies, increasing the DMG they take by 20.0% (40.0%) for 10s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10070.png",
"max_level": 10
},
"10080": {
"id": 10080,
"type": 2,
"name": "Martyr",
"desc": "When this ship sinks: heals all ships in your fleet for 15% (25%) of their max HP.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10080.png",
"max_level": 10
},
"10090": {
"id": 10090,
"type": 3,
"name": "I Am No. 1!",
"desc": "When this ship fires its Anti-Air Guns: 15.0% chance to increase the AA of your entire fleet by 30% (50%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10090.png",
"max_level": 10
},
"10100": {
"id": 10100,
"type": 2,
"name": "Ghost of Java Coast",
"desc": "When this ship fires its Main Guns: 20.0% chance to increase this ship's EVA by 60% (100%) for 15s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10100.png",
"max_level": 10
},
"10110": {
"id": 10110,
"type": 1,
"name": "Best Sister",
"desc": "When sortied with Indianapolis: increases this ship's FP, AA, and RLD by 5% (15%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10110.png",
"max_level": 10
},
"10120": {
"id": 10120,
"type": 2,
"name": "Pandora's Box",
"desc": "Every 30s: deploys 2 rotating shields that can each block up to 8 shells. Shields last for $1s. If destroyed, shields deal a small amount of DMG to nearby enemies.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10120.png",
"max_level": 10
},
"10130": {
"id": 10130,
"type": 1,
"name": "Sister Penn",
"desc": "Every 20s: 30.0% (60.0%) chance to fire a special barrage. Barrage DMG is based on the skill's level.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10130.png",
"max_level": 10
},
"10140": {
"id": 10140,
"type": 3,
"name": "Eagle's Tears",
"desc": "When this ship fires a Salvo: 50.0% chance to heal your entire Vanguard for 4% (10%) of its max HP.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10140.png",
"max_level": 10
},
"10150": {
"id": 10150,
"type": 3,
"name": "Coercion",
"desc": "Every 30s: decreases the DMG all enemies deal by 5% (15%) for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10150.png",
"max_level": 10
},
"10160": {
"id": 10160,
"type": 2,
"name": "The Strongest Shield",
"desc": "15s after the beginning of battle and every 25s afterwards: this ship absorbs 50.0% of the DMG your Main Fleet takes for 10s, then heals HP equal to 20.0% (50.0%) of the DMG taken. Additionally increases FP by 4.0% (10.0%) until the end of battle, stacking up to 3 times.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10160.png",
"max_level": 10
},
"10170": {
"id": 10170,
"type": 3,
"name": "First-Generation Carrier",
"desc": "Increases the EXP your Carriers earn by 5% (15%) (effect can be stacked up to 2 times with same skill).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10170.png",
"max_level": 10
},
"10180": {
"id": 10180,
"type": 1,
"name": "Artillery Cover",
"desc": "Every $1s: provides covering fire with CA-caliber Main Guns. Covering fire DMG is based on the skill's level.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10180.png",
"max_level": 10
},
"10190": {
"id": 10190,
"type": 2,
"name": "Vengeance",
"desc": "Once per battle, when this ship's HP falls below 20.0%: recovers 15.0% (25.0%) of its max HP. Additionally, each time this ship takes DMG: launches a special airstrike. Special airstrike has a 20s cooldown and its DMG is based on the skill's level.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10190.png",
"max_level": 10
},
"10200": {
"id": 10200,
"type": 1,
"name": "Lucky E",
"desc": "When this ship launches an Airstrike: 40.0% (70.0%) chance for the Airstrike to deal double DMG and for this ship to evade all enemy attacks for 8s.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10200.png",
"max_level": 10
},
"10210": {
"id": 10210,
"type": 1,
"name": "Doolittle Airstrike",
"desc": "When this ship launches an Airstrike: 30.0% (60.0%) chance to launch an additional B-25 airstrike.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10210.png",
"max_level": 10
},
"10220": {
"id": 10220,
"type": 2,
"name": "Damage Control",
"desc": "Once per battle, when one of your ships' HP falls below 20.0%: heals them for 10% (20%) of their max HP. If the recipient is Enterprise, the healing's potency is increased by 50.0%.",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10220.png",
"max_level": 10
},
"10230": {
"id": 10230,
"type": 3,
"name": "Prototype Destroyer",
"desc": "Increases the EXP that your DDs earn by 6% (18%) (effect can be stacked up to 2 times with same skill).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10230.png",
"max_level": 10
},
"10240": {
"id": 10240,
"type": 1,
"name": "Meteor Slam",
"desc": "Increases your Vanguard's Ramming DMG by 50% (100%) and decreases the Ramming DMG it takes by 20% (30%).",
"icon": "https://raw.githubusercontent.com/Fernando2603/AzurLane/main/images/skills/10240.png",
"max_level": 10