This repository was archived by the owner on Mar 23, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdata.json
More file actions
5287 lines (5287 loc) · 161 KB
/
Copy pathdata.json
File metadata and controls
5287 lines (5287 loc) · 161 KB
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": {
"role": "Top-lane Bruiser/Juggernaut",
"matchups": {
"strong_against": ["Kayle", "Teemo", "Gnar"],
"weak_against": ["Fiora", "Irelia", "Jax"]
},
"recommended_items": [
"Goredrinker",
"Plated Steelcaps",
"Black Cleaver",
"Death's Dance",
"Guardian Angel",
"Spirit Visage"
],
"recommended_runes": [
"Conqueror",
"Triumph",
"Legend: Tenacity",
"Last Stand",
"Bone Plating",
"Revitalize"
],
"tips": "Focus on hitting your Q sweet spots for maximum damage. Use E to reposition during Q casts.",
"abilities": {
"passive": "Deathbringer Stance - Periodically empowers next attack to deal bonus damage",
"Q": "The Darkin Blade - Three strikes with sweetspots at the edges",
"W": "Infernal Chains - Launches chains that slow and can pull enemies",
"E": "Umbral Dash - Short dash that can be used during other abilities",
"R": "World Ender - Gains movement speed, AD, and healing"
}
},
"ahri": {
"role": "Mid-lane Mage/Assassin",
"matchups": {
"strong_against": ["Veigar", "Lux", "Ziggs"],
"weak_against": ["Yasuo", "Zed", "Kassadin"]
},
"recommended_items": [
"Luden's Tempest",
"Sorcerer's Shoes",
"Shadowflame",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Electrocute",
"Taste of Blood",
"Eyeball Collection",
"Ultimate Hunter",
"Manaflow Band",
"Transcendence"
],
"tips": "Ahri excels at poking and kiting. Use your Orb of Deception to poke, and Charm to catch enemies off-guard.",
"abilities": {
"passive": "Essence Theft - Gains stacks of Essence Theft when hitting enemy champions with abilities",
"Q": "Orb of Deception - Sends out and pulls back an orb, dealing magic damage",
"W": "Fox-Fire - Releases fox-fires that target nearby enemies",
"E": "Charm - Blows a kiss that damages and charms an enemy",
"R": "Spirit Rush - Dashes and fires essence bolts at nearby enemies"
}
},
"akali": {
"role": "Mid/Top-lane Assassin",
"matchups": {
"strong_against": ["Viktor", "Xerath", "Vel'Koz"],
"weak_against": ["Galio", "Diana", "Lee Sin"]
},
"recommended_items": [
"Riftmaker",
"Sorcerer's Shoes",
"Demonic Embrace",
"Zhonya's Hourglass",
"Void Staff",
"Morellonomicon"
],
"recommended_runes": [
"Conqueror",
"Presence of Mind",
"Legend: Tenacity",
"Coup de Grace",
"Taste of Blood",
"Ravenous Hunter"
],
"tips": "Use your shroud to reposition and wait for cooldowns. Manage your energy efficiently in extended trades.",
"abilities": {
"passive": "Assassin's Mark - Empowers auto attacks after leaving circle created by abilities",
"Q": "Five Point Strike - Throws kunai in an arc, dealing damage and slowing",
"W": "Twilight Shroud - Creates smoke cloud granting invisibility",
"E": "Shuriken Flip - Flips backward and throws shuriken, can dash to marked targets",
"R": "Perfect Execution - Two-part dash execution ability"
}
},
"akshan": {
"role": "Mid/Top-lane Marksman",
"matchups": {
"strong_against": ["Katarina", "Kassadin", "Twisted Fate"],
"weak_against": ["Pantheon", "Lucian", "Yone"]
},
"recommended_items": [
"Kraken Slayer",
"Berserker's Greaves",
"Collector",
"Infinity Edge",
"Bloodthirster",
"Guardian Angel"
],
"recommended_runes": [
"Press the Attack",
"Triumph",
"Legend: Alacrity",
"Coup de Grace",
"Taste of Blood",
"Treasure Hunter"
],
"tips": "Use your swing to roam and catch enemies off guard. Save your revive for crucial teamfight moments.",
"abilities": {
"passive": "Dirty Fighting - Three-hit passive and revive mechanic",
"Q": "Avengerang - Throwing weapon that deals damage going out and returning",
"W": "Going Rogue - Camouflage and swing ability",
"E": "Heroic Swing - Hooks to terrain and can be recast",
"R": "Comeuppance - Locks onto enemy champions and fires multiple shots"
}
},
"alistar": {
"role": "Support Tank/Engage",
"matchups": {
"strong_against": ["Pyke", "Leona", "Nautilus"],
"weak_against": ["Morgana", "Janna", "Lulu"]
},
"recommended_items": [
"Locket of the Iron Solari",
"Mercury's Treads",
"Knight's Vow",
"Zeke's Convergence",
"Thornmail",
"Gargoyle Stoneplate"
],
"recommended_runes": [
"Aftershock",
"Font of Life",
"Conditioning",
"Overgrowth",
"Hextech Flashtraption",
"Cosmic Insight"
],
"tips": "Master the W-Q combo for reliable engage. Use R to tower dive and tank objectives.",
"abilities": {
"passive": "Triumphant Roar - Heals nearby allies when crowd control is applied",
"Q": "Pulverize - Knocks up nearby enemies",
"W": "Headbutt - Dashes to and knocks back an enemy",
"E": "Trample - Deals damage to nearby enemies and can stun",
"R": "Unbreakable Will - Reduces incoming damage and removes crowd control"
}
},
"amumu": {
"role": "Jungle Tank/Engage",
"matchups": {
"strong_against": ["Master Yi", "Evelynn", "Karthus"],
"weak_against": ["Lee Sin", "Olaf", "Graves"]
},
"recommended_items": [
"Sunfire Aegis",
"Mercury's Treads",
"Demonic Embrace",
"Thornmail",
"Abyssal Mask",
"Force of Nature"
],
"recommended_runes": [
"Aftershock",
"Font of Life",
"Conditioning",
"Unflinching",
"Cheap Shot",
"Ultimate Hunter"
],
"tips": "Look for multi-champion ultimates in teamfights. Your Q is crucial for ganking lanes.",
"abilities": {
"passive": "Cursed Touch - Basic attacks curse enemies, causing them to take bonus true damage",
"Q": "Bandage Toss - Throws bandages that stun and pull Amumu to an enemy",
"W": "Despair - Deals continuous magic damage to nearby enemies",
"E": "Tantrum - Reduces physical damage taken and damages nearby enemies",
"R": "Curse of the Sad Mummy - Entangles nearby enemies, dealing magic damage"
}
},
"anivia": {
"role": "Mid-lane Control Mage",
"matchups": {
"strong_against": ["Katarina", "Talon", "Fizz"],
"weak_against": ["Kassadin", "LeBlanc", "Xerath"]
},
"recommended_items": [
"Rod of Ages",
"Sorcerer's Shoes",
"Seraph's Embrace",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Electrocute",
"Manaflow Band",
"Transcendence",
"Gathering Storm",
"Perfect Timing",
"Cosmic Insight"
],
"tips": "Use wall to zone enemies and set up your Q stun. Your ultimate can zone entire areas in teamfights.",
"abilities": {
"passive": "Rebirth - After taking fatal damage, transforms into an egg and revives",
"Q": "Flash Frost - Launches ice ball that damages and stuns",
"W": "Crystallize - Creates an impassable wall of ice",
"E": "Frostbite - Single target damage, doubled against chilled targets",
"R": "Glacial Storm - Creates a blizzard that damages and chills enemies"
}
},
"annie": {
"role": "Mid-lane Burst Mage",
"matchups": {
"strong_against": ["Akali", "Katarina", "Kassadin"],
"weak_against": ["Orianna", "Xerath", "Lux"]
},
"recommended_items": [
"Luden's Tempest",
"Sorcerer's Shoes",
"Horizon Focus",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Electrocute",
"Cheap Shot",
"Eyeball Collection",
"Relentless Hunter",
"Manaflow Band",
"Scorch"
],
"tips": "Track your stun stacks carefully. Look for Flash-Tibbers opportunities on priority targets.",
"abilities": {
"passive": "Pyromania - Every 4th spell stuns the target",
"Q": "Disintegrate - Single target damage spell that refunds mana on kill",
"W": "Incinerate - Cone of fire damage",
"E": "Molten Shield - Grants shield and reflects damage",
"R": "Summon: Tibbers - Summons a bear that can be controlled"
}
},
"aphelios": {
"role": "Bot-lane ADC/Marksman",
"matchups": {
"strong_against": ["Vayne", "Kog'Maw", "Twitch"],
"weak_against": ["Draven", "Lucian", "Caitlyn"]
},
"recommended_items": [
"Kraken Slayer",
"Berserker's Greaves",
"Phantom Dancer",
"Infinity Edge",
"Bloodthirster",
"Guardian Angel"
],
"recommended_runes": [
"Press the Attack",
"Presence of Mind",
"Legend: Bloodline",
"Coup de Grace",
"Taste of Blood",
"Ravenous Hunter"
],
"tips": "Plan your weapon rotations ahead of time. Each weapon combination offers unique playstyles.",
"abilities": {
"passive": "The Hitman and the Seer - Cycles through 5 weapons with unique effects",
"Q": "Weapon Ability - Unique to each weapon",
"W": "Phase - Swaps between main and off-hand weapon",
"E": "Weapon Queue - Shows next weapon in rotation",
"R": "Moonlight Vigil - Ultimate unique to main-hand weapon"
}
},
"ashe": {
"role": "Bot-lane ADC/Utility Marksman",
"matchups": {
"strong_against": ["Kalista", "Samira", "Kai'Sa"],
"weak_against": ["Draven", "Miss Fortune", "Tristana"]
},
"recommended_items": [
"Immortal Shieldbow",
"Berserker's Greaves",
"Runaan's Hurricane",
"Infinity Edge",
"Lord Dominik's Regards",
"Bloodthirster"
],
"recommended_runes": [
"Lethal Tempo",
"Presence of Mind",
"Legend: Bloodline",
"Coup de Grace",
"Magical Footwear",
"Approach Velocity"
],
"tips": "Use Hawkshot to track enemy jungler. Your arrow can initiate fights from long range.",
"abilities": {
"passive": "Frost Shot - Basic attacks slow enemies",
"Q": "Ranger's Focus - Increases attack speed and damage",
"W": "Volley - Fires multiple arrows in a cone",
"E": "Hawkshot - Reveals an area of the map",
"R": "Enchanted Crystal Arrow - Global stun projectile"
}
},
"aurelion_sol": {
"role": "Mid-lane Battle Mage",
"matchups": {
"strong_against": ["Veigar", "Twisted Fate", "Lux"],
"weak_against": ["Kassadin", "Fizz", "Zed"]
},
"recommended_items": [
"Rod of Ages",
"Sorcerer's Shoes",
"Rylai's Crystal Scepter",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"First Strike",
"Perfect Timing",
"Future's Market",
"Cosmic Insight",
"Manaflow Band",
"Transcendence"
],
"tips": "Use your Q stun to set up your combos. Your stars' orbit is key to maximizing damage output.",
"abilities": {
"passive": "Cosmic Creator - Creates stars that orbit and deal damage",
"Q": "Breath of Light - Fires a celestial breath that stuns",
"W": "Astral Flight - Flies in target direction, gaining movement speed",
"E": "Singularity - Creates a black hole that pulls enemies in",
"R": "Falling Star/The Skies Descend - Calls down massive star for huge damage"
}
},
"azir": {
"role": "Mid-lane Control Mage",
"matchups": {
"strong_against": ["Syndra", "Orianna", "Annie"],
"weak_against": ["Xerath", "Viktor", "Ziggs"]
},
"recommended_items": [
"Liandry's Anguish",
"Sorcerer's Shoes",
"Nashor's Tooth",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Lethal Tempo",
"Presence of Mind",
"Legend: Alacrity",
"Coup de Grace",
"Manaflow Band",
"Transcendence"
],
"tips": "Position your soldiers carefully for zone control. Save your shuffle combo for key moments.",
"abilities": {
"passive": "Shurima's Legacy - Can summon a turret on fallen towers",
"Q": "Conquering Sands - Commands soldiers to dash, dealing damage",
"W": "Arise! - Summons a Sand Soldier to attack for Azir",
"E": "Shifting Sands - Dashes to a soldier, gaining a shield",
"R": "Emperor's Divide - Creates a wall of soldiers that knocks back enemies"
}
},
"bard": {
"role": "Support Utility/Roamer",
"matchups": {
"strong_against": ["Soraka", "Sona", "Yuumi"],
"weak_against": ["Leona", "Nautilus", "Pyke"]
},
"recommended_items": [
"Locket of the Iron Solari",
"Mobility Boots",
"Dead Man's Plate",
"Force of Nature",
"Redemption",
"Vigilant Wardstone"
],
"recommended_runes": [
"Guardian",
"Font of Life",
"Conditioning",
"Unflinching",
"Magical Footwear",
"Cosmic Insight"
],
"tips": "Collect chimes to empower meeps. Use magical journey creatively for unique gank paths.",
"abilities": {
"passive": "Traveler's Call - Collects chimes to empower meeps",
"Q": "Cosmic Binding - Fires missile that can stun two targets",
"W": "Caretaker's Shrine - Places healing shrine that grants movement speed",
"E": "Magical Journey - Creates portal through terrain",
"R": "Tempered Fate - Places all units in stasis"
}
},
"blitzcrank": {
"role": "Support Tank/Catcher",
"matchups": {
"strong_against": ["Sona", "Soraka", "Nami"],
"weak_against": ["Morgana", "Sivir", "Alistar"]
},
"recommended_items": [
"Evenshroud",
"Mercury's Treads",
"Dead Man's Plate",
"Force of Nature",
"Frozen Heart",
"Thornmail"
],
"recommended_runes": [
"Aftershock",
"Font of Life",
"Conditioning",
"Unflinching",
"Hextech Flashtraption",
"Cosmic Insight"
],
"tips": "Save hook for priority targets. Use W to reposition for hooks or escape.",
"abilities": {
"passive": "Mana Barrier - Gains a shield based on mana when low health",
"Q": "Rocket Grab - Pulls an enemy to Blitzcrank",
"W": "Overdrive - Gains movement and attack speed",
"E": "Power Fist - Empowered attack that knocks up",
"R": "Static Field - Silences nearby enemies and deals damage"
}
},
"brand": {
"role": "Mid/Support Burst Mage",
"matchups": {
"strong_against": ["Yuumi", "Sona", "Soraka"],
"weak_against": ["Fizz", "Yasuo", "Zed"]
},
"recommended_items": [
"Liandry's Anguish",
"Sorcerer's Shoes",
"Demonic Embrace",
"Rylai's Crystal Scepter",
"Void Staff",
"Morellonomicon"
],
"recommended_runes": [
"Dark Harvest",
"Cheap Shot",
"Eyeball Collection",
"Ultimate Hunter",
"Presence of Mind",
"Coup de Grace"
],
"tips": "Land stun to guarantee other abilities. Ultimate bounces more in minion waves.",
"abilities": {
"passive": "Blaze - Abilities apply a burn that can be detonated",
"Q": "Sear - Fires a fireball that stuns if target is ablaze",
"W": "Pillar of Flame - Creates a pillar of flame after delay",
"E": "Conflagration - Targeted fire ability that spreads to nearby units",
"R": "Pyroclasm - Launches a bouncing fireball"
}
},
"braum": {
"role": "Support Tank/Warden",
"matchups": {
"strong_against": ["Miss Fortune", "Lucian", "Ezreal"],
"weak_against": ["Karma", "Morgana", "Zyra"]
},
"recommended_items": [
"Locket of the Iron Solari",
"Plated Steelcaps",
"Knight's Vow",
"Zeke's Convergence",
"Warmog's Armor",
"Gargoyle Stoneplate"
],
"recommended_runes": [
"Guardian",
"Font of Life",
"Bone Plating",
"Unflinching",
"Magical Footwear",
"Cosmic Insight"
],
"tips": "Use Stand Behind Me to jump to allies in danger. Your shield can block crucial projectiles.",
"abilities": {
"passive": "Concussive Blows - Marks targets with basic attacks, stunning when fully stacked",
"Q": "Winter's Bite - Launches ice projectile that applies passive and slows",
"W": "Stand Behind Me - Dashes to ally, granting them bonus resistances",
"E": "Unbreakable - Raises shield that reduces damage from first hit and blocks projectiles",
"R": "Glacial Fissure - Creates fissure that knocks up first enemy hit and slows others"
}
},
"briar": {
"role": "Jungle Fighter/Diver",
"matchups": {
"strong_against": ["Ivern", "Fiddlesticks", "Karthus"],
"weak_against": ["Udyr", "Trundle", "Vi"]
},
"recommended_items": [
"Goredrinker",
"Plated Steelcaps",
"Death's Dance",
"Black Cleaver",
"Spirit Visage",
"Guardian Angel"
],
"recommended_runes": [
"Conqueror",
"Triumph",
"Legend: Tenacity",
"Last Stand",
"Sudden Impact",
"Relentless Hunter"
],
"tips": "Use Blood Rush wisely to sustain in fights. Chain your crowd control for maximum impact.",
"abilities": {
"passive": "Crimson Blood - Gains bonus effects when below 50% health",
"Q": "Blood Frenzy - Attacks in a frenzy, healing for damage dealt",
"W": "Blood Rush - Gains movement speed and lifesteal",
"E": "Blood Lunge - Lunges at target, dealing damage and stunning",
"R": "Blood Possession - Takes control of enemy champion briefly"
}
},
"caitlyn": {
"role": "Bot-lane ADC/Marksman",
"matchups": {
"strong_against": ["Vayne", "Kai'Sa", "Samira"],
"weak_against": ["Sivir", "Ashe", "Jhin"]
},
"recommended_items": [
"Kraken Slayer",
"Berserker's Greaves",
"Rapid Firecannon",
"Infinity Edge",
"Lord Dominik's Regards",
"Bloodthirster"
],
"recommended_runes": [
"Fleet Footwork",
"Presence of Mind",
"Legend: Bloodline",
"Coup de Grace",
"Absolute Focus",
"Gathering Storm"
],
"tips": "Use traps to control zones and set up headshots. Your net can create distance and proc headshot.",
"abilities": {
"passive": "Headshot - Every few attacks or on trapped/netted targets deals bonus damage",
"Q": "Piltover Peacemaker - Fires penetrating shot that deals reduced damage through targets",
"W": "Yordle Snap Trap - Places trap that roots and enables headshot",
"E": "90 Caliber Net - Fires net that slows target and pushes Caitlyn back",
"R": "Ace in the Hole - Channels long-range shot that deals heavy damage"
}
},
"camille": {
"role": "Top-lane Fighter/Diver",
"matchups": {
"strong_against": ["Gnar", "Gangplank", "Kayle"],
"weak_against": ["Jax", "Fiora", "Poppy"]
},
"recommended_items": [
"Divine Sunderer",
"Mercury's Treads",
"Ravenous Hydra",
"Death's Dance",
"Guardian Angel",
"Maw of Malmortius"
],
"recommended_runes": [
"Grasp of the Undying",
"Shield Bash",
"Second Wind",
"Unflinching",
"Triumph",
"Legend: Alacrity"
],
"tips": "Use hookshot creatively for engage angles. Time your second Q for true damage in trades.",
"abilities": {
"passive": "Adaptive Defenses - Gains shield against primary damage type of enemy hit",
"Q": "Precision Protocol - Empowers next two attacks, second deals true damage",
"W": "Tactical Sweep - Sweeps area, dealing damage and healing",
"E": "Hookshot - Dashes to wall then can dash to target location stunning champions",
"R": "The Hextech Ultimatum - Locks down target champion in area, gaining bonus damage"
}
},
"cassiopeia": {
"role": "Mid-lane Battle Mage",
"matchups": {
"strong_against": ["Sylas", "Vladimir", "Ryze"],
"weak_against": ["Zed", "Fizz", "Katarina"]
},
"recommended_items": [
"Liandry's Anguish",
"Cosmic Drive",
"Seraph's Embrace",
"Rylai's Crystal Scepter",
"Void Staff",
"Rabadon's Deathcap"
],
"recommended_runes": [
"Conqueror",
"Presence of Mind",
"Legend: Tenacity",
"Last Stand",
"Taste of Blood",
"Ravenous Hunter"
],
"tips": "Land your Q to maximize Twin Fang DPS. Use ultimate carefully as it's crucial for self-peel.",
"abilities": {
"passive": "Serpentine Grace - Cannot purchase boots, gains movement speed per level",
"Q": "Noxious Blast - Poisons target area, granting movement speed if it hits",
"W": "Miasma - Creates pools that ground and slow enemies",
"E": "Twin Fang - Single target damage, reduced cooldown on poisoned targets",
"R": "Petrifying Gaze - Turns enemies facing her to stone"
}
},
"chogath": {
"role": "Top-lane Tank/Juggernaut",
"matchups": {
"strong_against": ["Sion", "Ornn", "Malphite"],
"weak_against": ["Vayne", "Gnar", "Kayle"]
},
"recommended_items": [
"Everfrost",
"Mercury's Treads",
"Warmog's Armor",
"Gargoyle Stoneplate",
"Thornmail",
"Force of Nature"
],
"recommended_runes": [
"Grasp of the Undying",
"Demolish",
"Conditioning",
"Overgrowth",
"Magical Footwear",
"Approach Velocity"
],
"tips": "Stack your ultimate on minions early. Chain CC with Q into W for guaranteed damage.",
"abilities": {
"passive": "Carnivore - Restores health and mana when killing units",
"Q": "Rupture - Creates circular area that knocks up enemies after delay",
"W": "Feral Scream - Silences enemies in a cone",
"E": "Vorpal Spikes - Empowers attacks with spikes that deal AOE damage",
"R": "Feast - Devours target unit, gaining permanent max health on kills"
}
},
"corki": {
"role": "Mid-lane AD Caster/Marksman",
"matchups": {
"strong_against": ["Kassadin", "Twisted Fate", "Galio"],
"weak_against": ["Yasuo", "Zed", "Leblanc"]
},
"recommended_items": [
"Manamune",
"Trinity Force",
"Ionian Boots of Lucidity",
"Rapid Firecannon",
"Infinity Edge",
"Guardian Angel"
],
"recommended_runes": [
"First Strike",
"Magical Footwear",
"Future's Market",
"Cosmic Insight",
"Presence of Mind",
"Coup de Grace"
],
"tips": "Collect packages for map pressure. Save W for escape unless kill is guaranteed.",
"abilities": {
"passive": "Hextech Munitions - Auto attacks deal mixed damage",
"Q": "Phosphorus Bomb - Deals magic damage and reveals area",
"W": "Valkyrie - Dashes leaving burning trail",
"E": "Gatling Gun - Rapid fire shots that shred armor and MR",
"R": "Missile Barrage - Long range missiles, empowered by package"
}
},
"darius": {
"role": "Top-lane Juggernaut",
"matchups": {
"strong_against": ["Nasus", "Maokai", "Malphite"],
"weak_against": ["Quinn", "Vayne", "Kennen"]
},
"recommended_items": [
"Trinity Force",
"Plated Steelcaps",
"Dead Man's Plate",
"Spirit Visage",
"Death's Dance",
"Guardian Angel"
],
"recommended_runes": [
"Conqueror",
"Triumph",
"Legend: Tenacity",
"Last Stand",
"Bone Plating",
"Unflinching"
],
"tips": "Stack hemorrhage before ulting. Use E to cancel enemy escapes.",
"abilities": {
"passive": "Hemorrhage - Attacks and abilities apply bleeding stacks",
"Q": "Decimate - Swings axe in circle, blade hits heal",
"W": "Crippling Strike - Empowered attack that slows",
"E": "Apprehend - Pulls enemies towards Darius",
"R": "Noxian Guillotine - Executes target, resets on kill"
}
},
"diana": {
"role": "Mid/Jungle Assassin",
"matchups": {
"strong_against": ["Veigar", "Lux", "Ahri"],
"weak_against": ["Galio", "Pantheon", "Akshan"]
},
"recommended_items": [
"Rocketbelt",
"Sorcerer's Shoes",
"Nashor's Tooth",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Electrocute",
"Sudden Impact",
"Eyeball Collection",
"Relentless Hunter",
"Triumph",
"Coup de Grace"
],
"tips": "Use Q-R combo for extended dash range. Save E for teamfight disruption.",
"abilities": {
"passive": "Moonsilver Blade - Every third attack deals bonus magic damage",
"Q": "Crescent Strike - Curved skillshot that applies Moonlight",
"W": "Pale Cascade - Orbiting spheres that shield and damage",
"E": "Moonfall - Pulls nearby enemies to center",
"R": "Lunar Rush - Dashes to target, resets on Moonlight targets"
}
},
"dr_mundo": {
"role": "Top-lane Tank/Juggernaut",
"matchups": {
"strong_against": ["Singed", "Maokai", "Malphite"],
"weak_against": ["Fiora", "Vayne", "Garen"]
},
"recommended_items": [
"Turbo Chemtank",
"Mercury's Treads",
"Warmog's Armor",
"Spirit Visage",
"Thornmail",
"Force of Nature"
],
"recommended_runes": [
"Grasp of the Undying",
"Demolish",
"Second Wind",
"Overgrowth",
"Magical Footwear",
"Approach Velocity"
],
"tips": "Use Q to farm safely and poke. Your ultimate makes you extremely hard to kill in teamfights.",
"abilities": {
"passive": "Goes Where He Pleases - Resists first CC and regains health",
"Q": "Infected Cleaver - Throws cleaver that slows and deals current health damage",
"W": "Heart Zapper - Stores damage taken and can be recast to heal",
"E": "Blunt Force Trauma - Empowered attacks that scale with max health",
"R": "Maximum Dosage - Heals for portion of missing health and gains movement speed"
}
},
"draven": {
"role": "Bot-lane ADC/Marksman",
"matchups": {
"strong_against": ["Vayne", "Kai'Sa", "Ezreal"],
"weak_against": ["Caitlyn", "Ashe", "Varus"]
},
"recommended_items": [
"Immortal Shieldbow",
"Berserker's Greaves",
"Bloodthirster",
"Infinity Edge",
"Lord Dominik's Regards",
"Guardian Angel"
],
"recommended_runes": [
"Lethal Tempo",
"Triumph",
"Legend: Bloodline",
"Coup de Grace",
"Absolute Focus",
"Gathering Storm"
],
"tips": "Catch axes to maximize damage output. Use W reset after catching axes for mobility.",
"abilities": {
"passive": "League of Draven - Gains stacks on catching axes, cashes out on kills",
"Q": "Spinning Axe - Empowers next attack and makes axe catchable",
"W": "Blood Rush - Gains movement and attack speed, resets on axe catch",
"E": "Stand Aside - Knocks aside and slows enemies",
"R": "Whirling Death - Global throwing axes that return"
}
},
"ekko": {
"role": "Mid/Jungle Assassin",
"matchups": {
"strong_against": ["Twisted Fate", "Veigar", "Lux"],
"weak_against": ["Kassadin", "Akali", "LeBlanc"]
},
"recommended_items": [
"Rocketbelt",
"Sorcerer's Shoes",
"Nashor's Tooth",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Dark Harvest",
"Sudden Impact",
"Eyeball Collection",
"Relentless Hunter",
"Magical Footwear",
"Cosmic Insight"
],
"tips": "Use W proactively to zone enemies. Track your ultimate shadow for escape or damage.",
"abilities": {
"passive": "Z-Drive Resonance - Three hits deal bonus damage and grant speed",
"Q": "Timewinder - Throws time device that returns dealing damage",
"W": "Parallel Convergence - Creates slow field that can stun",
"E": "Phase Dive - Rolls and empowers next attack with blink",
"R": "Chronobreak - Returns to past position, dealing AoE damage"
}
},
"elise": {
"role": "Jungle Assassin/Mage",
"matchups": {
"strong_against": ["Amumu", "Sejuani", "Zac"],
"weak_against": ["Lee Sin", "Nidalee", "Kha'Zix"]
},
"recommended_items": [
"Rocketbelt",
"Sorcerer's Shoes",
"Zhonya's Hourglass",
"Shadowflame",
"Void Staff",
"Rabadon's Deathcap"
],
"recommended_runes": [
"Electrocute",
"Sudden Impact",
"Eyeball Collection",
"Relentless Hunter",
"Magical Footwear",
"Cosmic Insight"
],
"tips": "Use human form for poke and setup, spider form for execution. Rappel can be used to dodge crucial abilities.",
"abilities": {
"passive": "Spider Queen - Can transform between human and spider form",
"Q": "Neurotoxin/Venomous Bite - % health damage/execute damage",
"W": "Volatile Spiderling/Skittering Frenzy - Explosive spider/Attack speed boost",
"E": "Cocoon/Rappel - Stun projectile/Untargetable leap",
"R": "Spider Form/Human Form - Transforms between forms"
}
},
"evelynn": {
"role": "Jungle Assassin",
"matchups": {
"strong_against": ["Karthus", "Master Yi", "Fiddlesticks"],
"weak_against": ["Lee Sin", "Rek'Sai", "Rengar"]
},
"recommended_items": [
"Rocketbelt",
"Sorcerer's Shoes",
"Mejai's Soulstealer",
"Rabadon's Deathcap",
"Void Staff",
"Zhonya's Hourglass"
],
"recommended_runes": [
"Dark Harvest",
"Sudden Impact",
"Eyeball Collection",
"Relentless Hunter",
"Absolute Focus",
"Gathering Storm"
],
"tips": "Use stealth to bypass wards and flank. Charm important targets before engaging.",
"abilities": {
"passive": "Demon Shade - Heals and becomes invisible when out of combat",
"Q": "Hate Spike - Fires spikes at nearest enemy, can be recast",
"W": "Allure - Marks target, charm when fully charged",
"E": "Whiplash - Empowered attack with bonus % max health damage",
"R": "Last Caress - Blinks back and deals massive damage to low health targets"
}
},
"ezreal": {
"role": "Bot-lane ADC/Caster",
"matchups": {
"strong_against": ["Kog'Maw", "Jinx", "Aphelios"],
"weak_against": ["Draven", "Lucian", "Kalista"]
},
"recommended_items": [
"Divine Sunderer",
"Manamune",
"Ionian Boots of Lucidity",
"Serylda's Grudge",
"Ravenous Hydra",
"Guardian Angel"
],
"recommended_runes": [
"First Strike",
"Magical Footwear",
"Biscuit Delivery",
"Cosmic Insight",
"Presence of Mind",
"Cut Down"
],
"tips": "Weave auto attacks between abilities. Use E defensively unless kill is guaranteed.",
"abilities": {
"passive": "Rising Spell Force - Gains attack speed when hitting abilities",
"Q": "Mystic Shot - Skillshot that applies on-hit effects",
"W": "Essence Flux - Marks target, detonated by abilities",
"E": "Arcane Shift - Blinks and fires homing bolt",
"R": "Trueshot Barrage - Global skillshot dealing massive damage"
}
},
"fiddlesticks": {
"role": "Jungle Control Mage",
"matchups": {
"strong_against": ["Ivern", "Amumu", "Rammus"],
"weak_against": ["Lee Sin", "Kha'Zix", "Graves"]
},
"recommended_items": [
"Rocketbelt",
"Sorcerer's Shoes",
"Zhonya's Hourglass",
"Shadowflame",
"Void Staff",
"Rabadon's Deathcap"
],
"recommended_runes": [
"Dark Harvest",
"Cheap Shot",
"Eyeball Collection",
"Ultimate Hunter",
"Perfect Timing",
"Cosmic Insight"
],
"tips": "Use effigies to control vision. Channel ultimate from unexpected angles.",
"abilities": {
"passive": "A Harmless Scarecrow - Can create and pose as scarecrow effigies",
"Q": "Terrify - Fears target enemy and deals damage",
"W": "Bountiful Harvest - Drains nearby enemies, dealing more damage to monsters",
"E": "Reap - Silences and damages enemies in area",
"R": "Crowstorm - Channels then blinks to location dealing massive AoE damage"
}
},
"fizz": {
"role": "Mid-lane Assassin",
"matchups": {
"strong_against": ["Twisted Fate", "Veigar", "Xerath"],
"weak_against": ["Galio", "Diana", "Kassadin"]
},
"recommended_items": [
"Luden's Tempest",
"Sorcerer's Shoes",
"Lich Bane",
"Zhonya's Hourglass",
"Rabadon's Deathcap",
"Void Staff"
],
"recommended_runes": [
"Electrocute",
"Sudden Impact",
"Eyeball Collection",
"Relentless Hunter",
"Transcendence",
"Gathering Storm"
],
"tips": "Use E to dodge crucial abilities. Ultimate can zone enemies even if missed.",
"abilities": {
"passive": "Nimble Fighter - Can move through units and takes reduced damage",
"Q": "Urchin Strike - Dashes through target dealing damage",
"W": "Seastone Trident - Empowers next attack with DoT",
"E": "Playful/Trickster - Becomes untargetable and can damage area",
"R": "Chum the Waters - Throws fish that creates shark, knocking up and slowing"
}
},
"galio": {
"role": "Mid-lane Tank/Mage",
"matchups": {
"strong_against": ["Katarina", "Akali", "Diana"],
"weak_against": ["Yone", "Lucian", "Tristana"]
},
"recommended_items": [