-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChampData.json
1185 lines (1185 loc) · 28.6 KB
/
ChampData.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
{
"Aatrox": {
"P": "Deathbringer Stance",
"Q": "The Darkin Blade",
"W": "Infernal Chains",
"E": "Umbral Dash",
"R": "World Ender"
},
"Ahri": {
"P": "Essence Theft",
"Q": "Orb of Deception",
"W": "Fox-Fire",
"E": "Charm",
"R": "Spirit Rush"
},
"Akali": {
"P": "Assassin's Mark",
"Q": "Five Point Strike",
"W": "Twilight Shroud",
"E": "Shuriken Flip",
"R": "Perfect Execution"
},
"Akshan": {
"P": "Dirty Fighting",
"Q": "Avengerang",
"W": "Going Rogue",
"E": "Heroic Swing",
"R": "Comeuppance"
},
"Alistar": {
"P": "Triumphant Roar",
"Q": "Pulverize",
"W": "Headbutt",
"E": "Trample",
"R": "Unbreakable Will"
},
"Ambessa": {
"P": "Drakehound's Step",
"Q": "Cunning Sweep / Sundering Slam",
"W": "Repudiation",
"E": "Lacerate",
"R": "Public Execution"
},
"Amumu": {
"P": "Cursed Touch",
"Q": "Bandage Toss",
"W": "Despair",
"E": "Tantrum",
"R": "Curse of the Sad Mummy"
},
"Anivia": {
"P": "Rebirth",
"Q": "Flash Frost",
"W": "Crystallize",
"E": "Frostbite",
"R": "Glacial Storm"
},
"Annie": {
"P": "Pyromania",
"Q": "Disintegrate",
"W": "Incinerate",
"E": "Molten Shield",
"R": "Summon: Tibbers"
},
"Aphelios": {
"P": "The Hitman and the Seer",
"Q": "Weapon Abilites",
"W": "Phase",
"E": "Weapon Queue System",
"R": "Moonlight Vigil"
},
"Ashe": {
"P": "Frost Shot",
"Q": "Ranger's Focus",
"W": "Volley",
"E": "Hawkshot",
"R": "Enchanted Crystal Arrow"
},
"AurelionSol": {
"P": "Cosmic Creator",
"Q": "Breath of Light",
"W": "Astral Flight",
"E": "Singularity",
"R": "Falling Star / The Skies Descend"
},
"Aurora": {
"P": "Spirit Abjuration",
"Q": "Twofold Hex",
"W": "Across the Veil",
"E": "The Weirding",
"R": "Between Worlds"
},
"Azir": {
"P": "Shurima's Legacy",
"Q": "Conquering Sands",
"W": "Arise!",
"E": "Shifting Sands",
"R": "Emperor's Divide"
},
"Bard": {
"P": "Traveler's Call",
"Q": "Cosmic Binding",
"W": "Caretaker's Shrine",
"E": "Magical Journey",
"R": "Tempered Fate"
},
"Belveth": {
"P": "Death in Lavender ",
"Q": "Void Surge",
"W": "Above and Below",
"E": "Royal Maelstrom",
"R": "Endless Banquet"
},
"Blitzcrank": {
"P": "Mana Barrier",
"Q": "Rocket Grab",
"W": "Overdrive",
"E": "Power Fist",
"R": "Static Field"
},
"Brand": {
"P": "Blaze",
"Q": "Sear",
"W": "Pillar of Flame",
"E": "Conflagration",
"R": "Pyroclasm"
},
"Braum": {
"P": "Concussive Blows",
"Q": "Winter's Bite",
"W": "Stand Behind Me",
"E": "Unbreakable",
"R": "Glacial Fissure"
},
"Briar": {
"P": "Crimson Curse",
"Q": "Head Rush",
"W": "Blood Frenzy / Snack Attack",
"E": "Chilling Scream",
"R": "Certain Death"
},
"Caitlyn": {
"P": "Headshot",
"Q": "Piltover Peacemaker",
"W": "Yordle Snap Trap",
"E": "90 Caliber Net",
"R": "Ace in the Hole"
},
"Camille": {
"P": "Adaptive Defenses",
"Q": "Precision Protocol",
"W": "Tactical Sweep",
"E": "Hookshot",
"R": "The Hextech Ultimatum"
},
"Cassiopeia": {
"P": "Serpentine Grace",
"Q": "Noxious Blast",
"W": "Miasma",
"E": "Twin Fang",
"R": "Petrifying Gaze"
},
"Chogath": {
"P": "Carnivore",
"Q": "Rupture",
"W": "Feral Scream",
"E": "Vorpal Spikes",
"R": "Feast"
},
"Corki": {
"P": "Hextech Munitions",
"Q": "Phosphorus Bomb",
"W": "Valkyrie",
"E": "Gatling Gun",
"R": "Missile Barrage"
},
"Darius": {
"P": "Hemorrhage",
"Q": "Decimate",
"W": "Crippling Strike",
"E": "Apprehend",
"R": "Noxian Guillotine"
},
"Diana": {
"P": "Moonsilver Blade",
"Q": "Crescent Strike",
"W": "Pale Cascade",
"E": "Lunar Rush",
"R": "Moonfall"
},
"DrMundo": {
"P": "Goes Where He Pleases",
"Q": "Infected Bonesaw",
"W": "Heart Zapper",
"E": "Blunt Force Trauma",
"R": "Maximum Dosage"
},
"Draven": {
"P": "League of Draven",
"Q": "Spinning Axe",
"W": "Blood Rush",
"E": "Stand Aside",
"R": "Whirling Death"
},
"Ekko": {
"P": "Z-Drive Resonance",
"Q": "Timewinder",
"W": "Parallel Convergence",
"E": "Phase Dive",
"R": "Chronobreak"
},
"Elise": {
"P": "Spider Queen",
"Q": "Neurotoxin / Venomous Bite",
"W": "Volatile Spiderling / Skittering Frenzy",
"E": "Cocoon / Rappel",
"R": "Spider Form"
},
"Evelynn": {
"P": "Demon Shade",
"Q": "Hate Spike",
"W": "Allure",
"E": "Whiplash",
"R": "Last Caress"
},
"Ezreal": {
"P": "Rising Spell Force",
"Q": "Mystic Shot",
"W": "Essence Flux",
"E": "Arcane Shift",
"R": "Trueshot Barrage"
},
"Fiddlesticks": {
"P": "A Harmless Scarecrow",
"Q": "Terrify",
"W": "Bountiful Harvest",
"E": "Reap",
"R": "Crowstorm"
},
"Fiora": {
"P": "Duelist's Dance",
"Q": "Lunge",
"W": "Riposte",
"E": "Bladework",
"R": "Grand Challenge"
},
"Fizz": {
"P": "Nimble Fighter",
"Q": "Urchin Strike",
"W": "Seastone Trident",
"E": "Playful / Trickster",
"R": "Chum the Waters"
},
"Galio": {
"P": "Colossal Smash",
"Q": "Winds of War",
"W": "Shield of Durand",
"E": "Justice Punch",
"R": "Hero's Entrance"
},
"Gangplank": {
"P": "Trial by Fire",
"Q": "Parrrley",
"W": "Remove Scurvy",
"E": "Powder Keg",
"R": "Cannon Barrage"
},
"Garen": {
"P": "Perseverance",
"Q": "Decisive Strike",
"W": "Courage",
"E": "Judgment",
"R": "Demacian Justice"
},
"Gnar": {
"P": "Rage Gene",
"Q": "Boomerang Throw / Boulder Toss",
"W": "Hyper / Wallop",
"E": "Hop / Crunch",
"R": "GNAR!"
},
"Gragas": {
"P": "Happy Hour",
"Q": "Barrel Roll",
"W": "Drunken Rage",
"E": "Body Slam",
"R": "Explosive Cask"
},
"Graves": {
"P": "New Destiny",
"Q": "End of the Line",
"W": "Smoke Screen",
"E": "Quickdraw",
"R": "Collateral Damage"
},
"Gwen": {
"P": "A Thousand Cuts",
"Q": "Snip Snip!",
"W": "Hallowed Mist",
"E": "Skip 'n Slash",
"R": "Needlework"
},
"Hecarim": {
"P": "Warpath",
"Q": "Rampage",
"W": "Spirit of Dread",
"E": "Devastating Charge",
"R": "Onslaught of Shadows"
},
"Heimerdinger": {
"P": "Hextech Affinity",
"Q": "H-28 G Evolution Turret",
"W": "Hextech Micro-Rockets",
"E": "CH-2 Electron Storm Grenade",
"R": "UPGRADE!!!"
},
"Hwei": {
"P": "Signature of the Visionary",
"Q": "Subject: Disaster",
"W": "Subject: Serenity",
"E": "Subject: Torment",
"R": "Spiraling Despair"
},
"Illaoi": {
"P": "Prophet of an Elder God",
"Q": "Tentacle Smash",
"W": "Harsh Lesson",
"E": "Test of Spirit",
"R": "Leap of Faith"
},
"Irelia": {
"P": "Ionian Fervor",
"Q": "Bladesurge",
"W": "Defiant Dance",
"E": "Flawless Duet",
"R": "Vanguard's Edge"
},
"Ivern": {
"P": "Friend of the Forest",
"Q": "Rootcaller",
"W": "Brushmaker",
"E": "Triggerseed",
"R": "Daisy!"
},
"Janna": {
"P": "Tailwind",
"Q": "Howling Gale",
"W": "Zephyr",
"E": "Eye Of The Storm",
"R": "Monsoon"
},
"JarvanIV": {
"P": "Martial Cadence",
"Q": "Dragon Strike",
"W": "Golden Aegis",
"E": "Demacian Standard",
"R": "Cataclysm"
},
"Jax": {
"P": "Relentless Assault",
"Q": "Leap Strike",
"W": "Empower",
"E": "Counter Strike",
"R": "Grandmaster-at-Arms"
},
"Jayce": {
"P": "Hextech Capacitor",
"Q": "To the Skies! / Shock Blast",
"W": "Lightning Field / Hyper Charge",
"E": "Thundering Blow / Acceleration Gate",
"R": "Mercury Cannon / Mercury Hammer"
},
"Jhin": {
"P": "Whisper",
"Q": "Dancing Grenade",
"W": "Deadly Flourish",
"E": "Captive Audience",
"R": "Curtain Call"
},
"Jinx": {
"P": "Get Excited!",
"Q": "Switcheroo!",
"W": "Zap!",
"E": "Flame Chompers!",
"R": "Super Mega Death Rocket!"
},
"KSante": {
"P": "Dauntless Instinct",
"Q": "Ntofo Strikes",
"W": "Path Maker",
"E": "Footwork",
"R": "All Out"
},
"Kaisa": {
"P": "Second Skin",
"Q": "Icathian Rain",
"W": "Void Seeker",
"E": "Supercharge",
"R": "Killer Instinct"
},
"Kalista": {
"P": "Martial Poise",
"Q": "Pierce",
"W": "Sentinel",
"E": "Rend",
"R": "Fate's Call"
},
"Karma": {
"P": "Gathering Fire",
"Q": "Inner Flame",
"W": "Focused Resolve",
"E": "Inspire",
"R": "Mantra"
},
"Karthus": {
"P": "Death Defied",
"Q": "Lay Waste",
"W": "Wall of Pain",
"E": "Defile",
"R": "Requiem"
},
"Kassadin": {
"P": "Void Stone",
"Q": "Null Sphere",
"W": "Nether Blade",
"E": "Force Pulse",
"R": "Riftwalk"
},
"Katarina": {
"P": "Voracity",
"Q": "Bouncing Blade",
"W": "Preparation",
"E": "Shunpo",
"R": "Death Lotus"
},
"Kayle": {
"P": "Divine Ascent",
"Q": "Radiant Blast",
"W": "Celestial Blessing",
"E": "Starfire Spellblade",
"R": "Divine Judgment"
},
"Kayn": {
"P": "The Darkin Scythe",
"Q": "Reaping Slash",
"W": "Blade's Reach",
"E": "Shadow Step",
"R": "Umbral Trespass"
},
"Kennen": {
"P": "Mark of the Storm",
"Q": "Thundering Shuriken",
"W": "Electrical Surge",
"E": "Lightning Rush",
"R": "Slicing Maelstrom"
},
"Khazix": {
"P": "Unseen Threat",
"Q": "Taste Their Fear",
"W": "Void Spike",
"E": "Leap",
"R": "Void Assault"
},
"Kindred": {
"P": "Mark of the Kindred",
"Q": "Dance of Arrows",
"W": "Wolf's Frenzy",
"E": "Mounting Dread",
"R": "Lamb's Respite"
},
"Kled": {
"P": "Skaarl, the Cowardly Lizard",
"Q": "Bear Trap on a Rope",
"W": "Violent Tendencies",
"E": "Jousting",
"R": "Chaaaaaaaarge!!!"
},
"KogMaw": {
"P": "Icathian Surprise",
"Q": "Caustic Spittle",
"W": "Bio-Arcane Barrage",
"E": "Void Ooze",
"R": "Living Artillery"
},
"Leblanc": {
"P": "Mirror Image",
"Q": "Sigil of Malice",
"W": "Distortion",
"E": "Ethereal Chains",
"R": "Mimic"
},
"LeeSin": {
"P": "Flurry",
"Q": "Sonic Wave / Resonating Strike",
"W": "Safeguard / Iron Will",
"E": "Tempest / Cripple",
"R": "Dragon's Rage"
},
"Leona": {
"P": "Sunlight",
"Q": "Shield of Daybreak",
"W": "Eclipse",
"E": "Zenith Blade",
"R": "Solar Flare"
},
"Lillia": {
"P": "Dream-Laden Bough",
"Q": "Blooming Blows",
"W": "Watch Out! Eep!",
"E": "Swirlseed",
"R": "Lilting Lullaby"
},
"Lissandra": {
"P": "Iceborn Subjugation",
"Q": "Ice Shard",
"W": "Ring of Frost",
"E": "Glacial Path",
"R": "Frozen Tomb"
},
"Lucian": {
"P": "Lightslinger",
"Q": "Piercing Light",
"W": "Ardent Blaze",
"E": "Relentless Pursuit",
"R": "The Culling"
},
"Lulu": {
"P": "Pix, Faerie Companion",
"Q": "Glitterlance",
"W": "Whimsy",
"E": "Help, Pix!",
"R": "Wild Growth"
},
"Lux": {
"P": "Illumination",
"Q": "Light Binding",
"W": "Prismatic Barrier",
"E": "Lucent Singularity",
"R": "Final Spark"
},
"Malphite": {
"P": "Granite Shield",
"Q": "Seismic Shard",
"W": "Thunderclap",
"E": "Ground Slam",
"R": "Unstoppable Force"
},
"Malzahar": {
"P": "Void Shift",
"Q": "Call of the Void",
"W": "Void Swarm",
"E": "Malefic Visions",
"R": "Nether Grasp"
},
"Maokai": {
"P": "Sap Magic",
"Q": "Bramble Smash",
"W": "Twisted Advance",
"E": "Sapling Toss",
"R": "Nature's Grasp"
},
"MasterYi": {
"P": "Double Strike",
"Q": "Alpha Strike",
"W": "Meditate",
"E": "Wuju Style",
"R": "Highlander"
},
"Milio": {
"P": "Fired Up!",
"Q": "Ultra Mega Fire Kick",
"W": "Cozy Campfire",
"E": "Warm Hugs",
"R": "Breath of Life"
},
"MissFortune": {
"P": "Love Tap",
"Q": "Double Up",
"W": "Strut",
"E": "Make It Rain",
"R": "Bullet Time"
},
"Mordekaiser": {
"P": "Darkness Rise",
"Q": "Obliterate",
"W": "Indestructible",
"E": "Death's Grasp",
"R": "Realm of Death"
},
"Morgana": {
"P": "Soul Siphon",
"Q": "Dark Binding",
"W": "Tormented Shadow",
"E": "Black Shield",
"R": "Soul Shackles"
},
"Naafiri": {
"P": "We Are More",
"Q": "Darkin Daggers",
"W": "Hounds' Pursuit",
"E": "Eviscerate",
"R": "The Call of the Pack"
},
"Nami": {
"P": "Surging Tides",
"Q": "Aqua Prison",
"W": "Ebb and Flow",
"E": "Tidecaller's Blessing",
"R": "Tidal Wave"
},
"Nasus": {
"P": "Soul Eater",
"Q": "Siphoning Strike",
"W": "Wither",
"E": "Spirit Fire",
"R": "Fury of the Sands"
},
"Nautilus": {
"P": "Staggering Blow",
"Q": "Dredge Line",
"W": "Titan's Wrath",
"E": "Riptide",
"R": "Depth Charge"
},
"Neeko": {
"P": "Inherent Glamour",
"Q": "Blooming Burst",
"W": "Shapesplitter",
"E": "Tangle-Barbs",
"R": "Pop Blossom"
},
"Nidalee": {
"P": "Prowl",
"Q": "Javelin Toss / Takedown",
"W": "Bushwhack / Pounce",
"E": "Primal Surge / Swipe",
"R": "Aspect Of The Cougar"
},
"Nilah": {
"P": "Joy Unending",
"Q": "Formless Blade",
"W": "Jubilant Veil",
"E": "Slipstream",
"R": "Apotheosis"
},
"Nocturne": {
"P": "Umbra Blades",
"Q": "Duskbringer",
"W": "Shroud of Darkness",
"E": "Unspeakable Horror",
"R": "Paranoia"
},
"Nunu": {
"P": "Call of the Freljord",
"Q": "Consume",
"W": "Biggest Snowball Ever!",
"E": "Snowball Barrage",
"R": "Absolute Zero"
},
"Olaf": {
"P": "Berserker Rage",
"Q": "Undertow",
"W": "Tough It Out",
"E": "Reckless Swing",
"R": "Ragnarok"
},
"Orianna": {
"P": "Clockwork Windup",
"Q": "Command: Attack",
"W": "Command: Dissonance",
"E": "Command: Protect",
"R": "Command: Shockwave"
},
"Ornn": {
"P": "Living Forge",
"Q": "Volcanic Rupture",
"W": "Bellows Breath",
"E": "Searing Charge",
"R": "Call of the Forge God"
},
"Pantheon": {
"P": "Mortal Will",
"Q": "Comet Spear",
"W": "Shield Vault",
"E": "Aegis Assault",
"R": "Grand Starfall"
},
"Poppy": {
"P": "Iron Ambassador",
"Q": "Hammer Shock",
"W": "Steadfast Presence",
"E": "Heroic Charge",
"R": "Keeper's Verdict"
},
"Pyke": {
"P": "Gift of the Drowned Ones",
"Q": "Bone Skewer",
"W": "Ghostwater Dive",
"E": "Phantom Undertow",
"R": "Death From Below"
},
"Qiyana": {
"P": "Royal Privilege",
"Q": "Elemental Wrath / Edge of Ixtal",
"W": "Terrashape",
"E": "Audacity",
"R": "Supreme Display of Talent"
},
"Quinn": {
"P": "Harrier",
"Q": "Blinding Assault",
"W": "Heightened Senses",
"E": "Vault",
"R": "Behind Enemy Lines"
},
"Rakan": {
"P": "Fey Feathers",
"Q": "Gleaming Quill",
"W": "Grand Entrance",
"E": "Battle Dance",
"R": "The Quickness"
},
"Rammus": {
"P": "Spiked Shell",
"Q": "Powerball",
"W": "Defensive Ball Curl",
"E": "Frenzying Taunt",
"R": "Soaring Slam"
},
"RekSai": {
"P": "Fury of the Xer'Sai",
"Q": "Queen's Wrath / Prey Seeker",
"W": "Burrow / Un-burrow",
"E": "Furious Bite / Tunnel",
"R": "Void Rush"
},
"Rell": {
"P": "Break the Mold",
"Q": "Shattering Strike",
"W": "Ferromancy: Crash Down",
"E": "Full Tilt",
"R": "Magnet Storm"
},
"Renata": {
"P": "Leverage",
"Q": "Handshake",
"W": "Bailout",
"E": "Loyalty Program",
"R": "Hostile Takeover"
},
"Renekton": {
"P": "Reign of Anger",
"Q": "Cull the Meek",
"W": "Ruthless Predator",
"E": "Slice and Dice",
"R": "Dominus"
},
"Rengar": {
"P": "Unseen Predator",
"Q": "Savagery",
"W": "Battle Roar",
"E": "Bola Strike",
"R": "Thrill of the Hunt"
},
"Riven": {
"P": "Runic Blade",
"Q": "Broken Wings",
"W": "Ki Burst",
"E": "Valor",
"R": "Blade of the Exile"
},
"Rumble": {
"P": "Junkyard Titan",
"Q": "Flamespitter",
"W": "Scrap Shield",
"E": "Electro Harpoon",
"R": "The Equalizer"
},
"Ryze": {
"P": "Arcane Mastery",
"Q": "Overload",
"W": "Rune Prison",
"E": "Spell Flux",
"R": "Realm Warp"
},
"Samira": {
"P": "Daredevil Impulse",
"Q": "Flair",
"W": "Blade Whirl",
"E": "Wild Rush",
"R": "Inferno Trigger"
},
"Sejuani": {
"P": "Fury of the North",
"Q": "Arctic Assault",
"W": "Winter's Wrath",
"E": "Permafrost",
"R": "Glacial Prison"
},
"Senna": {
"P": "Absolution",
"Q": "Piercing Darkness",
"W": "Last Embrace",
"E": "Curse of the Black Mist",
"R": "Dawning Shadow"
},
"Seraphine": {
"P": "Stage Presence",
"Q": "High Note",
"W": "Surround Sound",
"E": "Beat Drop",
"R": "Encore"
},
"Sett": {
"P": "Pit Grit",
"Q": "Knuckle Down",
"W": "Haymaker",
"E": "Facebreaker",
"R": "The Show Stopper"
},
"Shaco": {
"P": "Backstab",
"Q": "Deceive",
"W": "Jack In The Box",
"E": "Two-Shiv Poison",
"R": "Hallucinate"
},
"Shen": {
"P": "Ki Barrier",
"Q": "Twilight Assault",
"W": "Spirit's Refuge",
"E": "Shadow Dash",
"R": "Stand United"
},
"Shyvana": {
"P": "Fury of the Dragonborn",
"Q": "Twin Bite",
"W": "Burnout",
"E": "Flame Breath",
"R": "Dragon's Descent"
},
"Singed": {
"P": "Noxious Slipstream",
"Q": "Poison Trail",
"W": "Mega Adhesive",
"E": "Fling",
"R": "Insanity Potion"
},
"Sion": {
"P": "Glory in Death",
"Q": "Decimating Smash",
"W": "Soul Furnace",
"E": "Roar of the Slayer",
"R": "Unstoppable Onslaught"
},
"Sivir": {
"P": "Fleet of Foot",
"Q": "Boomerang Blade",
"W": "Ricochet",
"E": "Spell Shield",
"R": "On The Hunt"
},
"Skarner": {
"P": "Threads of Vibration",
"Q": "Shattered Earth / Upheaval",
"W": "Seismic Bastion",
"E": "Ixtal's Impact",
"R": "Impale"
},
"Smolder": {
"P": "Dragon Practice",
"Q": "Super Scorcher Breath",
"W": "Achooo!",
"E": "Flap, Flap, Flap",
"R": "MMOOOMMMM!"
},
"Sona": {
"P": "Power Chord",
"Q": "Hymn of Valor",
"W": "Aria of Perseverance",
"E": "Song of Celerity",
"R": "Crescendo"
},
"Soraka": {
"P": "Salvation",
"Q": "Starcall",
"W": "Astral Infusion",
"E": "Equinox",
"R": "Wish"
},
"Swain": {
"P": "Ravenous Flock",
"Q": "Death's Hand",
"W": "Vision of Empire",
"E": "Nevermove",
"R": "Demonic Ascension"
},
"Sylas": {
"P": "Petricite Burst",
"Q": "Chain Lash",
"W": "Kingslayer",
"E": "Abscond / Abduct",
"R": "Hijack"
},
"Syndra": {
"P": "Transcendent",
"Q": "Dark Sphere",
"W": "Force of Will",
"E": "Scatter the Weak",
"R": "Unleashed Power"
},
"TahmKench": {
"P": "An Acquired Taste",
"Q": "Tongue Lash",
"W": "Abyssal Dive",
"E": "Thick Skin",
"R": "Devour"
},
"Taliyah": {
"P": "Rock Surfing",
"Q": "Threaded Volley",
"W": "Seismic Shove",
"E": "Unraveled Earth",
"R": "Weaver's Wall"
},
"Talon": {
"P": "Blade's End",
"Q": "Noxian Diplomacy",
"W": "Rake",
"E": "Assassin's Path",
"R": "Shadow Assault"
},
"Taric": {
"P": "Bravado",
"Q": "Starlight's Touch",
"W": "Bastion",
"E": "Dazzle",
"R": "Cosmic Radiance"
},
"Teemo": {
"P": "Guerrilla Warfare",
"Q": "Blinding Dart",
"W": "Move Quick",
"E": "Toxic Shot",
"R": "Noxious Trap"
},
"Thresh": {
"P": "Damnation",
"Q": "Death Sentence",
"W": "Dark Passage",
"E": "Flay",
"R": "The Box"
},
"Tristana": {
"P": "Draw a Bead",
"Q": "Rapid Fire",
"W": "Rocket Jump",
"E": "Explosive Charge",
"R": "Buster Shot"
},
"Trundle": {
"P": "King's Tribute",
"Q": "Chomp",
"W": "Frozen Domain",
"E": "Pillar of Ice",
"R": "Subjugate"
},
"Tryndamere": {
"P": "Battle Fury",
"Q": "Bloodlust",
"W": "Mocking Shout",
"E": "Spinning Slash",
"R": "Undying Rage"
},
"TwistedFate": {
"P": "Loaded Dice",
"Q": "Wild Cards",
"W": "Pick a Card",
"E": "Stacked Deck",
"R": "Destiny"
},
"Twitch": {
"P": "Deadly Venom",
"Q": "Ambush",
"W": "Venom Cask",
"E": "Contaminate",
"R": "Spray and Pray"
},
"Udyr": {
"P": "Bridge Between",
"Q": "Wilding Claw",
"W": "Iron Mantle",
"E": "Blazing Stampede",
"R": "Wingborne Storm"
},
"Urgot": {
"P": "Echoing Flames",
"Q": "Corrosive Charge",
"W": "Purge",
"E": "Disdain",