-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathscrapedpatchdata.json
2079 lines (2079 loc) · 70 KB
/
scrapedpatchdata.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
{
"8.13": [
{
"changes": [
{
"ATTACK SPEED (AT MAX STACKS)": {
"after": "30-50%",
"before": "20-40%"
},
"ON-HIT BASE DAMAGE (AT MAX STACKS)": {
"after": "4-48 (at levels 1-18)",
"before": "10-66 (at levels 1-18)"
},
"ON-HIT RATIO (AT MAX STACKS)": {
"after": "16% bonus attack damage",
"before": "8-16% total attack damage"
},
"name": "Passive - Ionian Fervor"
},
{
"MAXIMUM BASE DAMAGE": {
"after": "20/50/80/110/140",
"before": "20/60/100/140/180"
},
"MAXIMUM DAMAGE RATIO (AD)": {
"after": "1.0 total attack damage",
"before": "1.2 total attack damage"
},
"MINIMUM BASE DAMAGE": {
"after": "10/25/40/55/70",
"before": "10/30/50/70/90"
},
"MINIMUM DAMAGE RATIO (AD)": {
"after": "0.5 total attack damage",
"before": "0.6 total attack damage"
},
"name": "W - Defiant Dance"
},
{
"MARK DURATION": {
"after": "5 seconds",
"before": "6 seconds"
},
"name": "E - Flawless Duet"
},
{
"MARK DURATION": {
"after": "5 seconds",
"before": "6 seconds"
},
"name": "R - Vanguard's Edge"
}
],
"name": "Irelia",
"overview": "Passive on-hit damage decreased. Passive attack speed increased. W damage decreased at lower stacks."
},
{
"changes": [
{
"ATTACK DAMAGE GROWTH": {
"after": "2.75",
"before": "3.11"
},
"name": "Base stats"
},
{
"DAMAGE AMPLIFICATION TO MINIONS": {
"after": "200%",
"before": "400%"
},
"name": "R - The Culling"
}
],
"name": "Lucian",
"overview": "Attack damage growth decreased. R damage amplification to minions decreased."
},
{
"changes": [
{
"ARMOR GROWTH": {
"after": "5",
"before": "4"
},
"HEALTH GROWTH": {
"after": "100",
"before": "110"
},
"MAGIC RESIST GROWTH": {
"after": "2",
"before": "1.25"
},
"name": "Base stats"
},
{
"BASE DAMAGE": {
"after": "95/125/155/185/215",
"before": "95/130/165/200/235"
},
"DAMAGE RATIO": {
"after": "1.0 bonus attack damage",
"before": "0.8 bonus attack damage"
},
"name": "E - Phantom Undertow"
},
{
"BASE DAMAGE": {
"after": "200/250/300/350/400/450/475/500/525/550/575/590/605 (at levels 6-18)",
"before": "190/240/290/340/390/440/475/510/545/580/615/635/655 (at levels 6-18)"
},
"DAMAGE RATIO": {
"after": "0.8 bonus attack damage",
"before": "0.6 bonus attack damage"
},
"name": "R - Death From Below"
}
],
"name": "Pyke",
"overview": "Health growth decreased. Armor and magic resist growth increased. E and R base damage decreased at later ranks. E and R damage ratio increased."
},
{
"changes": [
{
"DAMAGE RATIO PER SPEAR after the first": {
"after": "(+20 / 23.75 / 27.5 / 31.25 / 35% total attack damage)",
"before": "(+20 / 22.5 / 25 / 27.5 / 30% total attack damage)"
},
"name": "E - Rend"
}
],
"name": "Kalista",
"overview": "E damage ratio increased."
},
{
"changes": [
{
"COST": {
"after": "1 mana",
"before": "0 mana"
},
"DAMAGE RATIO": {
"after": "0.8 ability power",
"before": "0.7 ability power"
},
"name": "W - Nether Blade"
},
{
"DAMAGE RATIO": {
"after": "0.8 ability power",
"before": "0.7 ability power"
},
"name": "E - Force Pulse"
},
{
"DAMAGE RATIO": {
"after": "0.4 ability power",
"before": "0.3 ability power"
},
"name": "R - Riftwalk"
}
],
"name": "Kassadin",
"overview": "W now costs mana and can stack Tear. W, E, and R damage ratios increased."
},
{
"changes": [
{
"COOLDOWN": {
"after": "7 seconds",
"before": "9 seconds"
},
"name": "W - Command: Dissonance"
}
],
"name": "Orianna",
"overview": "W cooldown decreased."
},
{
"changes": [
{
"HEALTH REGEN": {
"after": "7.0 health per 5 seconds",
"before": "5.5 health per 5 seconds"
},
"name": "Base stats"
},
{
"COOLDOWN": {
"after": "120/90/60 seconds",
"before": "130/95/60 seconds"
},
"name": "R - Blade of the Exile"
}
],
"name": "Riven",
"overview": "Health regen increased. R cooldown decreased at early ranks."
},
{
"changes": [
{
"4 STACK DAMAGE RATIO": {
"after": "1.10/1.43/1.76/2.09/2.42 bonus attack damage",
"before": "1.10/1.32/1.54/1.76/1.98 bonus attack damage"
},
"name": "E - Explosive Charge"
}
],
"name": "Tristana",
"overview": "E damage ratio increased."
},
{
"changes": [
{
"COOLDOWN": {
"after": "13/11.5/10/8.5/7 seconds",
"before": "13/12/11/10/9 seconds"
},
"name": "E - Spinning Slash"
}
],
"name": "Tryndamere",
"overview": "E cooldown decreased at later ranks."
},
{
"changes": [
{
"MAXIMUM DAMAGE RATIO": {
"after": "2.1 bonus attack damage",
"before": "1.5 bonus attack damage"
},
"name": "E - Contaminate"
}
],
"name": "Twitch",
"overview": "E damage ratio increased."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "60/95/130/165/200",
"before": "75/120/175/210/255"
},
"name": "E - Hookshot"
}
],
"name": "Camille",
"overview": "E base damage decreased."
},
{
"changes": [
{
"ATTACK DAMAGE": {
"after": "30/45/60/75/90",
"before": "30/50/70/90/110"
},
"name": "E - Masochism"
}
],
"name": "Dr. Mundo",
"overview": "E attack damage reduced at later ranks."
},
{
"changes": [
{
"COST": {
"after": "50/55/60/65/70 mana",
"before": "70/75/80/95/90 mana"
},
"name": "Q - Alpha Strike",
"removedMINION SLAYER": {
"removed": "No longer deals bonus damage to minions"
}
}
],
"name": "Master Yi",
"overview": "Q bonus damage to minions removed. Q mana cost decreased."
},
{
"changes": [
{
"BASE HEALTH REGEN": {
"after": "7 health per 5 seconds",
"before": "9 health per 5 seconds"
},
"name": "Base stats"
},
{
"FLAME LENGTH": {
"after": "500",
"before": "550"
},
"FLAME WIDTH": {
"after": "175",
"before": "225"
},
"name": "W - Bellows Breath"
}
],
"name": "Ornn",
"overview": "Base health regen decreased. W size decreased."
},
{
"changes": [
{
"DAMAGE RATIO FULLY CHARGED": {
"after": "0.8 ability power",
"before": "1.0 ability power"
},
"name": "E - Tides of Blood"
}
],
"name": "Vladimir",
"overview": "E damage decreased when charged."
},
{
"changes": [
{
"MOVEMENT SPEED DURATION": {
"after": "2/2.25/2.5/2.75/3 seconds",
"before": "2/2.5/3/3.5/4 seconds"
},
"TOTAL DAMAGE RATIO": {
"after": "0.65 ability power",
"before": "0.75 ability power"
},
"name": "W - Spell Thief"
}
],
"name": "Zoe",
"overview": "W damage ratio decreased. W movement speed duration decreased at late ranks."
}
],
"8.14": [
{
"changes": [
{
"HEALTH": {
"after": "581",
"before": "531"
},
"HEALTH GROWTH": {
"after": "84",
"before": "88"
},
"name": "Base Stats"
}
],
"name": "Jinx",
"overview": "Base health increased. Health growth decreased."
},
{
"changes": [
{
"BASE ARMOR": {
"after": "26",
"before": "20.4"
},
"MANA REGEN": {
"after": "11.5 mana per 5 seconds",
"before": "8.5 mana per 5 seconds"
},
"MANA REGEN GROWTH": {
"after": "0.5 mana per 5 seconds",
"before": "0.8 mana per 5 seconds"
},
"name": "Base stats"
},
{
"SOULFLARE DETONATION DAMAGE": {
"after": "35/140/245/350 (at Mantra levels 1/2/3/4)",
"before": "50/150/250/350 (at Mantra levels 1/2/3/4)"
},
"SPLASH RADIUS": {
"after": "280",
"before": "250"
},
"name": "Q - Inner Flame"
}
],
"name": "Karma",
"overview": "Base mana regen increased; growth decreased. Base armor increased; Q splash radius increased. Empowered detonation damage decreased at early ranks."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "30/50/70/90/110",
"before": "30/47.5/65/82.5/100"
},
"DAMAGE RATIO": {
"after": "0.45/0.525/0.6/0.675/0.75 total attack damage",
"before": "0.45/0.50/0.55/0.6/0.65 total attack damage"
},
"name": "Q - Decimating Smash"
}
],
"name": "Sion",
"overview": "Q base damage and damage ratio increased at later ranks."
},
{
"changes": [
{
"HEALTH": {
"after": "582",
"before": "542"
},
"HEALTH GROWTH": {
"after": "84",
"before": "87"
},
"name": "Base Stats"
}
],
"name": "Twitch",
"overview": "Base health increased. Health growth decreased."
},
{
"changes": [
{
"CHARM DURATION": {
"after": "1.4/1.55/1.7/1.85/2 seconds",
"before": "1/1.25/1.5/1.75/2 seconds"
},
"COST": {
"after": "70 mana",
"before": "85 mana"
},
"name": "E - Charm"
}
],
"name": "Ahri",
"overview": "E mana cost decreased. E charm duration increased early."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "75/125/175/225/275",
"before": "75/120/165/210/255"
},
"DAMAGE RATIO": {
"after": "0.8 ability power",
"before": "0.7 ability power"
},
"name": "Q - Noxious Blast"
}
],
"name": "Cassiopeia",
"overview": "Q base damage increased late. Q damage ratio increased."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "120/170/220/270/320",
"before": "80/140/200/260/320"
},
"RESISTANCE REDUCTION PER STACK": {
"after": "1/1.375/1.75/2.125/2.5",
"before": "0.5/1/1.5/2/2.5"
},
"name": "E - Gatling Gun"
}
],
"name": "Corki",
"overview": "E base damage and resistance reduction per stack increased."
},
{
"changes": [
{
"HEALTH GROWTH": {
"after": "93",
"before": "85"
},
"name": "Base Stats"
}
],
"name": "Elise",
"overview": "Health growth increased."
},
{
"changes": [
{
"LIFESTEAL": {
"after": "12/18/24% (at levels 1/7/13)",
"before": "10/15/20% (at levels 1/7/13)"
},
"name": "Passive - Soul Eater"
}
],
"name": "Nasus",
"overview": "Passive lifesteal increased early."
},
{
"changes": [
{
"BONUS ATTACK SPEED AT LEVEL 1": {
"after": "8%",
"before": "0%"
},
"name": "Base stats"
},
{
"BASE DAMAGE": {
"after": "60/85/110/135/160",
"before": "50/75/100/125/150"
},
"name": "W - Aegis of Zeonia"
}
],
"name": "Pantheon",
"overview": "Bonus attack speed at level 1 added. W base damage increased."
},
{
"changes": [
{
"DAMAGE RATIO": {
"after": "0.5 bonus attack damage",
"before": "0.4 bonus attack damage"
},
"name": "Q - Queen's Wrath"
},
{
"DAMAGE RATIO": {
"after": "0.5 bonus attack damage",
"before": "0.4 bonus attack damage"
},
"name": "Q - Prey Seeker"
},
{
"DAMAGE RATIO": {
"after": "2.0 bonus attack damage",
"before": "1.85 bonus attack damage"
},
"name": "R - Void Rush"
}
],
"name": "Rek'Sai",
"overview": "Q and R damage ratios increased."
},
{
"changes": [
{
"COOLDOWN": {
"after": "7 seconds",
"before": "9 seconds"
},
"name": "Q - Boomerang Blade"
}
],
"name": "Sivir",
"overview": "Q cooldown decreased."
},
{
"changes": [
{
"DAMAGE RATIO": {
"after": "0.8 ability power",
"before": "0.6 ability power"
},
"name": "Q - Plasma Fission"
}
],
"name": "Vel'Koz",
"overview": "Q damage ratio increased."
},
{
"changes": [
{
"MAXIMUM HEALTH DAMAGE": {
"after": "4/6.5/9/11.5/14% target's maximum health",
"before": "4/6/8/10/12% target's maximum health"
},
"name": "W - Silver Bolts"
}
],
"name": "Vayne",
"overview": "W damage increased late."
},
{
"changes": [
{
"BASE ATTACK SPEED": {
"after": "0.644",
"before": "0.625"
},
"name": "Base stats"
},
{
"COOLDOWN": {
"after": "110/85/60 seconds",
"before": "130/100/70 seconds"
},
"name": "R - Assault and Battery"
}
],
"name": "Vi",
"overview": "Base attack speed increased. R cooldown decreased."
},
{
"changes": [
{
"CAST RANGE": {
"after": "800",
"before": "700"
},
"name": "W - Gravity Field"
}
],
"name": "Viktor",
"overview": "W cast range increased."
},
{
"changes": [
{
"HEALTH COST REFUND ON HIT": {
"after": "40% (still doubled on kill)",
"before": "50%"
},
"name": "Q - Infected Cleaver"
}
],
"name": "Dr. Mundo",
"overview": "Q health refund decreased."
},
{
"changes": [
{
"COOLDOWN": {
"after": "12/11/10/9/8 seconds",
"before": "12/10.5/9/7.5/6 seconds"
},
"name": "Q - Gleaming Quill"
},
{
"COOLDOWN": {
"after": "130/110/90 seconds",
"before": "120/100/80 seconds"
},
"name": "R - The Quickness"
}
],
"name": "Rakan",
"overview": "Q cooldown increased late. R cooldown increased."
},
{
"changes": [
{
"MAX STUN DURATION": {
"after": "1.5 seconds",
"before": "2 seconds"
},
"name": "R - Glacial Prison"
}
],
"name": "Sejuani",
"overview": "R stun duration decreased."
},
{
"changes": [
{
"SLOW": {
"after": "15/20/25/30/35%",
"before": "35%"
},
"name": "Q - Twilight Assault"
}
],
"name": "Shen",
"overview": "Q slow decreased early."
},
{
"changes": [
{
"MAX EXPLOSION DAMAGE RATIO": {
"after": "1.05 ability power",
"before": "1.35 ability power"
},
"name": "R - Demon Flare"
}
],
"name": "Swain",
"overview": "R explosion damage ratio decreased."
},
{
"changes": [
{
"INCOMING DAMAGE": {
"after": "70/85/100/115/130",
"before": "70/95/120/145/170"
},
"name": "W - Rake"
}
],
"name": "Talon",
"overview": "W return damage decreased late."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "65/100/135/170/205",
"before": "65/110/155/200/245"
},
"name": "E - Nimbus Strike"
}
],
"name": "Wukong",
"overview": "E base damage decreased late."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "75/105/135/165/195",
"before": "75/120/165/210/255"
},
"DAMAGE RATIO": {
"after": "0.55 ability power",
"before": "0.65 ability power"
},
"name": "W - Spell Thief"
}
],
"name": "Zoe",
"overview": "W base damage decreased late. W damage ratio decreased."
}
],
"8.15": [
{
"changes": [
{
"BASE DAMAGE PER HIT": {
"after": "60/80/100/120/140",
"before": "65/85/105/125/145"
},
"COST": {
"after": "70/75/80/85/90 mana",
"before": "50/60/70/80/90 mana"
},
"name": "E - Dark Wind"
}
],
"name": "Fiddlesticks",
"overview": "E cost increased at early ranks. E base damage decreased."
},
{
"changes": [
{
"ACTIVE BASE DAMAGE": {
"after": "50/70/90/110/130",
"before": "40/50/60/70/80"
},
"ACTIVE DAMAGE RATIO": {
"after": "0.6 ability power",
"before": "0.4 ability power"
},
"ON-HIT DAMAGE RATIO": {
"after": "0.4 ability power",
"before": "0.3 ability power"
},
"name": "W - Seastone Trident"
},
{
"CHOMPER DAMAGE RATIO": {
"after": "1.1 ability power",
"before": "0.9 ability power"
},
"GIGALODON DAMAGE RATIO": {
"after": "1.3 ability power",
"before": "1.2 ability power"
},
"GUPPY DAMAGE RATIO": {
"after": "0.9 ability power",
"before": "0.6 ability power"
},
"name": "R - Chum the Waters"
}
],
"name": "Fizz",
"overview": "W active base damage increased. W active and on-hit damage ratios increased. R ability power ratios increased, increased less for larger sharks."
},
{
"changes": [
{
"ATTACK DAMAGE": {
"after": "63",
"before": "60"
},
"HEALTH": {
"after": "580",
"before": "550"
},
"name": "Base stats"
},
{
"DAMAGE PER STACK": {
"after": "4-17 (at levels 1-18)",
"before": "1-12 (at levels 1-18)"
},
"name": "Passive - Ionian Fervor"
},
{
"BASE DAMAGE": {
"after": "5/25/45/65/85",
"before": "10/30/50/70/90"
},
"DAMAGE RATIO": {
"after": "0.6 total attack damage",
"before": "0.7 total attack damage"
},
"RANGE": {
"after": "600",
"before": "625"
},
"name": "Q - Bladesurge"
},
{
"DAMAGE REDUCTION": {
"after": "50%",
"before": "45/50/55/60/65%"
},
"name": "W - Defiant Dance"
},
{
"BASE DAMAGE": {
"after": "70/110/150/190/230",
"before": "80/120/160/200/240"
},
"RANGE": {
"after": "850",
"before": "900"
},
"name": "E - Flawless Duet",
"removedMONSTER REDUCTION": {
"removed": "No longer deals 50% damage to monsters"
}
},
{
"RANGE": {
"after": "1000",
"before": "1050"
},
"name": "R - Vanguard's Edge"
}
],
"name": "Irelia",
"overview": "Attack damage increased. Health increased. Passive damage increased. Q range, base damage, and damage ratio decreased. E range and base damage decreased. R range decreased."
},
{
"changes": [
{
"WOLF BONUS ATTACK SPEED": {
"after": "25% bonus attack speed",
"before": "50% bonus attack speed"
},
"name": "W - Wolf's Frenzy"
},
{
"COOLDOWN": {
"after": "180/150/120 seconds",
"before": "160/130/100 seconds"
},
"name": "R - Lamb's Respite"
}
],
"name": "Kindred",
"overview": "W attack speed scaling (for Wolf) decreased. R cooldown increased."
},
{
"changes": [
{
"MANA REGEN": {
"after": "11 mana per 5 seconds",
"before": "15 mana per 5 seconds"
},
"name": "Base Stats"
},
{
"COST": {
"after": "80 mana",
"before": "50 mana"
},
"name": "E - Black Shield"
}
],
"name": "Morgana",
"overview": "Base mana regen decreased. Black Shield cost increased."
},
{
"changes": [
{
"BONUS ATTACK SPEED": {
"after": "55/65/75/85/95%",
"before": "40/50/60/70/80%"
},
"name": "W - Vicious Strikes"
}
],
"name": "Olaf",
"overview": "W bonus attack speed increased."
},
{
"changes": [
{
"ARMOR": {
"after": "28",
"before": "32"
},
"name": "Base Stats"
},
{
"BASE DAMAGE": {
"after": "10-95 (at levels 1-18)",
"before": "15-100 (at levels 1-18)"
},
"name": "Passive - Harrier"
}
],
"name": "Quinn",
"overview": "Armor decreased. Passive damage decreased."
},
{
"changes": [
{
"BASE DAMAGE": {
"after": "70/110/150/190/230",
"before": "50/95/140/185/230"
},
"name": "Q - Dark Sphere"
}
],
"name": "Syndra",
"overview": "Q base damage increased."
},
{
"changes": [
{
"COOLDOWN": {
"after": "22/19.5/17/14.5/12 seconds",
"before": "22/20.5/19/17.5/16 seconds"
},
"name": "W - Dark Passage"
},
{
"MAXIMUM ATTACK DAMAGE CONTRIBUTION": {
"after": "100/125/150/175/200%",
"before": "80/110/140/170/200%"
},
"name": "E - Flay"
}
],
"name": "Thresh",
"overview": "W cooldown decreased at later ranks. E maximum attack damage contribution increased at early ranks."
}
],
"8.16": [
{
"changes": [
{
"CHARGES WHEN LEARNED": {
"after": "1",
"before": "2"
},
"PASSIVE HEALING AGAINST NON-CHAMPIONS": {
"after": "15%",
"before": "33%"
},
"name": "E - Umbral Dash"
},
{
"COOLDOWN": {
"after": "160/140/120 seconds",
"before": "140/130/120 seconds"
},
"name": "R - World Ender"
}
],
"name": "Aatrox",
"overview": "E passive healing against non-champions decreased. Charges granted on learning E decreased. R cooldown increased at early ranks."
},
{
"changes": [
{
"ACTIVE DAMAGE RATIO": {
"after": "0.5 ability power",
"before": "0.6 ability power"
},
"ON-HIT DAMAGE RATIO": {
"after": "0.35 ability power",
"before": "0.4 ability power"
},
"name": "W - Seastone Trident"
},
{
"CHOMPER DAMAGE RATIO": {
"after": "1.0 ability power",
"before": "1.1 ability power"
},
"GIGALODON DAMAGE RATIO": {