-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathforgewizard.sql
1992 lines (1908 loc) · 310 KB
/
forgewizard.sql
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
-- phpMyAdmin SQL Dump
-- version 4.4.15.5
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Dec 28, 2017 at 12:16 AM
-- Server version: 5.5.49-log
-- PHP Version: 5.6.24
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `forgewizard`
--
-- --------------------------------------------------------
--
-- Table structure for table `builds`
--
CREATE TABLE IF NOT EXISTS `builds` (
`id` int(10) unsigned NOT NULL,
`title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`keystones` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`rune_secondary_id` int(10) unsigned NOT NULL,
`rune_main_id` int(10) unsigned NOT NULL,
`patch_id` int(10) unsigned NOT NULL,
`role_id` int(10) unsigned NOT NULL,
`user_id` int(10) unsigned NOT NULL,
`champion_id` int(10) unsigned NOT NULL,
`top_player_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=176 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `builds`
--
INSERT INTO `builds` (`id`, `title`, `description`, `keystones`, `rune_secondary_id`, `rune_main_id`, `patch_id`, `role_id`, `user_id`, `champion_id`, `top_player_id`, `created_at`, `updated_at`) VALUES
(1, 'Dance in Their Ashes', 'Rapid jungle clear and neutral objective control.', '{"primary_data":[2,6,8,11],"secondary_data":[33,36]}', 3, 1, 2, 4, 3, 126, 2, '2017-12-24 17:16:36', '2017-12-24 17:16:36'),
(2, 'They Should Run Now', 'Back-line dive threat.', '{"primary_data":[2,6,8,11],"secondary_data":[44,41]}', 4, 1, 1, 4, 3, 126, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(3, 'Sacrifices Must be Made', 'Lane pressure with maximum Summoner Cooldown use.', '{"primary_data":[50,55,56,59],"secondary_data":[19,20]}', 2, 5, 2, 2, 3, 14, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(4, 'No More Hesitation', 'Massive bust damage and pseudo-assassination.', '{"primary_data":[14,19,20,23],"secondary_data":[6,11]}', 1, 2, 1, 2, 3, 14, 21, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(5, 'I Make the Rules', 'Short lane trades and empowered sustain.', '{"primary_data":[27,30,33,35],"secondary_data":[44,49]}', 4, 3, 2, 2, 3, 105, 25, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(6, 'Neutralized the Target', 'Lane dueling and sustain.', '{"primary_data":[2,5,9,12],"secondary_data":[44,48]}', 4, 1, 1, 2, 3, 105, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(7, 'Don’t Make the Yeti Angry', 'Neutral objective control and teamfight utility.', '{"primary_data":[40,43,46,48],"secondary_data":[33,36]}', 3, 4, 2, 4, 3, 45, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(8, 'Time for a Shakedown', 'Reliable skirmish sustain and lane safety.', '{"primary_data":[4,6,8,11],"secondary_data":[18,20]}', 2, 1, 2, 5, 3, 95, 19, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(9, 'All About Them Headshots', 'Sustain and late game scaling.', '{"primary_data":[4,6,10,11],"secondary_data":[33,37]}', 3, 1, 2, 5, 3, 95, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(10, 'They Have Overstepped', 'Lane poke and sustained trading pattern.', '{"primary_data":[27,30,33,35],"secondary_data":[17,20]}', 2, 3, 2, 1, 3, 80, 1, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(11, 'Superior Shurima Soldiers', 'Late-game soldiers hyper carry.', '{"primary_data":[3,7,8,11],"secondary_data":[32,37]}', 3, 1, 1, 1, 3, 80, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(12, 'The Clot Thickens', 'Summoner Spell spam and mid game power-spike.', '{"primary_data":[50,55,56,59],"secondary_data":[32,35]}', 3, 5, 2, 2, 3, 43, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(13, 'Vessel of Destruction', 'Efficient lane trading and empowered healing.', '{"primary_data":[28,31,32,35],"secondary_data":[18,23]}', 2, 3, 1, 1, 3, 43, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(14, 'Stack the Bodies Higher', 'Lane phase poke and harassment with Comet.', '{"primary_data":[27,30,32,35],"secondary_data":[44,49]}', 4, 3, 2, 2, 3, 23, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(15, 'Death Had Its Chance', 'Massive health stacking and tower smashing.', '{"primary_data":[38,42,46,47],"secondary_data":[30,35]}', 3, 4, 2, 2, 3, 23, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(16, 'Their Heartbeats Quicken', 'Maximum damage and target execution.', '{"primary_data":[14,19,20,23],"secondary_data":[6,11]}', 1, 2, 2, 4, 3, 113, 3, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(17, 'Unleash the Blind Dragon', 'Scrappy skirmishes and snowball potential.', '{"primary_data":[14,19,22,25],"secondary_data":[32,36]}', 3, 2, 1, 4, 3, 113, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(18, 'Burn Away the Shadows', 'Lane poke, pressure, and kill-threat. By: Aphromoo', '{"primary_data":[27,30,34,35],"secondary_data":[54,59]}', 5, 3, 1, 3, 3, 19, 4, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(19, 'Light Them Up', 'All-around utility and reliable damage.', '{"primary_data":[27,31,32,35],"secondary_data":[56,59]}', 5, 3, 1, 1, 3, 19, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(20, 'Their Time is Short', 'Summoner Spell cooldown abuse for aggressive picks with Flash->[R].', '{"primary_data":[50,55,56,59],"secondary_data":[33,35]}', 3, 5, 1, 1, 3, 10, 1, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(21, 'Suppression Into Oblivion', 'Lane shove, early skirmishing, and [R] spam.', '{"primary_data":[27,31,33,35],"secondary_data":[59,56]}', 5, 3, 1, 1, 3, 10, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(22, 'Nothing More Than an Insect', 'Summoner Cooldown stacking for frequent Ghost/Flash engages.', '{"primary_data":[50,53,56,59],"secondary_data":[41,48]}', 4, 5, 1, 4, 3, 117, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(23, 'Bloodshed Carries a Price', 'Lethality focused long range poke with [Q].', '{"primary_data":[27,30,33,35],"secondary_data":[6,11]}', 1, 3, 1, 5, 3, 2, 5, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(24, 'Blighted Arrow Dominance', 'Massive sustained shred damage.', '{"primary_data":[2,6,10,11],"secondary_data":[18,23]}', 2, 1, 1, 5, 3, 2, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(25, 'Nothing but Powder Monkeys', 'Lane harass pressure and late-game off-carry damage.', '{"primary_data":[27,30,33,37],"secondary_data":[17,20]}', 2, 3, 1, 3, 3, 46, 7, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(26, 'Shock and Awe', 'Lane harass and massive execution damage.', '{"primary_data":[27,30,33,35],"secondary_data":[6,11]}', 1, 3, 1, 5, 3, 46, 8, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(27, 'Why So Serious?', 'Maximum gank assassination and snowballing.', '{"primary_data":[14,19,22,25],"secondary_data":[8,11]}', 1, 2, 1, 4, 3, 68, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(28, 'Misery Loves Company', 'Reliable sustained trade damage.', '{"primary_data":[26,31,33,35],"secondary_data":[6,11]}', 1, 3, 1, 2, 3, 135, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(29, 'Sentence them to Death', 'Item efficiency and teamfight utility.', '{"primary_data":[39,43,44,49],"secondary_data":[57,59]}', 5, 4, 1, 3, 3, 62, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(30, 'Thresh Prince', 'Jack of all trades. Spam item actives.', '{"primary_data":[39,43,44,49],"secondary_data":[17,20]}', 2, 4, 1, 3, 3, 62, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(31, 'They Will Lose', 'Mid-game tankiness and teamfight strength/engagement.', '{"primary_data":[38,41,46,47],"secondary_data":[31,32]}', 3, 4, 1, 2, 3, 97, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(32, 'That’s Gotta Sting', 'Maximum lane pressure damage and harassment.', '{"primary_data":[26,31,33,35],"secondary_data":[8,11]}', 1, 3, 1, 2, 3, 26, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(33, 'Doom Build', 'On-hit lane pressure.', '{"primary_data":[51,54,57,60],"secondary_data":[34,35]}', 3, 5, 1, 2, 3, 26, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(34, 'Time to Start Some Trouble', 'Target acquisition, chasing, and spell vamp healing.', '{"primary_data":[51,55,58,59],"secondary_data":[19,23]}', 2, 5, 2, 1, 3, 35, 9, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(35, 'Back to Going Forward', 'Mid-lane assassination and lane safety.', '{"primary_data":[14,19,20,23],"secondary_data":[31,32]}', 3, 2, 1, 1, 3, 35, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(36, 'We all grow up! Well, you died', 'Maximum damage, assassination, and one-shot threat.', '{"primary_data":[14,19,22,23],"secondary_data":[35,32]}', 3, 2, 1, 1, 3, 74, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(37, 'Sorry! Beauty Always Has Tears', 'Efficient lane trading/poking and mid game power spikes.', '{"primary_data":[27,31,32,35],"secondary_data":[19,20]}', 2, 3, 1, 1, 3, 74, 1, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(38, 'This’ll be a Slaughter', 'Massive all-in 1v1 threat and split-pushing.', '{"primary_data":[3,5,8,13],"secondary_data":[19,21]}', 2, 1, 1, 2, 3, 48, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(39, 'Swinging from the Heels', 'Immovable and unstoppable frontline tank.', '{"primary_data":[38,41,46,49],"secondary_data":[6,9]}', 1, 4, 1, 2, 3, 122, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(40, 'Death by Steel', 'Unstoppable speedy ganks and active item spam.', '{"primary_data":[15,17,22,24],"secondary_data":[6,11]}', 1, 2, 1, 4, 3, 34, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(41, 'Another Body for the Gutter', 'Back-line execution damage and lane safety.', '{"primary_data":[14,19,20,25],"secondary_data":[6,11]}', 1, 2, 1, 1, 3, 12, 10, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(42, 'Another Opponent, Another Disappointment', 'Lane harass and sustained teamfight damage.', '{"primary_data":[27,30,34,35],"secondary_data":[17,23]}', 2, 3, 1, 2, 3, 94, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(43, 'Fury of the Tiger', 'Tiger Stance: Massive jungle control and rapid bleed stacking.', '{"primary_data":[2,6,8,11],"secondary_data":[33,36]}', 3, 1, 1, 4, 3, 121, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(44, 'Teach ‘Em a Harsh Lesson', 'Lane sustain, pressure, and item scaling.', '{"primary_data":[52,54,56,61],"secondary_data":[19,23]}', 2, 5, 2, 2, 3, 77, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(45, 'Never Settle for Second', 'Effective and effortless assassination/burst damage.', '{"primary_data":[14,19,22,25],"secondary_data":[6,11]}', 1, 2, 1, 2, 3, 111, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(46, 'The Formula for Success', 'Oppressive lane pressure and item efficiency.', '{"primary_data":[27,31,32,35],"secondary_data":[55,59]}', 5, 3, 2, 2, 3, 118, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(47, 'Be Their Undoing', 'Oppressive lane harass and efficient power-spikes.', '{"primary_data":[27,30,32,35],"secondary_data":[56,59]}', 5, 3, 1, 3, 3, 125, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(48, 'The Brink of Infinity', 'Lane poke pressure and back-line teamfight damage.', '{"primary_data":[27,30,32,35],"secondary_data":[6,11]}', 1, 3, 1, 1, 3, 125, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(49, 'A Constant State of Paranoia', 'Constant ganks with Ultimate [R].', '{"primary_data":[14,19,22,25],"secondary_data":[31,32]}', 3, 2, 1, 4, 3, 99, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(50, 'Their Twilight Approaches', 'Hard hitting, less frequent ultimates.', '{"primary_data":[16,19,22,25],"secondary_data":[8,11]}', 1, 2, 1, 4, 3, 99, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(51, 'Show Them the Horns', 'Ranged matchups: Lane sustain and diving tankiness.', '{"primary_data":[39,41,44,48],"secondary_data":[30,33]}', 3, 4, 2, 2, 3, 15, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(52, 'Forge Fighting', 'Lane trading, sustain, and brawling.', '{"primary_data":[38,43,46,49],"secondary_data":[57,54]}', 5, 4, 1, 2, 3, 15, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(53, 'Here Comes the Boom', 'Snowballing ganks and massive burst. From Afreeca Freecs Spirit', '{"primary_data":[2,6,8,11],"secondary_data":[34,36]}', 3, 1, 1, 4, 3, 27, 12, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(54, 'Super Rapid Fire', 'Maximum Attack Speed with Rapid Fire.', '{"primary_data":[3,6,8,11],"secondary_data":[55,56]}', 5, 1, 1, 5, 3, 27, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(55, 'Off to the Races', 'Maximum Movement Speed stacking and dive.', '{"primary_data":[15,19,20,25],"secondary_data":[33,36]}', 3, 2, 1, 4, 3, 30, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(56, 'Demacian Justice for All', 'Efficient early lane trades and kill secure with [R].', '{"primary_data":[38,41,46,49],"secondary_data":[6,11]}', 1, 4, 1, 2, 3, 139, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(57, 'Always Be Cleaving', 'Power-farm jungling and effective dueling. By: Riot Jatt', '{"primary_data":[40,42,46,47],"secondary_data":[17,23]}', 2, 4, 1, 4, 3, 69, 13, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(58, 'The Terror Beneath', 'Maximum damage and kill execution.', '{"primary_data":[2,6,8,11],"secondary_data":[32,36]}', 3, 1, 1, 4, 3, 79, 14, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(59, 'Fear the Ocean’s Weight', 'Lane sustain and teamfight utility.', '{"primary_data":[39,43,44,48],"secondary_data":[54,61]}', 5, 4, 1, 3, 3, 3, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(60, 'They’s About to Be Dead', 'Maximum damage output and dueling power.', '{"primary_data":[2,6,8,11],"secondary_data":[19,24]}', 2, 1, 1, 2, 3, 29, 15, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(61, 'Carve Off a Souvenir', 'Maximum assassination and snowball.', '{"primary_data":[14,19,20,25],"secondary_data":[31,32]}', 3, 2, 1, 4, 3, 133, 16, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(62, 'Die and Be Forgotten', 'All-in dives and roaming.', '{"primary_data":[2,6,8,11],"secondary_data":[19,25]}', 2, 1, 1, 2, 3, 76, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(63, 'There’s no turning back', 'Sustained fighting power and ramping damage.', '{"primary_data":[2,6,8,11],"secondary_data":[49,44]}', 4, 1, 1, 2, 3, 72, 17, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(64, 'Cut Them Down', 'Powerful dueling and backline presence.', '{"primary_data":[2,5,9,11],"secondary_data":[19,20]}', 2, 1, 1, 2, 3, 72, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(65, 'The Crows are Circling', 'Heavy CDR and maximum engage potential.', '{"primary_data":[27,31,32,37],"secondary_data":[55,59]}', 5, 3, 1, 4, 3, 44, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(66, 'Someone’s About To Get Hurt', 'Early-to-mid game skirmishing and snowballing', '{"primary_data":[39,41,46,48],"secondary_data":[32,35]}', 3, 4, 1, 4, 3, 91, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(67, 'Another Frozen Corpse', 'Lane pressure harass and utility.', '{"primary_data":[27,31,34,35],"secondary_data":[54,57]}', 5, 3, 1, 1, 3, 40, 18, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(68, 'Hit ’em Where It Hurts', 'Maximum damage and late game scaling.', '{"primary_data":[2,6,10,11],"secondary_data":[33,37]}', 3, 1, 1, 5, 3, 13, 19, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(69, 'Something need killin’?', 'Life steal sustain, and raw damage execution.', '{"primary_data":[2,5,10,11],"secondary_data":[18,22]}', 2, 1, 1, 5, 3, 13, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(70, 'Their Fate is Sealed', 'Lane poke, all-in, and snowballing.', '{"primary_data":[26,30,33,35],"secondary_data":[19,22]}', 2, 3, 1, 2, 3, 132, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(71, 'It Hurts so Good', 'Lane harass and utility damage.', '{"primary_data":[27,30,33,35],"secondary_data":[54,59]}', 5, 3, 2, 5, 3, 107, 5, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(72, 'Shall we dance?', 'Sustain and Attack Damage scaling.', '{"primary_data":[4,5,8,11],"secondary_data":[34,37]}', 3, 1, 1, 5, 3, 107, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(73, 'I’ve Seen Their Death', 'Wave clear pressure, roams, and maximum utility.', '{"primary_data":[50,55,58,59],"secondary_data":[31,32]}', 3, 5, 1, 1, 3, 51, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(74, 'Their Tomb Awaits', 'Massive tower pressure and lane dueling.', '{"primary_data":[38,42,46,49],"secondary_data":[9,11]}', 1, 4, 1, 2, 3, 136, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(75, 'Threading the Needle', 'Teamfight sustain and dueling power.', '{"primary_data":[3,6,8,11],"secondary_data":[32,37]}', 3, 1, 2, 5, 3, 60, 20, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(76, 'Leave Nasty Scars', 'Tank shred and scaling damage.', '{"primary_data":[2,5,8,12],"secondary_data":[32,37]}', 3, 1, 1, 5, 3, 60, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(77, 'On the Prowl', 'Map mobility, power farming, and assassination.', '{"primary_data":[14,19,22,25],"secondary_data":[33,36]}', 3, 2, 1, 4, 3, 120, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(78, 'They are Obsolete', 'Lane harass and empowered trading.', '{"primary_data":[26,29,33,35],"secondary_data":[57,54]}', 5, 3, 1, 1, 3, 4, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(79, 'Frugal Falsetto', 'Super efficient item power-spikes and gold saving.', '{"primary_data":[52,54,56,59],"secondary_data":[30,35]}', 3, 5, 1, 3, 3, 70, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(80, 'Pull Their Strings', 'Lane poke and teamfight power.', '{"primary_data":[26,30,32,35],"secondary_data":[20,24]}', 2, 3, 1, 3, 3, 70, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(81, 'Savor the Misery', 'Top lane dominance and unstoppable tankiness.', '{"primary_data":[38,41,44,47],"secondary_data":[6,8]}', 1, 4, 1, 2, 3, 127, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(82, 'A Feast Awaits', 'AD Carry protection and safety.', '{"primary_data":[40,43,46,48],"secondary_data":[60,54]}', 5, 4, 2, 3, 3, 127, 7, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(83, 'The Marin Special(ist)', 'All about the all-in. FLASHy engages. AP burst.', '{"primary_data":[50,55,57,59],"secondary_data":[31,33]}', 3, 5, 1, 2, 3, 138, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(84, 'Echoing from the Depths', 'Burst damage and meat grinder execution.', '{"primary_data":[2,6,9,11],"secondary_data":[33,31]}', 3, 1, 1, 2, 3, 41, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(85, 'Gotta Go Fast', 'Massive Movement Speed, roaming, and map pressure.', '{"primary_data":[15,19,22,25],"secondary_data":[33,29]}', 3, 2, 1, 2, 3, 56, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(86, 'Throw it in Their Face!', 'Stacking CDR and lane harassment.', '{"primary_data":[27,30,32,35],"secondary_data":[59,54]}', 5, 3, 1, 1, 3, 8, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(87, 'Death is in Bloom', 'Oppressive lane pressure and poke.', '{"primary_data":[26,30,34,35],"secondary_data":[20,17]}', 2, 3, 1, 3, 3, 75, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(88, 'A Little Star Fire', 'Map mobility pressure and teamfight scaling.', '{"primary_data":[28,29,33,36],"secondary_data":[7,11]}', 1, 3, 2, 1, 3, 61, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(89, 'Rest in Peace', 'Massive damage scaling and kill threat.', '{"primary_data":[27,31,34,37],"secondary_data":[11,7]}', 1, 3, 1, 1, 3, 63, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(90, 'Embrace the night', 'Lane safety and burst damage.', '{"primary_data":[14,19,20,25],"secondary_data":[29,35]}', 3, 2, 1, 1, 3, 55, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(91, 'Don’t Throw a Tantrum', 'Tank engage and teamfight utility.', '{"primary_data":[39,41,46,47],"secondary_data":[32,31]}', 3, 4, 2, 4, 3, 65, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(92, 'Try that Again', 'Reliable and strong lane harass. CDR and item safety.', '{"primary_data":[26,31,32,35],"secondary_data":[59,55]}', 5, 3, 1, 1, 3, 71, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(93, 'Rip Them to Bits', 'All-around dueling and map control.', '{"primary_data":[2,6,9,11],"secondary_data":[19,20]}', 2, 1, 1, 4, 3, 108, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(94, 'Who’s next?', 'Last game scaling and dueling split push.', '{"primary_data":[3,6,8,11],"secondary_data":[31,37]}', 3, 1, 1, 2, 3, 17, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(95, 'Bankplank Mid', 'Lane sustain, money stacking, and global pressure.', '{"primary_data":[52,55,57,59],"secondary_data":[31,32]}', 3, 5, 1, 1, 3, 84, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(96, 'Bankplank', 'Lane sustain, money stacking, and global pressure.', '{"primary_data":[52,55,57,59],"secondary_data":[31,32]}', 3, 5, 1, 2, 3, 84, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(97, 'Always on the Run', 'Roaming and map pressure with [R].', '{"primary_data":[27,31,33,35],"secondary_data":[25,17]}', 2, 3, 2, 1, 3, 37, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(98, 'Who Wants a Piece?', 'Ramping damage and 1v1/split-push power.', '{"primary_data":[2,6,9,11],"secondary_data":[41,49]}', 4, 1, 1, 2, 3, 49, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(99, 'Beaten By a Little Girl', 'Massive burst damage and roaming.', '{"primary_data":[14,17,20,25],"secondary_data":[31,32]}', 3, 2, 1, 1, 3, 32, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(100, 'No Boots No Problem', 'Kiting Movement Speed and late game scaling.', '{"primary_data":[28,30,33,37],"secondary_data":[7,11]}', 1, 3, 1, 1, 3, 116, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(101, 'Consider Them Spanked', 'Lane safety and massive scaling damage.', '{"primary_data":[4,6,9,11],"secondary_data":[37,29]}', 3, 1, 1, 1, 3, 85, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(102, 'Stay Dead', 'Ramping damage and tank shredding.', '{"primary_data":[2,5,10,11],"secondary_data":[19,20]}', 2, 1, 1, 5, 3, 7, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(103, 'Deadly Disintegration Damage', 'Maximum AP and 1-shot potential.', '{"primary_data":[14,17,20,23],"secondary_data":[34,37]}', 3, 2, 1, 1, 3, 103, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(104, 'Their Lives are Forfeit', 'Ramping damage and backline pressure.', '{"primary_data":[2,6,9,11],"secondary_data":[41,49]}', 4, 1, 1, 4, 3, 39, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(105, 'Life’s Cheap, Death Pays', 'Heavy sustain, life steal, and safety.', '{"primary_data":[4,5,10,12],"secondary_data":[18,20]}', 2, 1, 1, 5, 3, 24, 2, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(106, 'Those in Glass Houses', 'Well-rounded lane presence and late-game scaling.', '{"primary_data":[27,30,33,35],"secondary_data":[6,11]}', 1, 3, 2, 1, 3, 104, 22, '2017-12-24 17:16:41', '2017-12-24 17:16:41'),
(107, 'End of the Line', 'Massive burst damage and dueling.', '{"primary_data":[14,19,20,23],"secondary_data":[8,11]}', 1, 2, 2, 4, 3, 129, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(108, 'Blaze a Trail', 'Massive damage on slowed targets.', '{"primary_data":[27,30,34,35],"secondary_data":[17,23]}', 2, 3, 2, 3, 3, 112, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(109, 'Bird is the Word', 'Massive scaling damage and Zhonya''s safety.', '{"primary_data":[27,30,32,37],"secondary_data":[55,59]}', 5, 3, 1, 1, 3, 67, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(110, 'Another Unworthy Opponent', 'Maximum damage, kill threat, and efficient power spikes.', '{"primary_data":[14,19,22,23],"secondary_data":[55,57]}', 5, 2, 1, 1, 3, 137, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(111, 'Hip Hop a Potamus', 'Maximum execute damage.', '{"primary_data":[2,5,10,11],"secondary_data":[19,21]}', 2, 1, 1, 5, 3, 82, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(112, 'Nature’s Grasping at Straws', 'Engage, tankiness, and massive team-wide healing.', '{"primary_data":[39,43,46,48],"secondary_data":[55,56]}', 5, 4, 1, 2, 3, 100, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(113, 'You lose', 'Mobility, scaling, and item efficiency.', '{"primary_data":[28,30,32,37],"secondary_data":[59,55]}', 5, 3, 1, 1, 3, 22, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(114, 'Wash the Pain Away', 'Aggressive lane trading and mobility.', '{"primary_data":[26,30,33,35],"secondary_data":[20,17]}', 2, 3, 1, 3, 3, 78, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(115, 'Ask Questions Later', 'Burst damage and snowball potential.', '{"primary_data":[14,19,22,25],"secondary_data":[6,11]}', 1, 2, 1, 4, 3, 57, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(116, 'Keep Punching', 'Dive, blow up your target, and get out alive.', '{"primary_data":[39,41,44,47],"secondary_data":[8,11]}', 1, 4, 1, 4, 3, 57, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(117, 'Classic Misdirection', 'Assasination and well-rounded utility.', '{"primary_data":[14,19,22,23],"secondary_data":[32,31]}', 3, 2, 1, 1, 3, 42, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(118, 'I’m Just Trolling', 'Heavy split-push and healing.', '{"primary_data":[38,42,44,48],"secondary_data":[8,5]}', 1, 4, 1, 2, 3, 89, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(119, 'Give Up Now', 'Maximum burst and scaling.', '{"primary_data":[14,17,21,23],"secondary_data":[37,32]}', 3, 2, 1, 1, 3, 88, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(120, 'Slice ‘Em and Dice ‘Em', 'Good mix of offensive and defensive power.', '{"primary_data":[2,5,9,11],"secondary_data":[49,44]}', 4, 1, 1, 2, 3, 101, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(121, 'Act With Conviction', 'Mix of utility and early-game strength.', '{"primary_data":[26,31,32,35],"secondary_data":[59,56]}', 5, 3, 1, 3, 3, 86, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(122, 'Scrap and Equalize', 'Lane bullying and mid-game scaling.', '{"primary_data":[27,31,34,35],"secondary_data":[55,57]}', 5, 3, 1, 2, 3, 115, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(123, 'A True Display of Damage', 'Hyper-scaling and late-game carry.', '{"primary_data":[2,5,10,13],"secondary_data":[32,37]}', 3, 1, 1, 5, 3, 134, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(124, 'Money in the Bank', 'Money-making, weak early, and accelerated item scaling.', '{"primary_data":[52,54,57,59],"secondary_data":[6,11]}', 1, 5, 1, 5, 3, 134, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(125, 'Gimmie All Those Chimes', 'Map Roaming and kill pressure.', '{"primary_data":[14,17,20,25],"secondary_data":[35,30]}', 3, 2, 1, 3, 3, 92, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(126, 'Truly Outrageous', 'Powerful Heals, Shields, and Active Items.', '{"primary_data":[40,43,44,48],"secondary_data":[24,20]}', 2, 4, 1, 3, 3, 87, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(127, 'They Will Suffer', 'All-around versatility and efficiency.', '{"primary_data":[27,30,32,35],"secondary_data":[55,59]}', 5, 3, 1, 3, 3, 50, 2, '2017-12-24 17:16:42', '2017-12-24 17:16:42'),
(128, 'Breach the Gates', 'Split push, scaling, and opening the gates.', '{"primary_data":[28,31,32,37],"secondary_data":[42,49]}', 4, 3, 1, 2, 3, 119, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(129, 'Moss Builds Character', 'Early skirmishing and empowering teammates.', '{"primary_data":[26,31,32,35],"secondary_data":[48,46]}', 4, 3, 1, 4, 3, 81, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(130, 'Ok.', 'Maximum tank and target acquisition.', '{"primary_data":[39,41,46,47],"secondary_data":[17,25]}', 2, 4, 2, 4, 3, 66, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(131, 'Agonizing Allure', 'Pure assassination and map presence.', '{"primary_data":[14,19,22,25],"secondary_data":[31,33]}', 3, 2, 2, 4, 3, 53, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(132, 'Let’s Dance', 'Teamfight initiation and survivability.', '{"primary_data":[39,43,46,48],"secondary_data":[32,31]}', 3, 4, 1, 3, 3, 58, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(133, 'Where Do You Think You’re going?', 'Lane dominance, chase, and kill potential.', '{"primary_data":[51,55,57,60],"secondary_data":[8,11]}', 1, 5, 1, 2, 3, 90, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(134, 'Hip Hop Hyper', 'Split-push dueling and tower pressure.', '{"primary_data":[2,6,8,11],"secondary_data":[42,46]}', 4, 1, 1, 2, 3, 90, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(135, 'From the Shadows', 'Split push and map pressure with ult.', '{"primary_data":[38,42,46,47],"secondary_data":[32,31]}', 3, 4, 1, 2, 3, 18, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(136, 'How About a Drink?', 'Split-push, lane sustain, and summoner spell spam.', '{"primary_data":[50,54,56,61],"secondary_data":[41,44]}', 4, 5, 1, 2, 3, 52, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(137, 'Unbreakable Freljord Heart', 'Shields, heals, and all about the tankiness.', '{"primary_data":[40,43,44,49],"secondary_data":[61,56]}', 5, 4, 2, 3, 3, 106, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(138, 'Try to Leave a Dent', 'Lane dominance kill threat and map roaming', '{"primary_data":[39,42,46,49],"secondary_data":[17,25]}', 2, 4, 2, 3, 3, 1, 4, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(139, 'Can’t Milk Those', 'Engage and teamfight power with item actives.', '{"primary_data":[39,43,44,48],"secondary_data":[20,24]}', 2, 4, 1, 3, 3, 21, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(140, 'Bring down the Guillotine', 'Resets on resets. Snowball and solo carry.', '{"primary_data":[16,17,22,23],"secondary_data":[48,46]}', 4, 2, 1, 2, 3, 33, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(141, 'Decimate the Competition', 'Run down and Decimate the enemy.', '{"primary_data":[28,30,33,37],"secondary_data":[48,46]}', 4, 3, 1, 2, 3, 33, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(142, 'Feel the Thunder', 'Lane bullying and mana sustain', '{"primary_data":[2,7,9,12],"secondary_data":[32,30]}', 3, 1, 1, 2, 3, 38, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(143, 'Honor, Death, and Hangovers', 'Lane sustain/Life Steal and tank shredding', '{"primary_data":[2,5,10,12],"secondary_data":[44,48]}', 4, 1, 1, 2, 3, 93, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(144, 'No More Running', 'Glass cannon and kill threat', '{"primary_data":[2,6,8,11],"secondary_data":[19,21]}', 2, 1, 1, 1, 3, 93, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(145, 'Dodge this!', 'Teamfight initiation and tankiness.', '{"primary_data":[39,43,46,48],"secondary_data":[53,59]}', 5, 4, 1, 4, 3, 123, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(146, 'Taste Their Fear', 'Assassination and pure reset potential.', '{"primary_data":[16,19,22,24],"secondary_data":[11,6]}', 1, 2, 1, 4, 3, 31, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(147, 'Spider Queen', 'Assassination and jungle dominance', '{"primary_data":[14,19,22,23],"secondary_data":[32,36]}', 3, 2, 1, 4, 3, 109, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(148, 'Primal Domination', 'Great mix of damage and tankiness.', '{"primary_data":[2,5,9,11],"secondary_data":[41,46]}', 4, 1, 1, 4, 3, 28, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(149, 'Wuju Bladesman', 'Raw power and snowball.', '{"primary_data":[3,6,8,11],"secondary_data":[19,22]}', 2, 1, 1, 4, 3, 20, 2, '2017-12-24 17:16:43', '2017-12-24 17:16:43'),
(150, 'Pure Cataclysm', 'Full offensive kill potential.', '{"primary_data":[14,19,22,25],"secondary_data":[6,8]}', 1, 2, 1, 4, 3, 102, 23, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(151, 'Stuns for Days', 'Maximum utility and ability spam.', '{"primary_data":[4,5,8,12],"secondary_data":[31,32]}', 3, 1, 1, 5, 3, 47, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(152, 'Make It Count', 'Massive damage and teamfight presence.', '{"primary_data":[2,5,8,11],"secondary_data":[17,21]}', 2, 1, 1, 5, 3, 47, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(153, 'They’re Not Laughing', 'Hyper-scaling damage and reset damage.', '{"primary_data":[3,6,8,11],"secondary_data":[33,37]}', 3, 1, 1, 5, 3, 124, 19, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(154, 'Artillery of the Living', 'Maximum Attack Speed and shred.', '{"primary_data":[3,6,8,12],"secondary_data":[21,23]}', 2, 1, 1, 5, 3, 16, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(155, 'Rat-Ta-Tat', 'Assassination and teamfight takeover.', '{"primary_data":[3,6,8,12],"secondary_data":[19,21]}', 2, 1, 1, 5, 3, 54, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(156, 'Rough and Tumble', 'Lane sustain, mobility, and dueling.', '{"primary_data":[4,6,8,11],"secondary_data":[19,23]}', 2, 1, 1, 5, 3, 114, 6, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(157, 'Playfully Trick ‘Em', 'Balance of damage and utility.', '{"primary_data":[14,19,22,24],"secondary_data":[32,29]}', 3, 2, 2, 1, 3, 130, 22, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(158, 'All About Them Resets', 'Assassinate, reset, and repeat.', '{"primary_data":[14,19,22,23],"secondary_data":[6,11]}', 1, 2, 1, 1, 3, 98, 24, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(159, 'Unleash Power', 'Lane dominance and AP scaling.', '{"primary_data":[14,17,21,23],"secondary_data":[34,37]}', 3, 2, 1, 1, 3, 59, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(160, 'Contempt for Mages', 'Difficult AP matchups.', '{"primary_data":[14,19,22,25],"secondary_data":[32,29]}', 3, 2, 1, 1, 3, 11, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(161, 'What Was That?!', 'Maximum damage and abuse squishys.', '{"primary_data":[14,19,22,25],"secondary_data":[6,11]}', 1, 2, 2, 1, 3, 11, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(162, 'Like Clockwork', 'Lane dominance and teamfight utility.', '{"primary_data":[26,30,32,35],"secondary_data":[55,59]}', 5, 3, 2, 1, 3, 110, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(163, 'I Lend My Aid', 'Heals, heals, and more heals.', '{"primary_data":[26,30,33,35],"secondary_data":[48,43]}', 4, 3, 2, 3, 3, 25, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(164, 'Rhaast the Bruiser', 'Duel and wear-down your opponents.', '{"primary_data":[16,19,22,23],"secondary_data":[48,46]}', 4, 2, 1, 4, 3, 73, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(165, 'The Shadow Assassin', 'See. Seek. Kill.', '{"primary_data":[16,19,22,23],"secondary_data":[6,11]}', 1, 2, 1, 4, 3, 73, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(166, 'Go Go Golem', 'Cheese, kill, and snowball.', '{"primary_data":[39,42,44,49],"secondary_data":[53,57]}', 5, 4, 2, 3, 3, 96, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(167, 'All About Them Shields and Heals', 'Heavy focus on empowered shield/heals.', '{"primary_data":[26,30,32,36],"secondary_data":[48,44]}', 4, 3, 1, 3, 3, 83, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(168, 'Colossally Smashing Lane', 'Dominate lane & pressure the map.', '{"primary_data":[39,41,45,49],"secondary_data":[30,32]}', 3, 4, 1, 2, 3, 36, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(169, 'Colossal teamfighter', 'Lane bully and skirmishing.', '{"primary_data":[39,41,45,49],"secondary_data":[30,32]}', 3, 4, 1, 1, 3, 36, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(170, 'Grand Challenge and Carry', 'Raw damage and snowball potential.', '{"primary_data":[2,6,10,11],"secondary_data":[19,22]}', 2, 1, 1, 2, 3, 6, 2, '2017-12-24 17:16:44', '2017-12-24 17:16:44'),
(171, 'Scrap, Stun, and Succeed', 'Health stacking and map control.', '{"primary_data":[39,43,44,47],"secondary_data":[20,25]}', 2, 4, 1, 4, 3, 5, 2, '2017-12-24 17:16:45', '2017-12-24 17:16:45'),
(172, 'Poke, Pressure, and Pix!', 'Poke, skirmishing, and lane dominance.', '{"primary_data":[26,31,32,35],"secondary_data":[20,17]}', 2, 3, 1, 3, 3, 9, 2, '2017-12-24 17:16:45', '2017-12-24 17:16:45'),
(173, 'Health Stack on Health Stack', 'Doubling down on health stacking and tankiness.', '{"primary_data":[38,42,46,47],"secondary_data":[6,9]}', 1, 4, 1, 2, 3, 64, 2, '2017-12-24 17:16:45', '2017-12-24 17:16:45'),
(174, 'The Poking Fox', 'Consistent lane pressure and item efficiency.', '{"primary_data":[27,31,32,35],"secondary_data":[55,56]}', 5, 3, 1, 1, 3, 128, 2, '2017-12-24 17:16:45', '2017-12-24 17:16:45'),
(175, 'Burst. Snowball. Carry.', 'Kill and carry potential.', '{"primary_data":[14,19,22,23],"secondary_data":[35,32]}', 3, 2, 1, 1, 3, 128, 2, '2017-12-24 17:16:45', '2017-12-24 17:16:45');
-- --------------------------------------------------------
--
-- Table structure for table `champions`
--
CREATE TABLE IF NOT EXISTS `champions` (
`id` int(10) unsigned NOT NULL,
`champion_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`champion_key` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`champion_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`champion_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`champion_isFree` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=140 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `champions`
--
INSERT INTO `champions` (`id`, `champion_id`, `champion_key`, `champion_name`, `champion_title`, `champion_isFree`, `created_at`, `updated_at`) VALUES
(1, '89', 'Leona', 'Leona', 'the Radiant Dawn', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(2, '110', 'Varus', 'Varus', 'the Arrow of Retribution', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(3, '111', 'Nautilus', 'Nautilus', 'the Titan of the Depths', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(4, '112', 'Viktor', 'Viktor', 'the Machine Herald', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(5, '113', 'Sejuani', 'Sejuani', 'Fury of the North', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(6, '114', 'Fiora', 'Fiora', 'the Grand Duelist', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(7, '236', 'Lucian', 'Lucian', 'the Purifier', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(8, '115', 'Ziggs', 'Ziggs', 'the Hexplosives Expert', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(9, '117', 'Lulu', 'Lulu', 'the Fae Sorceress', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(10, '90', 'Malzahar', 'Malzahar', 'the Prophet of the Void', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(11, '238', 'Zed', 'Zed', 'the Master of Shadows', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(12, '91', 'Talon', 'Talon', 'the Blade''s Shadow', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(13, '119', 'Draven', 'Draven', 'the Glorious Executioner', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(14, '92', 'Riven', 'Riven', 'the Exile', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(15, '516', 'Ornn', 'Ornn', 'The Fire below the Mountain', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(16, '96', 'KogMaw', 'Kog''Maw', 'the Mouth of the Abyss', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(17, '10', 'Kayle', 'Kayle', 'The Judicator', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(18, '98', 'Shen', 'Shen', 'the Eye of Twilight', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(19, '99', 'Lux', 'Lux', 'the Lady of Luminosity', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(20, '11', 'MasterYi', 'Master Yi', 'the Wuju Bladesman', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(21, '12', 'Alistar', 'Alistar', 'the Minotaur', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(22, '13', 'Ryze', 'Ryze', 'the Rune Mage', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(23, '14', 'Sion', 'Sion', 'The Undead Juggernaut', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(24, '15', 'Sivir', 'Sivir', 'the Battle Mistress', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(25, '16', 'Soraka', 'Soraka', 'the Starchild', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(26, '17', 'Teemo', 'Teemo', 'the Swift Scout', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(27, '18', 'Tristana', 'Tristana', 'the Yordle Gunner', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(28, '19', 'Warwick', 'Warwick', 'the Uncaged Wrath of Zaun', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(29, '240', 'Kled', 'Kled', 'the Cantankerous Cavalier', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(30, '120', 'Hecarim', 'Hecarim', 'the Shadow of War', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(31, '121', 'Khazix', 'Kha''Zix', 'the Voidreaver', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(32, '1', 'Annie', 'Annie', 'the Dark Child', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(33, '122', 'Darius', 'Darius', 'the Hand of Noxus', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(34, '2', 'Olaf', 'Olaf', 'the Berserker', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(35, '245', 'Ekko', 'Ekko', 'the Boy Who Shattered Time', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(36, '3', 'Galio', 'Galio', 'the Colossus', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(37, '4', 'TwistedFate', 'Twisted Fate', 'the Card Master', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(38, '126', 'Jayce', 'Jayce', 'the Defender of Tomorrow', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(39, '5', 'XinZhao', 'Xin Zhao', 'the Seneschal of Demacia', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(40, '127', 'Lissandra', 'Lissandra', 'the Ice Witch', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(41, '6', 'Urgot', 'Urgot', 'the Dreadnought', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(42, '7', 'Leblanc', 'LeBlanc', 'the Deceiver', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(43, '8', 'Vladimir', 'Vladimir', 'the Crimson Reaper', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(44, '9', 'Fiddlesticks', 'Fiddlesticks', 'the Harbinger of Doom', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(45, '20', 'Nunu', 'Nunu', 'the Yeti Rider', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(46, '21', 'MissFortune', 'Miss Fortune', 'the Bounty Hunter', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(47, '22', 'Ashe', 'Ashe', 'the Frost Archer', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(48, '23', 'Tryndamere', 'Tryndamere', 'the Barbarian King', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(49, '24', 'Jax', 'Jax', 'Grandmaster at Arms', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(50, '25', 'Morgana', 'Morgana', 'Fallen Angel', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(51, '26', 'Zilean', 'Zilean', 'the Chronokeeper', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(52, '27', 'Singed', 'Singed', 'the Mad Chemist', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(53, '28', 'Evelynn', 'Evelynn', 'Agony''s Embrace', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(54, '29', 'Twitch', 'Twitch', 'the Plague Rat', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(55, '131', 'Diana', 'Diana', 'Scorn of the Moon', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(56, '133', 'Quinn', 'Quinn', 'Demacia''s Wings', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(57, '254', 'Vi', 'Vi', 'the Piltover Enforcer', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(58, '497', 'Rakan', 'Rakan', 'The Charmer', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(59, '134', 'Syndra', 'Syndra', 'the Dark Sovereign', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(60, '498', 'Xayah', 'Xayah', 'the Rebel', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(61, '136', 'AurelionSol', 'Aurelion Sol', 'The Star Forger', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(62, '412', 'Thresh', 'Thresh', 'the Chain Warden', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(63, '30', 'Karthus', 'Karthus', 'the Deathsinger', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(64, '31', 'Chogath', 'Cho''Gath', 'the Terror of the Void', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(65, '32', 'Amumu', 'Amumu', 'the Sad Mummy', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(66, '33', 'Rammus', 'Rammus', 'the Armordillo', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(67, '34', 'Anivia', 'Anivia', 'the Cryophoenix', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(68, '35', 'Shaco', 'Shaco', 'the Demon Jester', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(69, '36', 'DrMundo', 'Dr. Mundo', 'the Madman of Zaun', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(70, '37', 'Sona', 'Sona', 'Maven of the Strings', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(71, '38', 'Kassadin', 'Kassadin', 'the Void Walker', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(72, '39', 'Irelia', 'Irelia', 'the Will of the Blades', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(73, '141', 'Kayn', 'Kayn', 'the Shadow Reaper', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(74, '142', 'Zoe', 'Zoe', 'the Aspect of Twilight', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(75, '143', 'Zyra', 'Zyra', 'Rise of the Thorns', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(76, '266', 'Aatrox', 'Aatrox', 'the Darkin Blade', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(77, '420', 'Illaoi', 'Illaoi', 'the Kraken Priestess', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(78, '267', 'Nami', 'Nami', 'the Tidecaller', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(79, '421', 'RekSai', 'Rek''Sai', 'the Void Burrower', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(80, '268', 'Azir', 'Azir', 'the Emperor of the Sands', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(81, '427', 'Ivern', 'Ivern', 'the Green Father', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(82, '429', 'Kalista', 'Kalista', 'the Spear of Vengeance', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(83, '40', 'Janna', 'Janna', 'the Storm''s Fury', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(84, '41', 'Gangplank', 'Gangplank', 'the Saltwater Scourge', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(85, '42', 'Corki', 'Corki', 'the Daring Bombardier', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(86, '43', 'Karma', 'Karma', 'the Enlightened One', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(87, '44', 'Taric', 'Taric', 'the Shield of Valoran', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(88, '45', 'Veigar', 'Veigar', 'the Tiny Master of Evil', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(89, '48', 'Trundle', 'Trundle', 'the Troll King', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(90, '150', 'Gnar', 'Gnar', 'the Missing Link', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(91, '154', 'Zac', 'Zac', 'the Secret Weapon', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(92, '432', 'Bard', 'Bard', 'the Wandering Caretaker', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(93, '157', 'Yasuo', 'Yasuo', 'the Unforgiven', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(94, '50', 'Swain', 'Swain', 'the Master Tactician', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(95, '51', 'Caitlyn', 'Caitlyn', 'the Sheriff of Piltover', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(96, '53', 'Blitzcrank', 'Blitzcrank', 'the Great Steam Golem', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(97, '54', 'Malphite', 'Malphite', 'Shard of the Monolith', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(98, '55', 'Katarina', 'Katarina', 'the Sinister Blade', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(99, '56', 'Nocturne', 'Nocturne', 'the Eternal Nightmare', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(100, '57', 'Maokai', 'Maokai', 'the Twisted Treant', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(101, '58', 'Renekton', 'Renekton', 'the Butcher of the Sands', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(102, '59', 'JarvanIV', 'Jarvan IV', 'the Exemplar of Demacia', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(103, '161', 'Velkoz', 'Vel''Koz', 'the Eye of the Void', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(104, '163', 'Taliyah', 'Taliyah', 'the Stoneweaver', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(105, '164', 'Camille', 'Camille', 'the Steel Shadow', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(106, '201', 'Braum', 'Braum', 'the Heart of the Freljord', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(107, '202', 'Jhin', 'Jhin', 'the Virtuoso', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(108, '203', 'Kindred', 'Kindred', 'The Eternal Hunters', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(109, '60', 'Elise', 'Elise', 'the Spider Queen', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(110, '61', 'Orianna', 'Orianna', 'the Lady of Clockwork', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(111, '62', 'MonkeyKing', 'Wukong', 'the Monkey King', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(112, '63', 'Brand', 'Brand', 'the Burning Vengeance', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(113, '64', 'LeeSin', 'Lee Sin', 'the Blind Monk', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(114, '67', 'Vayne', 'Vayne', 'the Night Hunter', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(115, '68', 'Rumble', 'Rumble', 'the Mechanized Menace', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(116, '69', 'Cassiopeia', 'Cassiopeia', 'the Serpent''s Embrace', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(117, '72', 'Skarner', 'Skarner', 'the Crystal Vanguard', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(118, '74', 'Heimerdinger', 'Heimerdinger', 'the Revered Inventor', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(119, '75', 'Nasus', 'Nasus', 'the Curator of the Sands', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(120, '76', 'Nidalee', 'Nidalee', 'the Bestial Huntress', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(121, '77', 'Udyr', 'Udyr', 'the Spirit Walker', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(122, '78', 'Poppy', 'Poppy', 'Keeper of the Hammer', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(123, '79', 'Gragas', 'Gragas', 'the Rabble Rouser', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(124, '222', 'Jinx', 'Jinx', 'the Loose Cannon', '1', '2017-12-18 22:35:33', '2017-12-18 22:35:37'),
(125, '101', 'Xerath', 'Xerath', 'the Magus Ascendant', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(126, '102', 'Shyvana', 'Shyvana', 'the Half-Dragon', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(127, '223', 'TahmKench', 'Tahm Kench', 'the River King', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(128, '103', 'Ahri', 'Ahri', 'the Nine-Tailed Fox', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(129, '104', 'Graves', 'Graves', 'the Outlaw', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(130, '105', 'Fizz', 'Fizz', 'the Tidal Trickster', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(131, '106', 'Volibear', 'Volibear', 'the Thunder''s Roar', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(132, '80', 'Pantheon', 'Pantheon', 'the Artisan of War', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(133, '107', 'Rengar', 'Rengar', 'the Pridestalker', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(134, '81', 'Ezreal', 'Ezreal', 'the Prodigal Explorer', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(135, '82', 'Mordekaiser', 'Mordekaiser', 'the Iron Revenant', '0', '2017-12-18 22:35:33', '2017-12-18 22:35:33'),
(136, '83', 'Yorick', 'Yorick', 'Shepherd of Souls', '0', '2017-12-18 22:35:34', '2017-12-18 22:35:34'),
(137, '84', 'Akali', 'Akali', 'the Fist of Shadow', '0', '2017-12-18 22:35:34', '2017-12-18 22:35:34'),
(138, '85', 'Kennen', 'Kennen', 'the Heart of the Tempest', '0', '2017-12-18 22:35:34', '2017-12-18 22:35:34'),
(139, '86', 'Garen', 'Garen', 'The Might of Demacia', '0', '2017-12-18 22:35:34', '2017-12-18 22:35:34');
-- --------------------------------------------------------
--
-- Table structure for table `keystones`
--
CREATE TABLE IF NOT EXISTS `keystones` (
`id` int(10) unsigned NOT NULL,
`stone_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`stone_title` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`stone_image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`isKey` tinyint(1) NOT NULL,
`stone_video` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`stone_long_description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`stone_short_description` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`stone_taken_on` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`runes_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=62 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `keystones`
--
INSERT INTO `keystones` (`id`, `stone_id`, `stone_title`, `stone_image`, `isKey`, `stone_video`, `stone_long_description`, `stone_short_description`, `stone_taken_on`, `runes_id`, `created_at`, `updated_at`) VALUES
(2, '8005', 'Press the Attack', '8005', 1, 'render_PTA.mp4', '<p>Hitting an enemy champion with 3 consecutive basic attacks will deal 30 - 120 bonus adaptive damage (based on level) and makes them vulnerable, increasing the damage they take by 12% from all sources for 6s.</p>\n', '3 attack burst | Teammates deal bonus damage to target.', 'Irelia|Fiora|Ezreal|Draven|Lucian|Ashe', 1, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(3, '8008', 'Lethal Tempo', '8008', 1, 'render_LethalTempo.mp4', '<p>1.5s after damaging a champion gain 30 - 80% Attack Speed (based on level) for 3s. Attacking a champion extends the effect to 6s.</p>\n<p>Cooldown: 6s</p>\n<p>Lethal Tempo allows you to temporarily exceed the attack speed limit.</p>\n', 'Tons of attack speed | Exceeds Attack Speed limit.', 'Jinx|Twitch|Xayah|Azir|Kayle|Kog''Maw', 1, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(4, '8021', 'Fleet Footwork', '8021', 1, 'render_FleetFootwork.mp4', '<p>Attacking a moving builds Energy stacks. At 100 stacks, your next attack is Energized.</p>\n<p>Energized attacks heal you for 3 - 60 (+0.30 bonus AD, +0.40 AP) and grant 30% increased Movement Speed for 1s.</p>\n<p>Healing is 60% as effective when used on a minion.<br />\nIf the attack that activates Fleet Footwork is a critical hit, Fleet Footwork''s healing is increased by 40% of your critical damage modifier</p>\n', 'Lane sustain | Engage Movement. Think old Warlords.', 'Caitlyn|Ashe|Jhin|Sivir|Corki|Vayne', 1, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(5, '9101', 'Overheal', '9101', 0, '', '<p>Excess healing on you becomes a shield, for up to 10% of your total health + 10.</p>\n<p>Shield is built up from 40% of excess healing from self, or 300% of excess healing from allies.</p>\n', 'Excess incoming heals become a shield (includes lifesteal etc.)', 'Draven|Jhin|Lucian|Kalista|Sivir|Renekton', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(6, '9111', 'Triumph', '9111', 0, '', '<p>Takedowns restore 12% of your missing health and grant an additional 25 gold.</p>\n', 'Kills / Assists restore health and give 25 gold. Think old Dangerous Game.', 'Xin Zhao|Draven|Cho''Gath|Corki|Ezreal|Kha''Zix', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(7, '8009', 'Presence of Mind', '8009', 0, '', '<p>For 7s after gaining a level or takedown the mana you spend on abilities is fully restored.</p>\n', 'Level ups / Kills / Assists give free mana for 5 seconds.', 'Jayce|Azir|Cassiopeia|Aurelion Sol|Karthus', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(8, '9104', 'Legend: Alacrity', '9104', 0, '', '<p>Gain 3% Attack Speed plus an additional 1.5% for every <em>Legend</em> stack (max 10 stacks).</p>\n<p>Earn progress toward <em>Legend</em> stacks for every champion takedown, epic monster takedown, large monster kill, and minion kill.</p>\n', 'Attack Speed stacks from CS / Kills / Assists', 'Shaco|Kog''Maw|Xayah|Graves|Kayle|Udyr', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(9, '9105', 'Legend: Tenacity', '9105', 0, '', '<p>Gain 5% tenacity plus an additional 1.5% for every <em>Legend</em> stack (max 10 stacks).</p>\n<p>Earn progress toward <em>Legend</em> stacks for every champion takedown, epic monster takedown, large monster kill, and minion kill.</p>\n', 'Tenacity stacks from CS / Kills / Assists', 'Warwick|Corki|Renekton|Kindred|Poppy|Camille', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(10, '9103', 'Legend: Bloodline', '9103', 0, '', '<p>Gain 0.8% life steal for every <em>Legend</em> stack (max 10 stacks).</p>\n<p>Earn progress toward <em>Legend</em> stacks for every champion takedown, epic monster takedown, large monster kill, and minion kill.</p>\n', 'Life Steal stacks from CS / Kills / Assists', 'Lucian|Fiora|Kalista|Ezreal|Varus|Draven', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(11, '8014', 'Coup De Grace', '8014', 0, '', '<p>Deal 9% more damage to champions who have less than 40% health.</p>\n<p>Additionally, takedowns on champions grant an <span>adaptive</span> bonus of 9 Attack Damage or 15 Ability Power for 10s.</p>\n', 'Execute damage | Kills / Assists grant temporary AP/AD', 'Ashe|Gnar|Shaco|Yorick|Master Yi|Karthus', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(12, '8017', 'Cut Down', '8017', 0, '', '<p>Deal 4% more damage to champions with 150 more max health than you, increasing to 10% at 2000 more max health.</p>\n', 'Tank killer', 'Twitch|Yasuo|Sivir|Jayce|Camille|Ashe', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(13, '8299', 'Last Stand', '8299', 0, '', '<p>Deal 5 - 12% increased damage to champions while you are below 60% health, maximum damage gained at 30% health.</p>\n', 'Extra damage when low health.', 'Tryndamere|Ezreal', 1, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(14, '8112', 'Electrocute', '8112', 1, 'render_Electrocute.mp4', '<p>Hitting a champion with 3 <strong>separate</strong> attacks or abilities in 2s deals bonus <span>adaptive damage</span>.</p>\n<p>Damage: 40-220 (+0.50 Bonus AD, +0.30 AP) damage.</p>\n<p>Cooldown: 50-25s</p>\n', '3 attacks / abilities burst | Think old Thunderlords.', 'Zoe|Lee Sin|Syndra|Veigar|LeBlanc|Shaco', 2, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(15, '8124', 'Predator', '8124', 1, 'render_Predator.mp4', '<p>Enchants your boots with the active effect ''Predator.''</p>\n<p>Channel for 1.5s out of combat to gain 45% Movement Speed for 15s. Damaging attacks or abilities end this effect, dealing 60 - 140 (+0.4 bonus AD)(+0.25 AP) bonus <span>adaptive damage</span>.</p>\n<p>Cooldown: 150 - 100s. Starts the game on cooldown and goes on cooldown if interrupted while channeling.</p>\n', 'Movement speed active on boots | Increased engage damage.', 'Hecarim|Olaf|Quinn', 2, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(16, '8128', 'Dark Harvest', '8128', 1, 'render_DarkHarvest.mp4', '<p>Champions, large minions, and large monsters drop soul essence on death. Collecting a soul to become Soul Charged. Your next attack on a champion or structure consumes Soul Charged to deal bonus <span>adaptive damage</span>.</p>\n<p>Soul Charged lasts 20s, increased to 300s after collecting 150 soul essence.</p>\n<p>Bonus damage: 40 - 80 (+0.25 bonus AD) (+0.2 AP) + soul essence collected.</p>\n<p>Champion souls - 6 soul essence.<br />\nMonster souls - 2 soul essence.<br />\nMinion souls - 4 soul essence.</p>\n', 'Nearby dying large minions / monsters / champions grants burst damage.', 'Nocturne|Kayn|Kha''Zix|Kayn|Darius', 2, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(17, '8126', 'Cheap Shot', '8126', 0, '', '<p>Damaging champions with impaired movement or actions deals 12 - 30 bonus true damage (based on level).</p>\n<p>Cooldown: 4s<br />\nApplies to damage occurring after the impairment.</p>\n', 'Bonus true damage to impaired (slowed etc.) champions.', 'Syndra|Leona|Azir|Ashe|Rammus|Vel''Koz', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(18, '8139', 'Taste of Blood', '8139', 0, '', '<p>Heal when you damage an enemy champion.</p>\n<p>Healing: 18 - 35 (+0.20 bonus AD, +0.1 AP) health (based on level).</p>\n<p>Cooldown: 20s</p>\n', 'Heal when you damage champions.', 'Vladimir|Sivir|Varus|Draven', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(19, '8143', 'Sudden Impact', '8143', 0, '', '<p>After exiting stealth or using a dash, leap, blink, or teleport, damage a champion to gain 10 Lethality and 8 Magic Penetration for 5s.</p>\n<p>Cooldown: 4s</p>\n', 'Gain magic pen / lethality when using a gap closer or stealth.', 'Ekko|Lucian|Ahri|Quinn|Irelia|Elise', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(20, '8136', 'Zombie Ward', '8136', 0, '', '<p>After killing an enemy ward, a friendly Zombie Ward is raised in its place. Additionally, when your wards expire, they resurrect as Zombie Wards.</p>\n<p>Zombie Wards are visible, last for 180s, and don''t count towards your ward limit.</p>\n', 'Wards you place / kill spawn a visible ward when they die.', 'Lulu|Riven|Zoe|Zyra|Hecarim|Vel''Koz', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(21, '8120', 'Ghost Poro', '8120', 0, '', '<p>Enter a brush to summon a poro after a brief channel. The poro will stay behind to give you vision until you summon a new one.</p>\n<p>If an enemy enters a brush with a poro in it, they scare it away, putting this effect on a 3s cooldown.</p>\n<p>Poro channel is interrupted if you enter combat with a champion.</p>\n', 'Entering a brush leaves temporary vision behind.', 'Ashe|Kalista|Yasuo|Twitch|Tryndamere|Kog''Maw', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(22, '8138', 'Eyeball Collection', '8138', 0, '', '<p>Collect eyeballs for champion and ward takedowns. Gain an adaptive bonus of 0.6 Attack Damage or 1 Ability Power, per eyeball collected.</p>\n<p>Upon completing your collection at 20 eyeballs, gain an adaptive bonus of 6 Attack Damage, or 10 Ability Power.</p>\n<p>Collect 2 eyeballs per champion takedown, 1 eyeball per ward takedown or assist.</p>\n', 'Kills / Assists on champions and wards grants AP or AD.', 'Lee Sin|Katarina|Kayn|Nocturne|Darius|JarvanIV', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(23, '8135', 'Ravenous Hunter', '8135', 0, '', '<p>Heal for a percentage of the damage dealt by your abilities.</p>\n<p>Healing: 2.5% + 2.5% per <em>Bounty Hunter</em> stack.</p>\n<p>Earn a <em>Bounty Hunter</em> stack the first time you get a takedown on each enemy champion.</p>\n<p><em>AoE:</em> Healing reduced to one third on AoE abilities.</p>\n', 'Spell Vamp stacks from unique kills / assists.', 'Ekko|Swain|Brand|Graves|LeBlanc|Dr. Mundo', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(24, '8134', 'Ingenious Hunter', '8134', 0, '', '<p>Gain 10% <strong>Active Item CDR</strong> plus an additional 6% per <em>Bounty Hunter</em> stack (includes Trinkets).</p>\n<p>Earn a <em>Bounty Hunter</em> stack the first time you get a takedown on each enemy champion.</p>\n', 'Item & Trinket CDR stacks from unique kills / assists.', 'Fizz|Olaf|Alistar|Taric|Kled|Kha''Zix', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(25, '8105', 'Relentless Hunter', '8105', 0, '', '<p>Gain 8 out of combat <strong>Movement Speed</strong> plus 8 per <em>Bounty Hunter</em> stack.</p>\n<p>Earn a <em>Bounty Hunter</em> stack the first time you get a takedown on each enemy champion.</p>\n', 'Out of Combat Move Speed stacks from unique kills / assists.', 'Blitzcrank|Hecarim|Leona|Diana|Aatrox|Zed', 2, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(26, '8214', 'Summon Aery', '8214', 1, 'render_SummonAery.mp4', '<p>Your attacks and abilities send Aery to a target, damaging enemies or shielding allies.</p>\n<p>Damage: 15 - 40 based on level (+0.10 AP and +0.15 bonus AD)<br />\nShield: 30 - 80 based on level (+0.25 AP and +0.4 bonus AD)</p>\n<p>Aery cannot be sent out to again until she returns to you.</p>\n', 'Attacks/abilities summon Aery to damage enemies / shield allies.', 'Orianna|Zyra|Viktor|Sona|Karma|Mordekaiser', 3, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(27, '8229', 'Arcane Comet', '8229', 1, 'render_Comet.mp4', '<p>Damaging a champion with an ability hurls a comet at their location, or, if Arcane Comet is on cooldown, reduces it’s remaining cooldown.</p>\n<p><span>Adaptive damage</span>: 30 - 100 based on level (+0.20 AP and +0.35 bonus AD)</p>\n<p>Cooldown: 20 - 8s</p>\n<p>Cooldown Reduction:<br />\n- Single Target: 20%<br />\n- Area of Effect: 10%<br />\n- Damage Over Time: 5%</p>\n', 'Hitting spells hurls a comet at enemies.', 'Karthus|Morgana|Ahri|Malzahar|Swain|Miss Fortune', 3, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(28, '8230', 'Phase Rush', '8230', 1, 'render_PhaseRush.mp4', '<p>Hitting an enemy champion with 3 attacks or separate abilities within 3s grants 10 - 40% Movement Speed based on level.</p>\n<p>Duration: 3s<br />\nCooldown: 15s<br />\nAdditionally, gain 75% Slow Resistance or the duration.</p>\n', '3 attacks or abilities grants speed boost | Think old Stormraider''s.', 'Nasus|Vladimir|Cassiopeia|Darius|Aurelion Sol|Ryze', 3, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(29, '8224', 'Nullifying Orb', '8224', 0, '', '<p>Upon taking magic damage that would reduce Health below 30%, grants a shield that absorbs 40 - 120 magic damage based on level (+0.10 AP and +0.15 bonus AD) for 4 seconds.</p>\n<p>Cooldown: 60s</p>\n', 'Grants a magic shield when taken to low health by magic damage.', 'Fizz|Corki|Diana|Viktor|Aurelion Sol|Quinn', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(30, '8226', 'Manaflow Band', '8226', 0, '', '<p>Every 75 seconds, your next ability used has its mana or energy cost refunded, and restores 10% of your missing mana or energy.</p>\n', 'Free spell cast every 60s and mana sustain.', 'Cassiopeia|Lux|Orianna|Ziggs|Ryze|Taliyah', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(31, '8243', 'The Ultimate Hat', '8243', 0, '', '<p>Your ultimate''s cooldown is reduced by 5%. This number is increased by 2% each time your ultimate goes on cooldown. Stacks up to 5 times.</p>\n', 'Scaling ultimate cooldown reduction.', 'Karma|Malzahar|Heimerdinger|Rumble|Nocturne|Lulu', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(32, '8210', 'Transcendence', '8210', 0, '', '<p>Gain 10% CDR when you reach level 10.</p>\n<p>Each percent of CDR exceeding the CDR limit is converted to an <span>adaptive</span> bonus of 1.2 Attack Damage or 2 Ability Power.</p>\n', 'Free 10% CDR at level 10 | Excess CDR becomes AP or AD.', 'Nasus|Lux|Galio|LeBlanc|Azir|Annie', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(33, '8234', 'Celerity', '8234', 0, '', '<p>Gain 3% increased Movement Speed and add 8% of your Bonus Movement Speed to your AP or AD (based on level), Adaptive.</p>\n', 'Move speed | Bonus move speed grants AP or AD.', 'Teemo|Hecarim|Darius|Varus|Caitlyn|Mordekaiser', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(34, '8233', 'Absolute Focus', '8233', 0, '', '<p>While above 70% health, gain an <span>adaptive</span> bonus of up to 24 Attack Damage or 40 Ability Power (based on level).</p>\n', 'When above 70% health, gain extra AP or AD.', 'Swain|Vel''Koz|Zyra|Syndra|Karthus|Brand', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(35, '8237', 'Scorch', '8237', 0, '', '<p>Your next ability hit sets champions on fire dealing 30 - 60 bonus magic damage based on level after 1s.</p>\n<p>Cooldown: 20s</p>\n', 'Extra Poke damage from abilities.', 'Xerath|Ahri|Sion|Sion|Nami|Jhin', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(36, '8232', 'Waterwalking', '8232', 0, '', '<p>Gain 25 Movement Speed and an <span>adaptive</span> bonus of up to 18 Attack Damage or 30 Ability Power (based on level) when in the river.</p>\n', 'Gain MS and AP or AD, when in the river.', 'Hecarim|Aurelion Sol|Udyr|Rek''Sai|Elise|Nidalee', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(37, '8236', 'Gathering Storm', '8236', 0, '', '<p>Every 10 min. gain AP or AD, <strong>Adaptive</strong>.</p>\n<p><em>10 min</em>: + 8 AP or 5 AD<br />\n<em>20 min</em>: + 24 AP or 14 AD<br />\n<em>30 min</em>: + 48 AP or 29 AD<br />\n<em>40 min</em>: + 80 AP or 48 AD<br />\n<em>50 min</em>: + 120 AP or 72 AD<br />\n<em>60 min</em>: + 168 AP or 101 AD<br />\netc...</p>\n', 'Every 10 minutes gain stacking AP or AD.', 'Vel''Koz|Cassiopeia|Xayah|Veigar|Azir|Miss Fortune', 3, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(38, '8437', 'Grasp of the Undying', '8437', 1, 'render_Grasp.mp4', '<p>Every 4s in combat, your next basic attack on a champion will:</p>\n<ul>\n<li>Deal bonus damage equal to 4% of your max health</li>\n<li>Heal you for 2% of your max health</li>\n<li>Permanently increase your health by 5</li>\n</ul>\n<p><em>Ranged Champions:</em> Damage and healing are halved and gain 2 permanent health instead.</p>\n', 'Bonus damage / heal based on max health. Permanent max health.', 'Cho''Gath|Trundle|Shen|Tahm Kench|Yorick|Malphite', 4, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(39, '8439', 'Aftershock', '8439', 1, 'render_Aftershock.mp4', '<p>After immobilizing an enemy champion, increase your current Armor and Magic Resist by 10 + 30% for 2.5s. Then, after 2.5s deal magic damage to nearby enemies.</p>\n<p>Damage: 40-140 (+3.5% your maximum health)<br />\nCooldown: 20s</p>\n', 'Immobilizations grant Armor / MR and casts explosion based on health.', 'Rakan|Blitzcrank|Maokai|Galio|Ornn|Sejuani', 4, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(40, '8465', 'Guardian', '8465', 1, 'render_Guardian.mp4', '<p><em>Guard</em> allies within 175 units of you, and <em>Guard</em> allies you target with spells for 2.5s. While <em>Guarding</em>, if you or the ally would take damage, both of you gain a shield and are hasted for 1.5s.</p>\n<p>Cooldown: 45s<br />\nShield Strength: 60 - 150 (+0.20 AP) (+10% bonus health).<br />\nHaste: 20% increased Movement Speed</p>\n', 'Haste and shield allies you are near or cast a spell on.', 'Taric|Tahm Kench|Braum|Dr. Mundo', 4, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(41, '8242', 'Unflinching', '8242', 0, '', '<p>Increase your Tenacity and Slow Resistance by 10% for each Summoner Spell on cooldown. After casting a Summoner Spell, gain 15% additional Tenacity and Slow Resistance for 10s.</p>\n', 'Tenacity and slow resist based on summoner skill cooldown/usage.', 'Skarner|Warwick|Amumu|Singed|Zac|Tahm Kench', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(42, '8446', 'Demolish', '8446', 0, '', '<p>Charge up a powerful attack against a tower over 4s, when within 600 range of it. The charged attack deals 125 (+30% of your max health) bonus physical damage.</p>\n<p>Cooldown: 45s</p>\n', 'Tower burst damage based on max health.', 'Yorick|Dr. Mundo|Gnar|Trundle|Shen|Sion', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(43, '8463', 'Font of Life', '8463', 0, '', '<p>Impairing the movement of an enemy champion marks them for 4s.</p>\n<p>Ally champions who attack marked enemies heal for 5 + 1% of your max health.</p>\n', 'Allies heal when attacking enemies you impair | Think old Stoneborne Pact.', 'Nautilus|Alistar|Maokai|Soraka|Tahm Kench|Thresh', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(44, '8430', 'Iron Skin', '8430', 0, '', '<p>Gain 5 Armor. Whenever you heal for at least 20 health or from a consumable''s effect, increase your Armor by 5% for 3 seconds.</p>\n', '+5 Armor | Healing increase Armor temporarily.', 'Trundle|Yasuo|Taric|Thresh|Singed|Amumu', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(45, '8435', 'Mirror Shell', '8435', 0, '', '<p>Gain 6 Magic Resist. Whenever you heal for at least 20 health or from a consumable''s effect, increase your Magic Resist by 5% for 3 seconds.</p>\n', '+5 MR | Healing increase MR temporarily.', 'Galio|Galio', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(46, '8429', 'Conditioning', '8429', 0, '', '<p>After 10 min gain +8 Armor and +8 Magic Resist and increase your total Armor and Magic Resist by 5%.</p>\n', 'After 10 minutes gain Armor and MR.', 'Gragas|Ivern|Malphite|Warwick|Yorick|Sion', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(47, '8451', 'Overgrowth', '8451', 0, '', '<p>Every 8 monsters or enemy minions that die near you permanently increases your max health by 0.2%.</p>\n<p>Range: 1400 units</p>\n', 'Minions that die nearby give max health.', 'Tahm Kench|Dr. Mundo|Sion|Vi|Malphite|Blitzcrank', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(48, '8453', 'Revitalize', '8453', 0, '', '<p>Heals and shields are 5% stronger and increased by an additional 10% on targets below 40% health. </p>\n<p>*Include heals and shields cast on yourself*</p>\n', 'Stronger heals and shields.', 'Rakan|Trundle|Ornn|Darius|Yasuo|Kayn', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(49, '8444', 'Second Wind', '8444', 0, '', '<p>After taking damage from an enemy champion heal for 4% of your missing health over 10 seconds.</p>\n', 'Getting hit restores missing health over time.', 'Sion|Yorick|Thresh|Poppy|Leona|Galio', 4, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(50, '8326', 'Unsealed Spellbook', '8326', 1, 'render_Spellbook.mp4', '<p>Gain a Summoner Shard at 2 minutes and another every 6 min after (max 2 shards).</p>\n<p>While near the shop, you can exchange 1 Summoner Shard to replace a Summoner Spell with a different one.</p>\n<p>Additionally, your Summoner Spell cooldowns are reduced by 25%.</p>\n<p><strong>Smite:</strong> Buying Smite won''t grant access to Smite items<br />\nYou cannot have two of the same Summoner Spell</p>\n', 'Swap summoner spells in game. 25% Summoner CDR.', 'Vladimir|Kennen|Skarner|Zilean|Singed|Malzahar', 5, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(51, '8351', 'Glacial Augment', '8351', 1, 'render_GlacialAugment.mp4', '<p>Basic attacking a champion slows them for 2s. The slow increases in strength over its duration.</p>\n<ul>\n<li><em>Ranged attacks</em> slow by up to 20%-40% </li>\n<li><em>Melee attacks</em> slow by up to 40%-50%</li>\n</ul>\n<p>Slowing a champion with active items shoots a freeze ray through them, freezing the nearby ground for 5s, slowing all units inside by 50%</p>\n<p>Cooldown: 7-4s second per-unit cooldown</p>\n', 'Slow enemies on hit. Active slows cast AoE slow.', 'Gnar|Ekko|Teemo', 5, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(52, '8359', 'Kleptomancy', '8359', 1, 'render_Klepto.mp4', '<p>After using an ability, your next attack on a champion grants bonus gold. There''s a chance you''ll also gain a consumable.</p>\n', 'Attacks after spells on champions grant gold and consumables | Procs like Sheen.', 'Gangplank|Gangplank|Ezreal|Sona|Illaoi', 5, '2017-12-18 22:41:01', '2017-12-21 21:43:46'),
(53, '8306', 'Hextech Flashtraption', '8306', 0, '', '<p>While Flash is on cooldown it is replaced by Hexflash.</p>\n<p>Hexflash: Channel for 2.5 seconds to blink to a new location.</p>\n<p>Cooldown: 20 seconds. Goes on a 10 second cooldown when you enter champion combat.</p>\n', 'Gain a channel flash while flash is on cooldown.', 'Gragas|Skarner', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(54, '8345', 'Biscuit Delivery', '8345', 0, '', '<p>Biscuit Delivery: Gain a Total Biscuit of Everlasting will every 3 minutes, until 12 minutes.</p>\n<p>Biscuits restore 15% of your missing health and mana and increase your mana cap by 40 mana permanently.</p>\n<p>Champions without mana restore 20% missing energy instead.</p>\n', 'Periodically gain a biscuit with strong Health/Mana regen.', 'Viktor|Lissandra|Ziggs|Ornn|Teemo|Tahm Kench', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(55, '8313', 'Perfect Timing', '8313', 0, '', '<p>Start the game with a Commencing Stopwatch that transforms into a Stopwatch after 6 min. Stopwatch has a one time use Stasis active.</p>\n<p>Reduces the cooldown of Zhonyas Hourglass, Guardian Angel, and Gargoyle''s Stoneplate by 15%.</p>\n', 'After 6 minutes gain a one-time use Zhonya’s active.', 'Orianna|Ekko|Zilean|Gangplank|Ryze|Maokai', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(56, '8304', 'Magical Footwear', '8304', 0, '', '<p>You get Slightly Magical Boots at 10 min, but you cannot buy boots before then. For each takedown you acquire the boots 30s sooner.</p>\n', 'Free boots at 10 minutes.', 'Malzahar|Ahri|Karma|Vladimir|Tristana|Maokai', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(57, '8321', 'Future''s Market', '8321', 0, '', '<p>You can enter debt to buy items. The amount you can borrow increases over time.</p>\n<p>Debt limit: 150 + 5/min<br />\nLending Fee: 50 gold per item</p>\n', 'Enter debt to buy items early.', 'Viktor|Kennen|Lissandra|Gangplank|Akali|Thresh', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(58, '8316', 'Minion Dematerializer', '8316', 0, '', '<p>Start the game with 6 Minion Dematerializers that kill and absorb lane minions instantly. Minion Dematerializers are on cooldown for the first 155s of the game.</p>\n<p>Absorbing a minion increases your damage by +4% against that type of minion permanently, and an extra +1% for each additional minion of that type absorbed.</p>\n', 'Kill 6 minions for free and gain bonus minion damage.', 'Zilean|Ekko', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(59, '8347', 'Cosmic Insight', '8347', 0, '', '<p>+5% CDR<br />\n+5% Max CDR<br />\n+5% Summoner Spell CDR<br />\n+5% Item CDR</p>\n', '5% CDR for spells, Summoners, Items, and max CDR. ', 'Ziggs|Gragas|Lux|Orianna|Anivia|Kassadin', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(60, '8410', 'Approach Velocity', '8410', 0, '', '<p>Gain 10% Movement Speed towards nearby allies that are movement impaired or enemies that you impair.</p>\n<p>Range: 1000</p>\n', 'Movement speed towards impaired allies / enemies.', 'Teemo|Tahm Kench|Gnar', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38'),
(61, '8339', 'Celestial Body', '8339', 0, '', '<p>+100 Health permanently<br />\n-10% damage to champions and monsters until 10 mins.</p>\n', '+100 health | Less damage until 10 minutes.', 'Illaoi|Braum|Singed|Nautilus', 5, '2017-12-18 22:41:01', '2017-12-20 16:16:38');
-- --------------------------------------------------------
--
-- Table structure for table `keystones_why`
--
CREATE TABLE IF NOT EXISTS `keystones_why` (
`id` int(10) unsigned NOT NULL,
`stone_why` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`builds_id` int(10) unsigned NOT NULL,
`keystones_id` int(10) unsigned NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=1051 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `keystones_why`
--
INSERT INTO `keystones_why` (`id`, `stone_why`, `builds_id`, `keystones_id`, `created_at`, `updated_at`) VALUES
(1, 'Shyvana is a fantastic user of Press the Attack thanks to her ability to instantly proc it with an Auto->[Q] reset. The instant exposure allows Shyvana to duel and shred champions effectively.', 1, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(2, 'Triumph on Shyvana allows you to dive into the back line, absorb the brunt of the damage for your team, and heal for a ton from any kills or assists to keep fighting.', 1, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(3, 'More Attack Speed means a faster/healthier jungle clear and more dueling potential in early skirmishes.', 1, 8, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(4, 'Coup De Grace is the go-to tune for reliable damage in fights where you''re able to get to the back-line and shred the enemy squishy champions.', 1, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(5, 'Celerity on Shyvana help you to overcome her biggest pitfall of being kited. The extra bit of Movement Speed synergizes well with Shyv''s [W] and especially well with Waterwalking when skirmishing in the river.', 1, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(6, 'Waterwalking on Shyvana further empowers her desire to power farm the jungle and clear the entire map.', 1, 36, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(7, 'Shyvana is a fantastic user of Press the Attack thanks to her ability to instantly proc it with an Auto->[Q] reset. The instant exposure allows Shyvana to duel and shred champions effectively.', 2, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(8, 'Triumph on Shyvana allows you to dive into the back line, absorb the brunt of the damage for your team, and heal for a ton from any kills or assists to keep fighting.', 2, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(9, 'More Attack Speed means a faster/healthier jungle clear and more dueling potential in early skirmishes.', 2, 8, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(10, 'Coup De Grace is the go-to tune for reliable damage in fights where you''re able to get to the back-line and shred the enemy squishy champions.', 2, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(11, 'The early bonus Armor from Iron Skin allows you to come out of your first few jungle clear incredibly healthy and ready to fight at any moment. the bonus Armor secondary also synergizes well with Shyv''s passive.', 2, 44, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(12, 'Unflinching allows you to dive onto enemy champions with [R] while Smiting them and sticking to them thanks to the Slow Resist/Tenacity so you are able to ramp up your damage and kill anyone you set your sights on.', 2, 41, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(13, 'Spellbook on Riven allows you to keep up heavy lane kill pressure at all times with super short Flash and Ignite cooldowns combined with Lucidity Boots and Cosmic Insight.', 3, 50, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(14, 'The stasis active allows you to make out-plays and suvive a close tower dive to snowball your lead. After using the Stopwatch, sell it for a bit of bonus Gold. ', 3, 55, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(15, 'Magical Footwear allows you to save that extra bit of gold to invest in more mid-game damage and a quicker completion of Boots of Lucidity.', 3, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(16, 'Riven''s mana-less kit means that CDR is one of her absolute most important stats. The extra bit of Summoner CDR also means more Flash and Ignite pressure.', 3, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(17, 'Riven is one of the biggest abusers of Sudden Impact, with each use of [Q] and [E] refreshing the buff resulting in an almost permanent bonus Lethality buff.', 3, 19, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(18, 'Zombie Ward is a fantastic all-around rune choice thats to its reliability in being able to provide extremely extended amounts of lane safety.', 3, 20, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(19, 'Electrocute is the go-to keystone on Riven when looking to do massive burst damage in a short period of time. Her skillset allows her to quickly proc the damage in any trade with [Q]->[W]->Auto.', 4, 14, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(20, 'Riven may be one of the biggest abusers of Sudden Impact. All 3 parts of her [Q] and [E] proc the effect.', 4, 19, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(21, 'Zombie Ward is a fantastic all-around rune choice on any champion thanks to it''s incredibly reliable and effective addition of vision.', 4, 20, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(22, 'The bonus healing Ravenous Hunter grants minimizes risk when looking to take aggressive trades and all-ins.', 4, 23, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(23, 'Triumph allows you to dive towers or the back-line with an all-in combo and the ability to get out alive afterward, thanks to the massive heal.', 4, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(24, 'Coup De Grace is the ultimate rune for champions that are looking to execute squishy targets. The bonus damage is easily accessible on a high damage kit such as Riven''s.', 4, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(25, 'Arcane Comet on Camille is a non-obvious but strong keystone choice for Camille thanks to the high hitrate from the strong slow of [W] and the stun from [E].', 5, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(26, 'Manaflow Band on Camille allows you to repeatedly take trades in lane and out-sustain your opponent thanks to the large heal from [W].', 5, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(27, 'Celerity on Camille allows you to more accurately postiing your [W] mid-cast, chase down fleeing opponents, and gain a small bit of bonus AD while under the Movement Speed effect of Phage.', 5, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(28, 'Scorch is the go-to lane harass rune for getting an early lead in damage so you can keep your opponent in kill-range.', 5, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(29, 'Iron Skin on Camille allows you to take lane trades early and often thanks to the reduced damage from minions at level 1. Combined with Camille''s passive you should win most trades early when played well.', 5, 44, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(30, 'Second Wind allows you to further enable your early laning trades and synergizes extremely well in lane with Iron Skin. Paired with a Doran''s Shield you should be able to sustain heavy amount of poke and harass damage.', 5, 49, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(31, 'Thanks to multiple auto-attack resets on [Q] Camille can easily proc Press the Attack for great dueling damage.', 6, 2, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(32, 'Camille has a number of means of building herself an over-shield via Doran''s Blade, [W] on champions, and Titantic Hydra, allowing her to enter duels with a health lead.', 6, 5, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(33, 'Camille''s primary means of losing a duel is typically getting CCed so she can''t return damage. Any additional Tenacity improves her dueling that much more.', 6, 9, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(34, 'Cut Down is the ultimate go-to for shredding big beefy tanks with a ton of health.', 6, 12, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(35, 'Iron Skin is a great early-game option for trading in lane and winning fights against heavy AD comps.', 6, 44, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(36, 'Revitalize is a great laning rune when you''re looking to trade often and come out healthy, winning the attrition war.', 6, 48, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(37, 'Guardian on Nunu allows you to massively empower a teammate in skirmishes and teamfights when you cast [W] on them.', 7, 40, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(38, 'Font of Life allows you to provide considerable healing to teammates in teamfights where you''re able to slow multiple targets at the same time with [E] and [R].', 7, 43, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(39, 'Conditioning allows you scale incredibly well into the mid game combined with Locket to make you a massive front-line tank.', 7, 46, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(40, 'Revitalize on Nunu empowers both the healing of your [Q] as well as the shielding of Guardian, Locket, and healing of Font of Life on teammates.', 7, 48, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(41, 'Celerity on Nunu provides a bit of Movement Speed for a faster jungle clear, as well as a bit of extra AP while [W] is on so you can chase down and finish off slowed targets.', 7, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(42, 'Waterwalking on Nunu further enables you to control the river and take neutral objectives (Herald/Dragon )early and often.', 7, 36, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(43, 'Fleet Footwork on Caitlyn empowers your ability to take trades early and often in the laning phase thanks to your improved sustain. The extra burst of Movement Speed can also help you position to get in range for the headshot proc on the enemy.', 8, 4, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(44, 'Triumph is Dangerous Game on steroids, allowing you to push your limits in fights and reset. Oh and bonus kill gold is nice too.', 8, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(45, 'More Attack Speed from Alacrity means more headshots and more damage. It also allows you to potentially itemize into a non Attack Speed item (BT or Guardian Angel) a bit earlier than you otherwise would.', 8, 8, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(46, 'Headshots paired with the execute damage of Coup De Grace offers you a lot of burst to finish off your target and move on.', 8, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(47, 'Taste of Blood on Caitlyn is a fantastic lane sustain rune thank to your ability to easily proc with with a long range Auto Attack or Trap headshot.', 8, 18, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(48, 'Zombie Ward is an all-around great rune choice for every champion in the game thanks to its ability to reliably provide vision for extended periods of time.', 8, 20, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(49, 'Fleet Footwork on Caitlyn empowers your ability to take trades early and often in the laning phase thanks to your improved sustain. The extra burst of Movement Speed can also help you position to get in range for the headshot proc on the enemy.', 9, 4, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(50, 'Triumph is Dangerous Game on steroids, allowing you to push your limits in fights and reset. Oh and bonus kill gold is nice too.', 9, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(51, 'Bloodline further empowers your ability to take lane trades and out sustain your enemy laner thanks to Fleet Footwork and Bloodline''s extra bit of healing.', 9, 10, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(52, 'Headshots paired with the execute damage of Coup De Grace offers you a lot of burst to finish off your target and move on.', 9, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(53, 'Celerity''s bonus Movement Speed helps you to position in teamfights for optimal damage output and skill-shot dodging. Celerity also synergizes well with Zeal items providing you a little extra bit of Attack Damage.', 9, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(54, 'Gathering Storm is your late game insurance policy for damage. If you fall behind, try stalling out the game by denying their tower siege with your Traps. The longer the game goes the better shot you have of coming back with Gathering Storm.', 9, 37, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(55, 'Azir is a champion who rapidly casts abilities thanks to his auto-attack nature with [W]. Because of this he is able to repeatedly cast Comets with relatively high hit-rate thanks to the slow on his [Q]', 10, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(56, 'Azir is a champion who typically doesn''t opt for a mana item, rushing Nashor''s tooth and Magic Penetration. Manaflow allows you to supplement that loss of mana sustain and continue pumping out damage in the early to imd game.', 10, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(57, 'Celerity''s bonus Movement Speed allows you to better position yourself so that you''re able to repeatedly attack with [W] in teamfights.', 10, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(58, 'Scorch provides fantastic early game harass potential so that you''re able to keep your enemy laner in kill threat at all times with your jungler.', 10, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(59, 'Azir is a champion who loves to trade early and often from distance with [W]->[Q], because of this Cheap Shot allows you to take those trades and remain healthy for early game skirmishes around the mid lane.', 10, 17, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(60, 'Zombie Ward provides all-around excellent and consistent vision control around the mid lane, allowing you to keep better tabs on the enemy jungler.', 10, 20, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(61, 'Azir loves to auto attack with his soldiers, especially with his most recent changes. With Lethal Tempo you''re able to scale into the mid-late game as an incredible hyper carry.', 11, 3, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(62, 'Presence of Mind is a great lane/teamfight mana sustain rune, allowing you to spam, so long as you''re taking advantage of it when you level up or get a kill/assist.', 11, 7, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(63, 'Doubling down on Attack Speed, Azir scales incredibly well with Legend: Alacrity and auto-attacking with his [W].', 11, 8, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(64, 'Because Azir often builds a few health items (Rylai''s/Liandry''s) he is not able to make complete use of Cut Down against carries, so Coup De Grace is your best bet for ending the enemies lives as quickly as possible.', 11, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(65, 'More CDR means lower [W] cooldown which means more soldier. All of your damage in this loadout focuses on having soldier out to auto as much as possible so you''re going to need the CDR.', 11, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(66, 'Gathering Storm on Azir makes him an incredible late game hyper-carry. A little Magic Penetration from items and Attack Speed from runes and Gathering Storm brings all the extra AP you''ll need to carry.', 11, 37, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(67, 'Unsealed Spellbook paired with boots of Lucidity and Cosmic Insight will grant you massive Summoner Cooldown allowing you to spam them for maximum kill potential and safety.', 12, 50, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(68, 'The stasis from Stopwatch is a must have on Vlad as you''re able to heal through it with your ultimate giving you the opportunity to potentially out-play the enemy in a 1v2 gank from the jungler.', 12, 55, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(69, 'Magical Footwear saves you the hassle of having to spend that gold on boots, empowering your mid game for more damage/utility making you a monster.', 12, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(70, 'Vladimir can massively abuse the extra bit of Summoner and spell CDR for harassment and lane pressure throughout the entire game.', 12, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(71, 'Transcendence on Vlad allows you to become an unkillable god in the mid-game, reaching 40% CDR with just Protobelt, Zhonya''s, and Boots of Lucidity.', 12, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(72, 'Scorch is a fantastic lane phase choice for Vlad for harassing with [Q]. The extra bit of damage allows you to keep the pressure up and put your enemy in kill potential range.', 12, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(73, 'Phase Rush on Vladimir allows you to chase down and position for a second round of spell rotations. Vlad can be easily kited and Phase Rush helps mitigate that.', 13, 28, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(74, 'Vlad''s [R] acts as both an opportunity for kill potential as well as safety from getting killed thanks to the heal. More [R]s means more power.', 13, 31, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(75, 'The biggest gate to Vlad''s power is his cooldowns. Having spells up more often means more damage, more health, and more safety with [W].', 13, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(76, 'Scorch is a great lane presence rune that scales down as the game goes on. Combined with Taste of Blood, you can take very efficient trades in lane with [Q].', 13, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(77, 'Taste of Blood on Vlad allows you further pressure your lane opponent through attrition of health.', 13, 18, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(78, 'Ravenous Hunter further empowers your ability to heal and take efficient trades. ', 13, 23, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(79, 'Arcane Comet on Sion in an incredibly reliable source of damage thanks to his natural slows on [Q] and [E]. In the laning phase, paired with Scorch, Comet provides fantastic lane pressure damage when maxing [E] first.', 14, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(80, 'Manaflow Band is your means to mana sustain in the laning phase so that your capable of continuously harassing with [E] and comet.', 14, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(81, 'Transcendence is a great rune choice on tanks who are looking to stack a lot of big CDR items and can still benefit massivly from the extra bit of AD or AP after capping.', 14, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(82, 'Scorch is your go-to lane harassment rune. Combined with [E] max and Comet you''ll be able to safely harass from a distance when passing [E] through minions.', 14, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(83, 'Iron Skin is a great rune to help you sustain and out-trade during the laning phase. The extra bit of early Armor can also pay off big when trying to turn a jungle gank.', 14, 44, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(84, 'Second Wind paired with Iron Skin allows you to take a number of early trades and come out with a health lead.', 14, 49, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(85, 'Sion''s natural % health stacking on [W] synergizes with the oh-hit health stacking on Grasp letting him hit massive health numbers in the late-game.', 15, 38, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(86, 'With Demolish we can convert the massive health stackng on [W], Grasp, and Overgrowth to big-time tower damage.', 15, 42, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(87, 'The Armor and Magic Resist you gain from Conditioning are even more effective because you are stacking so heavily on health.', 15, 46, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(88, 'Overgrowth + Sion''s [W] passive lets you hit insane health number in the late game.', 15, 47, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(89, 'Manaflow Ban''s massive mana sustain allows you to use your large health pool to widdle away at your opponent''s health bar in lane and out-sustian them.', 15, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(90, 'Scorch''s extra bit of lane harass damage allows you to take a lot of trades in the laning phase with long-range [E]''s and come out ahead of your opponent.', 15, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(91, 'Lee Sin can very easily proc Electrocute as his [Q] counts as 2 unique spells. A quick auto after [Q] and Electrocute will go off immediately for that extra bit of burst damage and kill secure.', 16, 14, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(92, 'Dashing with either [Q] or [W] makes for an easy way to get a quick 10 Lethality, giving Lee plenty of early game kill potential.', 16, 19, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(93, 'Zombie Ward''s additional vision scales incredibly well on Lee Sin thanks to his natural high ward placement with Tracker''s Knife. The extra bit of vision will scale well into the mid game for securing objectives like Dragon and Baron.', 16, 20, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(94, 'The majority of Lee sin''s high damage comes in the form of his abilities, specifically [Q] and [R]/ Ravenous Hunter allows you to skirmish often thanks to the extra bit of healing.', 16, 23, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(95, 'Triumph''s burst of bonus healing after a kill/assist allows you to get away with some risk tower-dives and survive so that you''re able to snowball a lead to victory.', 16, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(96, 'Coup De Grace synergizes well with Lee Sin''s high damage and execution nature of [Q]. Combined with Electrocute and Ravenous Hunter, Lee is an incredibly strong dueling jungler.', 16, 11, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(97, 'Lee Sin can very easily proc Electrocute as his [Q] counts as 2 unique spells. A quick auto after [Q] and Electrocute will go off immediately.', 17, 14, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(98, 'Dashing with either [Q] or [W] makes for an easy way to get a quick 10 Lethality, giving Lee plenty of early game kill potential.', 17, 19, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(99, 'Snowball is the name of the game with Lee, so early kills/assists give Eyeball Collection even more power granting Lee additional early game damage.', 17, 22, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(100, 'Lee greatly benefits from *finding angles with high movement speed. Scrapping for early game kills/assists gives Lee the ability to find those angles with Relentless Hunter.', 17, 25, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(101, 'Cooldown Reduction allows Lee Sin to further scrap in skirmishes, enabling multiple spell rotations. Transcendence allows him to get some early CDR for free and not punishing him for continuing to build it if need be.', 17, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(102, 'Waterwalking further promotes Lee''s ability to find angles for fights with movement speed. It pairs very nicely with Relentless Hunter.', 17, 36, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(103, 'Arcane Comet is a great rune choice on Lux because she is often able to land it for the bonus damage thanks to the snare from [Q] and slow from [E].', 18, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(104, 'Manaflow Band is a great option for Lux when you are looking to do a lot of poking in the early game. ', 18, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(105, 'Absolute Focus further empowers your ability to poke and deal massive damage from afar while staying at full health. The extra bit of AP will help you make those picks and one-shots.', 18, 34, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(106, 'Scorch''s early game poke damage lets you set yourself up for level 6 kill threat and provide pressure during the laning phase.', 18, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(107, 'Biscuit Delivery greats you reliable and strong sustain, especially in close all-in lane fights where the last minute healing can pay off big and help you survive.', 18, 54, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(108, 'Cosmic Insight''s all-around CDR is nothing but good for Lux, providing extra damage and utility throughout the game.', 18, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(109, 'Arcane Comet can be difficult to land reliably, but the root from Lux''s [Q] and slow from [E] make it far easier.', 19, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(110, 'If you''re able to get a kill with your ult early in a fight, enough CDR could result in you getting your ult back before the rest of the fight ends.', 19, 31, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(111, 'Like most mages a large portion of your damage comes from spamming abilities with CDR.', 19, 32, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(112, 'Scorch is a great source of reliable lane harass damage that adds up over time to build kill pressure.', 19, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(113, 'Magical Footwear is an all-around great rune choice because it''s simply a 350 gold money saver. Think of it as getting a free kill at 10min.', 19, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(114, 'More cooldown reduction is nothing but pure bliss for Lux. Cosmic Insight get even more value if you build Zhonya''s.', 19, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(115, 'Unsealed Spellbook allows you to heavily abuse your Summoner CDR with Lucidity Boots for aggressive picks with Flash->[R].', 20, 50, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(116, 'Perfect Timing is a great rune in situations where enemy mid has dive potential on you and you want to make the out-play.', 20, 55, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(117, 'Magical Footwear allows you to get an earlier and cheaper Boots of Lucidity empowering your ability to make aggressive picks with Summoner Cooldowns.', 20, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(118, 'The extra bit of CDR and Summoner CDR from Cosmic Insight even further enables your potential to abuse your short Flash cooldown.', 20, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(119, 'The extra bit of Movement Speed from Celerity comes up big when just outside of range for a well-timed ult.', 20, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(120, 'Scorch provides fantastic early-game lane pressure for poke and harassment so that you''re able to keep the enemy in kill range when you hit level 6.', 20, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(121, 'Malzahar''s kit allows him to repeatedly proc Comet on cooldown and reduce it''s cooldown effectively with [E] and [W]. Once you''ve purchased Rylai''s your comet hit-rate will skyrocket.', 21, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(122, 'The more your [R] up the more kills you can secure for your team. Paired with Transcendence and Cosmic Insight you''ll have your Ultimate up for any fight or skirmish.', 21, 31, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(123, 'Celerity is a great rune on Malzahar largely thanks to the passive Movement Speed. The extra bit of speed allow you to get into range of that clutch [R] that you might not otherwise be able to get.', 21, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(124, 'The option here is really a personal preference. Scorch is great for lane harass and early fights while Gathering Storm is great for scaling and pairs well with Magic Penetration.', 21, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(125, 'Malzahar loves CDR for both his [R] and harassing/shoving in lane with [E]. Assuming you''ve completed Morello''s, you''ll already be at 35% CDR and incredibly strong at 10min.', 21, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(126, 'Magical Footwear is a great rune choice for simply saving money so you can hit your damage power-spikes that much sooner.', 21, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(127, 'Unsealed Spellbook is an interesting Keystone choice on Junglers as the base Summoner CDR allows you to Smite several more times in the early game as compared to other Junglers without.', 22, 50, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(128, 'Hextech Flashtraption allows you to overcome Skarner''s biggest weakness of having no "terrain scaling", meaning he is not able to find effectively ganks by being able to jump over walls like Dragon pit etc.', 22, 53, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(129, 'Skarner is able to make great use of the extra bit of Movement Speed from Magical Footwear. It also allows you to potentially complete your tier 2 boots sooner thanks to the gold savings.', 22, 56, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(130, 'Cosmic Insight further doubles down on your Summoner CDR allowing you to make hard engages that much more often.', 22, 59, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(131, 'Unflinching combined with Unsealed Spellbook on Skarner allows you to empower your constant use of Summoner Spells even more.', 22, 41, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(132, 'Revitalize on Skarner massively buff your [W] and Sterak''s shield making you a resilient target when diving the enemy backline for a pick.', 22, 48, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(133, 'Arcane Comet synergizes well with Varus'' Lethality build because the adaptive physical damage of Comet will hit extra hard thanks to all of the Lethality you''re building.', 23, 27, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(134, 'Manaflow Band allows you to massively sustain mana once you have built Tear of the Goddess, empowering you to continuously deal more poke damage.', 23, 30, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(135, 'Lethality poke on Varus requires proper positioning in the backline of your team so that you can safely deal damage from a distance.', 23, 33, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(136, 'Scorch''s extra bit of burn damage in the lane phase allows you to keep up continued poke pressure.', 23, 35, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(137, 'The extra bit of healing from Triumph allows you to trade those close all-in 2v2s in lane and pick up the double kill once one of the enemy champion dies.', 23, 6, '2017-12-24 17:16:37', '2017-12-24 17:16:37'),
(138, 'Coup De Grace is the go-to rune of choice on champions who can deal damage to backline squishy targets.', 23, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(139, 'Press the Attack pairs nicely with Varus''s natural attack speed and % max health damage on his [W]. A few auto attacks and you''ll be shredding any champion on the rift.', 24, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(140, 'Taking Triumph lets you fight to the death and hold your group for the kill, coming out the other side with massive health to keep fighting.', 24, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(141, 'Like most Ad Carries, Varus loves to auto attack and the Attack Speed from Legend: Alacrity provides plenty in conjunction with his Passive.', 24, 10, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(142, 'Coup De Grace is the most reliable damage rune in this group. The extra execution presence on squishies helps you win out in close 2v2 fights in the bot lane.', 24, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(143, 'Taste of Blood allows you to take small trades with lane with your 3-stack [W] proc and [E] and come out ahead on health.', 24, 18, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(144, 'Ravenous Hunter allows you to heal for massive amounts on a full [W] blight proc. paired with the exposure bonus from Press the Attack.', 24, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(145, 'Miss Fortune Support relies heavily on her [E] in the early game, making Comet a guaranteed hit thanks to the slow. [E] spam with Comet and Cheap Shot results in fantastic lane pressure damage.', 25, 27, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(146, 'Manaflow Band allows you to keep up your [E] harass and poke in the laning phase without fear of running out of mana.', 25, 30, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(147, 'Celerity is a fantastic rune choice on Miss Fortune as the bonus Movement Speed from you [W] as well as Phage/Black Cleaver grant you a bit of bonus AD (AP in the early game).', 25, 33, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(148, 'Gathering Storm is a great rune choice for scaling into the lane game as a secondary carry. In a 30min + game where you are able to hit level 16, you''re as big of a threat as any of your solo laners.', 25, 37, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(149, 'Cheap Shot on MF is taken as a lane harassment option as you''re able to instantly proc the bonus damage easily with [E].', 25, 17, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(150, 'Zombie Ward is an all-around great support rune choice. It''s effectiveness scales incredibly well with Sightstone and the raw number of wards you place down over the course of the game.', 25, 20, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(151, 'Arcane Comet can be unreliable, but if procced from MF''s [E] it should be easy to hit. Arcane Comet also scales very well with Bonus AD.', 26, 27, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(152, 'Because MF is a caster AD Carry, the mana sustain here allows you to poke throughout lane with [Q].', 26, 30, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(153, 'Celerity''s bonus Movement Speed synergizes well with Miss Fortune''s natural Movement Speed from [W]. The secondary effect of Celerity also allows MF to gain a considerable amount of bonus AD when her [W] is active.', 26, 33, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(154, 'Scorch on MF is a great lane harass and early-game rune thanks to her ease of proccing with [E]. The Magic damage also helps diversify MF''s damage type a bit in the early game to she is a slightly more difficult to itemize against.', 26, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(155, 'Triumph allows you to take close fights in the early laning phase and turn that single kill into a double thanks to the bonus healing.', 26, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(156, 'Coup De Grace synergizes incredibly well with MF''s massively high damage [Q] and [R], putting any squishy target with poor positioning in easy kill range.', 26, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(157, 'Electrocute is a great rune for Shaco''s natural high-burst assassination playstyle, allowing you to pipck up quick early kill and snowball.', 27, 14, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(158, 'Sudden Impact empowers Shaco''s damage in ganks when using [Q]. He also makes great use of both the Lethality and Magic Pen thanks to his mixed damage profile.', 27, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(159, 'Eyeball Collection is a great rune choice on champions who rely heavily on early snowball kills and those who build Duskblade for the faster ward-sweeping stacks.', 27, 22, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(160, 'Relentless Hunt on Shaco allows you to cover more ground during the [Q] stealth so that you''re able to position perfectly for the kill.', 27, 25, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(161, 'The bonus Attack Speed empowers Shaco''s ability to quickly clear the jungle for early ganks. It also empowers the damage of your ganks by allowing you to get off an extra auto attack or more during your combo.', 27, 8, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(162, 'Coup De Grace is the go-to assassination rune for those champions (like Shaco) who rely heavily on blowing up squishy backline champions.', 27, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(163, 'Thanks to Morde''s close range and multiple DoTs ([W] and [R]), you''re able to repeatedly proc Aery in extended trades for very reliable damage.', 28, 26, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(164, 'Mordekaiser has no mana costs, making his use of a rune like Manaflow Band completely useless. More [R]s from Ultimate Hat means more kill threat and lane pressure damage.', 28, 31, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(165, 'The bonus Movement Speed from Celerity is especially useful in scenarios for Mordekaiser because a large majority of his damage comes from being able to stick to his target.', 28, 33, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(166, 'Scorch is a fantastic lane dominance rune that provides a lot of damage for early trades/fights. Look to proc the bonus damage with an [E] every time is comes off of cooldown.', 28, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(167, 'As a short-range bruiser you wind up soaking a lot of damage in fights. The bonus healing form Triumph helps a lot in absorbing that damage, picking up kills/assists, and still being able to continue on in the fight.', 28, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(168, 'Coup De Grace help you scale into the mid to late game with reliable damage that with significantly help take out squishy targets that you manage to get on top of.', 28, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(169, 'Like Courage but with damage, Thresh can easily proc Aftershock and it adds to his kill potential if you can land the explosion.', 29, 39, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(170, 'Font of Life is a great rune on Thresh as he has multiple tools of proccing it with [Q], [E], and [R], providing a lot of healing in lane trades and team fights.', 29, 43, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(171, 'The Armor from Iron Skin is incredibly valuable in lane trades, especially when looking for that level 2 engage.', 29, 44, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(172, 'Second Wind''s in-combat sustain further empowers your ability to take trades, and the health you regenerate back is multiplicative with the armor from Iron Skin.', 29, 49, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(173, 'Future''s Market on Thresh allows you to stretch your limited gold income into much faster high utility item power spikes like Locket, redemption, etc.', 29, 57, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(174, 'The extra bit of Summoner and Spell CDR on Thresh pays off big when you are looking for big game-winning plays like Flash->[Q] etc. The extra bit of CDR also allows you to provide more utility and CC in teamfights.', 29, 59, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(175, 'Like Courage but with damage, Thresh can easily proc Aftershock and it adds to his kill potential if you can land the explosion.', 30, 39, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(176, 'Font of Life is a great rune on Thresh as he has multiple tools of proccing it with [Q], [E], and [R], providing a lot of healing in lane trades and team fights.', 30, 43, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(177, 'The Armor from Iron Skin is incredibly valuable in lane trades, especially when looking for that level 2 engage.', 30, 44, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(178, 'Second Wind''s in-combat sustain further empowers your ability to take trades, and the health you regenerate back is multiplicative with the armor from Iron Skin.', 30, 49, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(179, 'Like Font of Life, Thresh has 3 ([Q], [E], and [R]) strong tools for proccing Cheap Shot empowering your lane for even more kill pressure.', 30, 17, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(180, 'To key to being a useful support is effective warding and Zombie Ward shines in this department.', 30, 20, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(181, 'Grasp on Malphite allows you to trade effectively with auto attacks in lane. Each point of health is especially important/strong on Malphite thanks to having so much natural Armor.', 31, 38, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(182, 'Unflinching bonus Tenacity and Slow Resist allow you to stick to your target after using [R] for repeated Grasp procs and kill pressure.', 31, 41, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(183, 'If you manage to make it through the early game, Conditioning''s bonus resists make a monster and incredibly difficult to kill in the mid game.', 31, 46, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(184, 'Overgrowth''s bonus health scales incredibly well with Malphite''s natural Armor stacking. Each point of health you earn from Overgrowth is that much stronger thanks to your resists.', 31, 47, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(185, 'The primary reason you pick Malphite is for the incredibly strong engage potential with his [R]. The more often your [R] is up the more chances you have for kills and safety when getting ganked.', 31, 31, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(186, 'Malphite''s natural build consists of a lot of Cooldown Reduction items and Transcendence allows you to overcome any fear of over-capping CDR. The extra bit of AP you''ll get from over-capping is welcomed.', 31, 32, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(187, 'Summon Aery is fantastic lane dominance and annoyance rune on Teemo. With an Auto->[Q]->Auto you''re able to double-proc Aery for really oppressive early game harass damage.', 32, 26, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(188, 'The Ultimate Hat allows you to further press your role as an "annoying little s***" by keeping tons of mushrooms up at all time all around the map and keep yourself safe from ganks in lane.', 32, 31, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(189, 'Celerity synergizes well with Teemo''s [W], granting a bit of extra AP while your Movement Speed steroid is active.', 32, 33, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(190, 'Scorch is the go-to lane harass/pressure rune and is a must have on Teemo if you''re looking to get the most out of your laning phase.', 32, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(191, 'Alacrity on Teemo is another great lane pressure rune as the extra Attack Speed will help you get more autos off for poison damage and Aery procs.', 32, 8, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(192, 'Coup De Grace help you scale into the mid to late game. The extra bit of damage means if in unsuspecting enemy support accidentally walks into a mushroom when they are below 40% health they are likely to die.', 32, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(193, 'Glacial Augment acts as a replacement to Frozen Mallet allowing you to abuse your range in lane and build into more offensive items. By building BotRK you also gain an additional AoE slow.', 33, 51, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(194, 'Biscuits are a great means of sustain allowing you to save money on potions and invest it into you damage items to further push a lead.', 33, 54, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(195, '', 33, 57, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(196, 'Approach Velocity synergizes extremely well with Glacial Augment and Teemo''s [R] allowing you to chase any enemy to their death.', 33, 60, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(197, 'The beauty of Absolute Focus on Teemo is that you''re often dealing damage to champions when you are full health and even in base, thanks to any mushrooms you have spread across the map. Teemo is likely one of the biggest abusers of the Absolute Focus rune.', 33, 34, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(198, 'Scorch is a fantastic rune for abusing and poking in lane. Teemo can easily proc this une on cooldown thanks to the long range of his [Q].', 33, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(199, 'Glacial Augment on on Ekko allows you to [E] in onto the enemy champion and almost guarantee a hit with both parts of your [Q] thanks to the slow.', 34, 51, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(200, 'Zhonya''s is a core item on Ekko as it allows you to throw down [W] on yourself and hit the stasis to extra safety.', 34, 55, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(201, 'Minion Dematerializer on Ekko help you wave-clear in the mid game so you''re able to keep lane priority and match roam/fights in the jungle.', 34, 58, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(202, 'More CDR means more spell casts, healing, and Ekko makes great use of the item CDR thanks to your build of Gunblade, Zhonya''s, and Protobelt.', 34, 59, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(203, 'Ekko is a fantastic user of Sudden Impact for the bonus Magic Penetration after hitting an enemy with [E]. The extra bit of damage can be the difference between a kill and the enemy surviving.', 34, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(204, 'Ravenous Hunter empowers your ability to trade and sustain in lane thanks to the massive healing from your [Q] and passive.', 34, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(205, 'Ekko can easily proc Electrocute with [Q] and [E], allowing him to burst down his opponent before they know what hit him.', 35, 14, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(206, 'After casting [E] Ekko gains both Magic Penetration and Lethality making his assassination potential incredibly high.', 35, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(207, 'Zombie Ward allows you to keep wards up around mid-lane and provide even more safety in the laning phase.', 35, 20, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(208, 'Like LeBlanc, Ekko massively benefits from Spell Vamp on his passive damage allowing him to sustain in lane and pressure his opponent.', 35, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(209, 'More [R]s means a lot more safety for all-ins, dives, and escaping ganks.', 35, 31, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(210, 'Like most mid-lane mages, Ekkos loves as much CDR as he can get his hands on.', 35, 32, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(211, 'Electrocute allows you to massively burst the enemy champion with an [E]->[Q]->Auto to deal insane damage easy kill threat.', 36, 14, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(212, 'Zoe is able to reliably proc Sudden Impact with every cast of her R], being able to keep the Magic Penetration buff up at all time in the mid to late game for even more burst damage.', 36, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(213, 'This setup is all about maximizing damage and snowball potential and Eyeball Collection is all about, granting you massive AP for kills and running away with the game.', 36, 22, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(214, 'Ravenous Hunter allows you to heal off any incoming damage in teamfights with your own returning massive damage.', 36, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(215, 'Scorch further builds on your damage early game and lets you get out ahead for burst and snowballing.', 36, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(216, 'Transcendence allows you to hit 40% CDR with just Morello''s and Lich Bane, making your mid game damage and utility threat incredibly powerful.', 36, 32, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(217, 'Arcane Comet is a reasonably good rune for Zoe in the laning phase thanks to her ability to poke repeatedly with [Q].', 37, 27, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(218, 'Zoe''s super low cooldown on [R] allows her to almost instantly get the full stack benefit of Ultimate Hat keeping it at an even shorter cooldown.', 37, 31, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(219, 'Transcendence allows you to hit 40% CDR with just Morello''s and Lich Bane, making your mid game damage and utility threat incredibly powerful.', 37, 32, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(220, 'Scorch further empowers your ability to chip away at the enemies health bar during the lane phase. The extra bit of damage helps you come out ahead in trades and find early kills.', 37, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(221, 'Zoe is able to reliably proc Sudden Impact with every cast of her R], being able to keep the Magic Penetration buff up at all times in the mid to late game for even more burst damage.', 37, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(222, 'Zombie Ward offers incredible lane safety vision around the sides of mid to keep you safe from ganks and able to track the enemy jungler more often.', 37, 20, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(223, 'Lethal Tempo on Tryndamere allows you to get an insane amount of Auto Attacks in during trades, all-ins, and during your [R]. In the mid to late game your Attack Speed gets so high that you become an incredibly scary threat to the backline.', 38, 3, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(224, 'Overheal synergizes well with Tryndamere''s constant self healing from [Q] and BotRK allowing you to enter trades/fights with the early health advantage.', 38, 5, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(225, 'More Attack Speed means more raw damage, kill threat, and split-pushing tower potential.', 38, 8, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(226, 'Last Stand is the perfect damage rune for Tryndamere synergizes insanely well with your[R]. As you pop [R] at low health you''ll have a few seconds of being able to deal massive amounts of damage.', 38, 13, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(227, 'Sudden Impact synergizes well with Tryndamere''s [Q] when looking to spin in for the all-in kill.', 38, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(228, 'Ghost Poro provides fantastic on-demand lane safety when you''re able to keep the enemy shoved in and keep the poro in the river brush uncontested.', 38, 21, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(229, 'Grasp on Poppy allows her to trade incredibly well in lane and sustain a ton of damage thanks to her massive resist stacking. The heal and bonus health from Grasp make every point of health much stronger due to those resists.', 39, 38, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(230, 'Poppy''s biggest pitfall is her lack of mobility. She can be a threat to squishy champions if she is able to stick to them. Unflinching''s Tenacity/Slow Resist allows you to dive the backline and stick to them for kill threat.', 39, 41, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(231, 'Conditioning''s duo resist buff at 10mins synergizes well with the additional resists from [W] making you incredibly tanky and resilient in the mid-game.', 39, 46, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(232, 'Second Wind''s in-combat health regen allows you to take some scrappy duels after 10min and sustain any small bit of damage you take.', 39, 49, '2017-12-24 17:16:38', '2017-12-24 17:16:38');
INSERT INTO `keystones_why` (`id`, `stone_why`, `builds_id`, `keystones_id`, `created_at`, `updated_at`) VALUES
(233, 'Triumph on a tank allows you to hold your ground as the front-line in teamfights for an incredibly long time by just picking up assists.', 39, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(234, 'Legend: Tenacity further empowers your ability to ignore enemy CC and become an unstoppable front-line tank.', 39, 9, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(235, 'Predator on Olaf allows you to hit the go button on ganks and not let up. With the CC immunity from [R] you''ll be hunting down anyone who gets in your way.', 40, 15, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(236, 'Cheap Shot allows your to repeatedly deal True Damage to whatever target your attacking thanks to the perma-slow from [Q] and Righteous Glory.', 40, 17, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(237, 'Eyeball Collection allows you to snowball those successful ganks into more kills and a massive lead.', 40, 22, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(238, 'The item CDR from Ingenious Hunter allows you way more uses of Predator and Righteous Glory for those unstoppable ganks.', 40, 24, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(239, 'Triumph on Olaf allows you to dive into the back line, absorb the brunt of the damage for your team, and heal for a ton from any kills or assists to keep fighting.', 40, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(240, 'Coup De Grace is the go-to tune for reliable damage in fights where you''re able to get to the back-line and shred the enemy squishy champions.', 40, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(241, 'Electrocute on Talon allows you to blow up enemy champions quickly and easily on roams with [R]->[Q]->[W].', 41, 14, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(242, 'Talon is a fantastic user of Sudden Impact thanks to [Q] acting as a dash. The extra bit of Lethality allows you to deal massive amounts of damage when going for the assassination.', 41, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(243, 'Zombie Ward allows you to keep yourself safe in lane with massive river vision control. Hug the side of the lane that you have warded so that you''re able to es cape safely if the jungler appears on the opposite side.', 41, 20, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(244, 'Relentless Hunter''s bonus Movement Speed massively empowers your ability to leave the mid lane and pressure the side lanes with quick roams. Talon loves traversing the map as quickly as possible, and Relentless Hunter is key to that.', 41, 25, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(245, 'Triumph allows you to dive towers or the back-line with an all-in combo and the ability to get out alive afterward, thanks to the massive heal.', 41, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(246, 'Coup De Grace is the ultimate rune for assassins looking to execute squishy targets. The bonus damage is easily accessible on a high damage kit such as Talon''s.', 41, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(247, 'Swain is great lane abuser of Comet thanks to the heavy slow from [Q] nearly guaranteeing a hit.', 42, 27, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(248, 'Manaflow Band allows you to keep up the lane pressure and harassment with constant use of abilities.', 42, 30, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(249, 'As Swain you should be able to stay within Absolute Focus damage bonus range more than most other champions thanks to the healing from [R] and Ravenous Hunter.', 42, 34, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(250, 'Scorch is an incredibly strong early laning rune for pressure and harassment. Look to proc the bonus damage as often as possible with either [Q] or [E].', 42, 35, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(251, 'Once Rylai''s has been completed you will be able to repetitively proc Cheap Shot''s bonus True Damage in teamfights with [Q], [R], and [E] to multiple targets.', 42, 17, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(252, 'Ravenous Hunter doubles down on the bruiser-healing nature of Swain kit, allowing you to sustain more damage as you dish it out.', 42, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(253, 'With a Tiger Stance focused build, Press the Attack synergizes incredibly well with your ability to quickly proc the exposure damage and stack the bleeds for rapidly increasing damage.', 43, 2, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(254, 'Triumph allows you to dive into the enemy and slice them up in teamfights and keep on going thanks to the massive heal after each kill.', 43, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(255, 'More Attack Speed means a faster/healthier jungle clear, more map control, and much faster kills/stack of Press the Attack.', 43, 8, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(256, 'Coup De Grace is the go-to rune for slicing up squishy targets as quickly as possible. The execution damage allows your double-stacked bleeds to hit like a truck.', 43, 11, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(257, 'Celerity empowers your ability to traverse the map much more quickly than otherwise possible, allowing you to power-farm and hit item/level power-spikes way sooner than the enemy is expecting.', 43, 33, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(258, 'Waterwalking furthers your ability to control the jungle with map presence. The extra AD also allows you to sneak some early dragons/Rift Herald for more objective control.', 43, 36, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(259, 'Illaoi is one of the few melee champions who can reliably proc Kleptomancy in short trades. Her [W] allows her to quickly proc the effect for extra gold and sustain.', 44, 52, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(260, 'Biscuit Delivery combined with the extra potions that you loot with Klepto allows you to take short lane trades and out-sustain your opponent laner.', 44, 54, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(261, 'Magical Footwear is a stable and reliable rune on all champions as it acts effectively as a free kill''s worth of gold at 10mins allowing you to hit damage power spikes a little sooner.', 44, 56, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(262, 'Celestial Body is your primary form of defensive stats from runes. This setup opts heavily for damage and sustain, with very little defense. Celestial Body acts as a means of making sure you don''t get blown up early in the game.', 44, 61, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(263, 'Sudden Impact is a great rune choice for maximum damage on Illaoi as her [W] leap counts as a dash, granting you Lethality for every bit of damage afterwards.', 44, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(264, 'Ravenous Hunter''s extra bit of Spell Vamp is incredibly strong when paired with Illaoi''s high base damage on her abilities and Tentacle Slams, allows you to do sustain through any incoming damage while you blow up the enemy team.', 44, 23, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(265, 'Electrocute is the go-to rune for lane assassination power and Wukong is easily able proc it with a [E]->Auto->[Q].', 45, 14, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(266, 'Sudden Impact provides you the bonus Lethality you need to execute squishy targets when jumping in with [E]. You''re also able to re-proc the effect when you come out of stealth from [W].', 45, 19, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(267, 'Wukong top is all about assassination and snowballing off kills. Eyeball collection does just that, granting you more power for every kill and assist you pick up.', 45, 22, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(268, 'Relentless Hunter with Ghostblade allows you to sprint at an enemy from lane or in ganks to get in range for an [E] and blow them up.', 45, 25, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(269, 'Triumph grants you some agency in teamfights where you''re able to dive the back-line and pick up a kill before dying. That kill will grant you the health needed to get out safely or move onto the next target.', 45, 6, '2017-12-24 17:16:38', '2017-12-24 17:16:38'),
(270, 'Coup De Grace is the go-to rune for assassins and champions who are looking to kill squishies quickly.', 45, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(271, 'Heimerdinger''s constant lane harass, stun/slow with [E], and Rylai''s, allows him to consistently land Comet for increase lane pressure and kill potential.', 46, 27, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(272, 'The Ultimate Hat on Heimerdinger ensures you''ll have [R] up for every jungle gank be it enemy or teammate allows you to out-play and pick up multiple kills.', 46, 31, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(273, 'Transcendence puts you at CDR cap in the mid-game with just Morello''s and Zhonya''s enabling you to itemize into Magic Penetration early.', 46, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(274, 'Scorch empowers your ability to abuse your enemy laner in the early to mid game and press your lead. Heimer, like Teemo, is all about applying early pressure and not letting up.', 46, 35, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(275, 'Zhonya''s is a key ingredient to Heimerdinger''s arsenal of items and Perfect timing allows you to hit that item power spike before your enemy knows what hit ''em.', 46, 55, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(276, 'More CDR means more lane harass and more pressure on the enemy. The extra little bit of Summoner CDR also means when the enemy matches your Teleport top you''ll have the advantage when it comes back up.', 46, 59, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(277, 'Arcane Comet can really shine on poke champions who are able to proc the effect from a long distance.', 47, 27, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(278, 'Manaflow Band is what makes Xerath Support possible. His [Q] and [W] mana costs are extremely high with without Manaflow you''re going to struggle poking and harassing in lane.', 47, 30, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(279, 'As an AP damage support you won''t be opting for nearly as many CDR items as you would otherwise. Transcendence allows you to still 30-40% CDR in teh mid-game while building more AP heavy items.', 47, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(280, 'Scorch is the bread-and-butter of Xerath support as it further empowers your poking and oppressive damage in lane.', 47, 35, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(281, 'Magical Footwear is a valuable and safe rune option on nearly all champions (minus roaming supports), acting effectively as a kill''s worth of gold at 10mins.', 47, 56, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(282, 'More CDR means more spell casts/poke and thus more lane harass, playing up on your strengths.', 47, 59, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(283, 'Comet''s poking nature allows you to repeatedly proc Comet for additional harass damage. If procced with [W] or [E] you''re much more likely to Lane the Comet thanks to the slow/stun.', 48, 27, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(284, 'Manaflow combined with Xerath''s passive provides you massive mana sustain. Xerath has massive mana costs on [Q] and [W] so make sure to use those abilities to get the refund.', 48, 30, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(285, 'Transcendence allows Xerath to hit 30% CDR with Morello''s alone for a massively powerful mid-game poke and harass.', 48, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(286, 'Xerath excels at poking in lane and Scorch is the ultimate lane dominance rune. Combined with Comet, Scorch should easily put your target in Coup De Grace range very quickly.', 48, 35, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(287, 'Triumph is an all-around solid rune choice on any champion. The extra heal on kill/assists allows you to continue on in fights.', 48, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(288, 'Coup De Grace is the go-to rune for mid-lane mages who are looking to pump out maximum damage to back-line targets.', 48, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(289, 'Nocturne can quickly and easily proc Electrocute on his ganks with an [R]->[E]->[Q] for massive burst and shred potential.', 49, 14, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(290, 'Sudden Impact further empowers your ganks, granting you bonus Lethality when diving in with [R] so you''re capable of killing your target ASAP.', 49, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(291, 'Eyeball Collection is all about snowballing your lead from kills with [R]. Nocturne is also a natural builder of Duskblade and the ward sweeping nature of Duskblade empowers your ability pick up more stacks.', 49, 22, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(292, 'The bonus Movement Speed from Relentless Hunter allows you to quickly get into position to react to a fight with a well-timed [R].', 49, 25, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(293, 'The Ultimate Hat is the core of this setup, allowing you to keep your [R] on a cooldown of ~80s in the mid-game.', 49, 31, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(294, 'Transcendence allows you to hit 40% CDR in the mid-game with just Duskblade and Ghostblade. ', 49, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(295, 'Nocturne synergizes well with Dark Harvest''s front-loaded burst and power-farming nature. He''s able to pick up a stack and effectively utilize it by getting into range of an [R]. The massive burst from your ganks with Dark Harvest makes kill on squishy targets very effective.', 50, 16, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(296, 'Sudden Impact further empowers your ganks, granting you bonus Lethality when diving in with [R] so you''re capable of killing your target ASAP.', 50, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(297, 'Eyeball Collection is all about snowballing your lead from kills with [R]. Nocturne is also a natural builder of Duskblade and the ward sweeping nature of Duskblade empowers your ability pick up more stacks.', 50, 22, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(298, 'The bonus Movement Speed from Relentless Hunter allows you to pick up a Dark Harvest stack and run to a lane to get into range of a well-timed [R].', 50, 25, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(299, 'The bonus attack speed from Alacrity serves double-duty for Nocturne, allowing him a much faster clear (and more Dark Harvest stacks) with more auto attacks, and a healthier clear thanks to more passive procs.', 50, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(300, 'Coup De Grace is the go-to rune when looking to execute squishy champions. The bonus damage allows you to dive onto an enemy and kill them as quickly as possible.', 50, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(301, 'Aftershock''s massive addition of tankiness allows Ornn to dive into the enemy team during fights with [E] and absorb a ton of damage.', 51, 39, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(302, 'Unflinching allows you to stick to enemy champions for a Brittle auto in fight fights. Ornn is incredibly susceptible to being kited before he can get into position for an [E] knock-up.', 51, 41, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(303, 'AD Matchups: In tough ranged AD matchups (Jayce/Quinn) take Iron Skin to help you survive in lane.', 51, 44, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(304, 'Revitalize''s bonus shielding is incredibly strong paired with the shield from Ornn''s [W], allowing you to absorb a lot more damage well timed well.', 51, 48, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(305, 'Manaflow Band grants you the mana sustain you need to stay in lane as long as possible so that you''re able to effectively use your passive and abuse item power-spikes.', 51, 30, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(306, 'Celerity''s bonus Movement Speed grants you the bonus speed necessary to stick your target in fights and position for a well-placed [E] knock-up.', 51, 33, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(307, 'Like the old Grasp, but better. Ornn is always looking for auto attacks when trading because he want''s to proc his brittle.', 52, 38, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(308, 'Ornn can quite easily apply Font to a large number of targets in teamfights with [Q], [E], and [R]. Stacking health will provide a lot of healing to teammates.', 52, 43, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(309, 'As a top laner you''ll be building a lot of Armor and Magic Resist allowing granting Conditioning a lot of value in bonus resists.', 52, 46, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(310, 'Lane sustain is the name of the game for Ornn because he doesn''t have to recall for items. Second Wind provides your needed health regen. after trades.', 52, 49, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(311, 'Future''s Market pairs incredibly well with Ornn''s Passice allowing him to not only buy in lane, but also earlier than usual.', 52, 57, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(312, 'Biscuits now provides a lot of health and mana regen allowing you to stay in lane even longer and press your lead.', 52, 54, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(313, 'Press the Attack pairs well with Tristana''s [E], exposing the enemy after 3 auto attacks empowering her bomb explosion for massive burst.', 53, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(314, 'Triumph allows Trist to massively heal after every kill so she can reset her [W] and and jump to the next enemy champion to keep fighting.', 53, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(315, 'More Attack Speed means a faster and healthier jungle clear as well as a faster [E]/Press the Attack stack on ganks.', 53, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(316, 'Tristana jungle is all about jumping onto squishy targets and blowing them up so she can jump again. Coup De Grace helps you kill those squishies extra fast.', 53, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(317, 'Absolute Focus'' bonus AD when coming out of the jungle for a gank provides you with massive burst for a quick kill and reset on [W].', 53, 34, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(318, 'Waterwalking allows you to take quick and early scuttle control thanks to your massive AD stacking early with Absolute Focus and Waterwalking.', 53, 36, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(319, 'Attack Speed is the name of the game with Tristana and Lethal Tempo allows you to really embrace that. Pair it with her [Q] and you''ll be reaching incredibly high attack speed numbers early.', 54, 3, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(320, 'Triumph is Dangerous Game on steroids, allowing you to push your limits in fights and reset, Rocket Jump in, and continue fighting healthily. Oh and bonus kill gold is nice too.', 54, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(321, 'Tristana is a heavily auto attack focused Marksman so more Attack Speed is always welcome.', 54, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(322, 'Tristana really wants to finish off her target ASAP so she is able to get the cooldown reset on her [W] and continue fighting or jump to safety. Coup De Grace help in that department.', 54, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(323, 'Because this Loadout features a lot of easy ways of getting Attack Speed, your build is open for an earlier Guardian Angel and Perfect timing effectively gives you free gold toward the item.', 54, 55, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(324, 'Magical footwear is a great choice on any champion Loadout as it can be seen as simply earning 350g at level 10, which is always good (assuming you don''t like to rush early boots).', 54, 56, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(325, 'Predator''s active Movement Speed buff synergizes incredibly well with Hecarim''s [E] and passive when looking to sprint into a lane for a gank.', 55, 15, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(326, 'Hecarim can proc Sudden Impact upon landing [E] or dashing with [R]. The bonus Lethalty allows you to assassinate squishies as you dive the backline.', 55, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(327, 'Zombie Ward is a safe a reliable rune on every Jungle thanks to the nature of their vision control and ability to deep ward. ', 55, 20, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(328, 'Relentless Hunter''s Movement Speed grants you the freedom to quickly get to any fight or lane and synergizes well with Predator, Celerity, and Waterwalking.', 55, 25, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(329, 'Movement Speed means damage for Hecarim and Celerity doubles-down on that, empowering your passive, Predator, and Waterwalking.', 55, 33, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(330, 'The bonus Movement Speed granted while in the river double dips with Celerity and Hecarim''s passive, allowing him to freely take early dragon and duel just about anyone.', 55, 36, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(331, 'Unfortunately Garen doesn''t have any fantastic keystone choices, Grasp is just the best of the bad.', 56, 38, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(332, 'The bonus tenacity and slow resistance will help you overcome Garen''s biggest pitfall of getting kited by CC and slows.', 56, 41, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(333, 'Conditioning allows you to scale into the mid game as a very threatening tank.', 56, 46, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(334, 'Second Wind synergizes incredibly well with Doran''s shield and Garen''s passive, allowing you to take numerous early trades and regen substantially.', 56, 49, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(335, 'Triumph''s massive heal allows you to take the brunt of the enemy damage, as a front liner, and keep moving by picking up kills or an [R] execution.', 56, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(336, 'Coup De Grace''s execution nature synergizes very well with the execution damage pattern of Garen''s [R], securing kills that may otherwise not be possible.', 56, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(337, 'Guardian is often an underrated rune on tank junglers. Can be even better if your team has multiple tanks and you dive into fights together.', 57, 40, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(338, 'There is some choice here between Demolish and Font of Life.', 57, 42, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(339, 'More often than not taking Conditioning in the jungle is incredibly valuable option as you''re not pitted against a particular opponent.', 57, 46, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(340, 'Mundo has an incredibly fast jungle clear and takes advantage of Overgrowth''s stacking nature more abruptly.', 57, 47, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(341, 'Thanks to Mundo''s almost permanent slowing with [Q], Cheap Shot allows you to repeatedly proc the true damage and whittle away any opponent.', 57, 17, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(342, 'The majority of Mundo''s damage comes in the form of abilities. [Q]s high base damage will provide a ton of healing and greatly improves your dueling/survivability.', 57, 23, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(343, 'Rek''sai''s heavily auto-attack based damage pattern and ability to auto-reset with [Q] makes her a great user of Press the Attack. ', 58, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(344, 'Triumph allows you to dive deep into the backline with an [R] and get out safely if you execute them, thanks to the massive heal from Triumph.', 58, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(345, 'More Attack Speed on Rek''Sai mean a faster Press the Attack proc and a much faster/healthier jungle clear.', 58, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(346, 'Coup De Grace is a well-rounded reliable damage rune in this slot and synergizes insanely well with the execution of Rek''Sai''s [R].', 58, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(347, 'Transcendence allows you to hit 40% CDR with just Warrior Smite and Black Cleaver.', 58, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(348, 'Waterwalking allows you to take control of the river with faster scuttle kills and dragon control. If you find yourself in a skirmish in the river, the bonus AD will help you come out ahead.', 58, 36, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(349, 'Nautilus is one of the premier users of Aftershock thanks to his numerous forms of CC. His passive, [Q], and [R] with all grant you the bonus Armor and MR for surviving trades/all-ins.', 59, 39, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(350, 'Font of Life is a fantastic support Nautilus rune choice thanks to his ability to easily proc the effect on a large number of enemy champions in teamfights.', 59, 43, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(351, 'Iron Skin is the defacto rune choice for melee supports as the early armor allows you to take trades in lane efficiently.', 59, 44, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(352, 'Revitalize empowers your defensive utility as a support. The bonus healing/shielding applies to Font of Life, Redemption, Locket and your [W].', 59, 48, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(353, 'Biscuit Delivery is a fantastic sustain option for tank champions in lane any. The Biscuit heals for a % of your missing health, so if you proc it in a fight when you''re relatively low you''ll gain massive regen.', 59, 54, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(354, 'Celestial Body on Nautilus support allows you to tank the brunt of damage in early lane trades with your massive health pool. The extra health also slightly empowers your Font of Life healing and [W] shield.', 59, 61, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(355, 'Press the Attack synergizes well with Kled''s [W], allowing you to use the first 3 auto attack to proc the exposure and the 4th empower auto to hit extra hard.', 60, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(356, 'Triumph is an all-around valuable rune for staying alive in teamfight. It allows you to dive for a kill, take a lot of damage, and continue fighting thanks to the heal.', 60, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(357, 'Kled''s entire kit is designed around empowering his ability to land more auto attacks. The more autos you can get off in a fight directly relates to how much damage you''re doing.', 60, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(358, 'Coup De Grace is a fantastic default damage rune in this slot that allows you to finish of low health targets much more reliably.', 60, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(359, 'Kled makes great use of Sudden Impact''s Lethality thanks to his ability to dash twice with [E]. If you hit your target with [E] and stagger the reactivation you can keep the Lethality buff active on yourself for 10s+.', 60, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(360, 'The primary purpose for Ingenious Hunter on Kled is to massively increase up-time of Titanic Hydra. With max stacks, Titanic Hydra is on a 12s cooldown, allowing you to use it multiple times in a fight.', 60, 24, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(361, 'Electrocute is a fantastic assassination rune on Rengar thanks to his ability to almost instantly proc it with a Leap->[Q]->[W]. The extra burst allows you to secure your kills in a single rotation of spell.', 61, 14, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(362, 'Sudden Impact is a no-brainer on Rengar. He is a natural abuser of dashes thanks to his passive. With good positioning around bushes you should be able to keep the buff active at all times granting you permanent free Lethality.', 61, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(363, 'Zombie Ward is a safe a reliable rune on every Jungle thanks to the nature of their vision control and ability to deep ward. ', 61, 20, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(364, 'Relentless Hunter is a massive buff to Rengar''s [R], allow you to travel much further distances with just a few stacks. The bonus Movement Speed also allows you to get around the map to meet fights in a timely manner.', 61, 25, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(365, 'Rengar becomes a scary threat when he is ahead and his [R] is up. More chances to cast [R] means more kills and that''s what Rengar is all about.', 61, 31, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(366, 'Transcendence allows you to build Black Cleaver and Lethality items freely without fear of wasting gold on over-capping CDR.', 61, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(367, 'Press the Attack allows Aatrox to take short trades for burst and exit to out-sustain his lane opponent. The expose damage also synergies well with his [W] empowered damage.', 62, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(368, '', 62, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(369, 'As an auto attack focused carry top, more Attack Speed means more damage (and more healing with [W]).', 62, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(370, 'Coup De Grace is a solid all-around damage rune choice, allowing you to out trade and sustain your lane opponent to keep them in kill range.', 62, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(371, 'Sudden Impact synergizes well with Aatrox''s all-in/dive play pattern, empowering the damage of his [Q], Autos, and [E]. The bonus Magic Penetration also slightly empowers his [R] damage.', 62, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(372, 'A few stack of Relentless Hunter allows you to roam the map and find dives with your passive.', 62, 25, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(373, 'The bonus exposure damage from Press the Attack further empowers your auto attacks and lets you deal immense ramping damage in extended duels.', 63, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(374, 'Triumph is an all-around solid rune choice. In 2v2s and 2v1s, the extra healing can be enough to grant you the ability to sustain and move on to the next target.', 63, 6, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(375, 'The majority of Irelia''s damage comes in the form of her Auto Attacks thanks to her [W]. Alacrity grants you the opportunity for an additional 1-2 autos when the enemy is stunned with [E]', 63, 8, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(376, 'Coup De Grace allows Irelia to continue chipping away at her target until their life bar is fully depleted.', 63, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(377, 'Second Wind is a fantastic mid-fight sustain rune when taking small-medium trades in lane. It allows you to stay healthy as you beat on your target.', 63, 49, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(378, 'Iron Skin is a great rune for early-game dueling power. The bonus armor is extra beneficial with the healing from your [W] and sustain from Second Wind.', 63, 44, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(379, 'The bonus exposure damage from Press the Attack further empowers her True Damage auto attacks and lets her deal immense damage in duels.', 64, 2, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(380, 'Overheal is a rune that synergizes well with Irelia''s healing from [W] and [R] and the Life Steal from Botrk, to keep her topped off with a shield.', 64, 5, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(381, 'Tenacity is a great stat on Irelia so she can stick to her target and continue building up auto attacks.', 64, 9, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(382, 'Coup De Grace allows Irelia to continue chipping away at her target until their life bar is fully depleted.', 64, 11, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(383, 'Irelia can regularly proc Sudden Impact with [Q] to sustain the Lethality buff and kill her target while you chases them down.', 64, 19, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(384, 'Zombie Ward is a solid vision option for further empowering the vision from your Trinket wards.', 64, 20, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(385, 'If you''re able to cast [Q] on an enemy before, or shortly after, dealing damage the Movement Speed slow on the fear is enough to make the Comet undodgeable. ', 65, 27, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(386, 'Fiddle''s ganking potential when his [R] is down is next-to-none. The more your [R] is off of cooldown the more opportunities you have for ganks and kills.', 65, 31, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(387, 'Fiddle typically wants to start building in AP itemization as quickly as he can. With Transcendence your mid-game scales decently as you can start building full AP after completing Zhonya''s.', 65, 32, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(388, 'Gathering Storm is your late-game insurance policy as Fiddle''s [R] has a reasonably good AP ratio and scales well to win your team teamfights.', 65, 37, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(389, 'Perfect Timing allows you the freedom of hard engages early with the safety of Stopwatch and an efficient mid-game with a cheaper buy on Zhonya''s.', 65, 55, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(390, 'Cosmic Insight is an all-around solid rune on any champion in any position. The summoner CDR gives you a few more Flashes for engage and a number of more Smite opportunities.', 65, 59, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(391, 'Aftershock is the go-to rune on any engage tank. After jumping in with [E], the bonus Armor and MR allows your to survive the engage while sticking to your target and CCing them.', 66, 39, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(392, 'Unflinching allows you to continue to stick to your target after jumping in. After Zac has engaged with[E], it can be difficult to stay on top of enemy champions and spam [W] (your primary source damage).', 66, 41, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(393, 'Conditioning scales well with Aftershock, as both of them buff each other. The bonus resist from Aftershock make Conditioning stronger, and Conditioning resists after 10mins make Aftershock stronger.', 66, 46, '2017-12-24 17:16:39', '2017-12-24 17:16:39'),
(394, 'Zac does a lot of natural self healing when he pick ups his bobs. Revitalize empowers your jungle clear with a much healthier first clear.', 66, 48, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(395, 'Transcendence allows you to bypass early game CDR for more defensive based items (Randuins etc.) while still granting you the CDR for [W] spam and CC lockup.', 66, 32, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(396, 'Scorch heavily empowers your early to mid game ganks opening the opportunity for snowballing lanes.', 66, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(397, 'Arcane Comet is a relatively abusable keystone for Lissandra thanks to the very short cooldown and slow on [Q]. [Q] harass with Comet and Scorch will result in a lot of chip damage during lane.', 67, 27, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(398, 'The Ultimate Hat grants Lissandra fantastic safety and kill pressure. At 45% CDR and max Hat stacks, your ult is down to 32s.', 67, 31, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(399, 'Absolute Focus empowers your ability to harass in lane with long range [Q]s through the minion wave for even more empowered damage.', 67, 34, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(400, 'Scorch is a fantastic lane harass rune, and pairs incredibly well with Aery to keep the pressure up.', 67, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(401, 'Biscuit Delivery is a great rune in match-ups where you''re intending to sustain in lane for larger back timings. If timed well (when low health) in fights, the massive sustain can be the difference between life and death.', 67, 54, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(402, 'Future''s Market on Lissandra allows you to hit an earlier Rod of Ages purchase to begin stacking sooner than normal, making your mid game incredibly strong if you''re not behind..', 67, 57, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(403, 'Draven benefits massively from the bonus exposure damage of Press the Attack paired with his [Q] for ending people''s lives in a heartbeat.', 68, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(404, 'Taking Triumph lets you fight to the death and hold your group for the kill, coming out the other side with massive health to keep fighting.', 68, 6, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(405, 'Bloodline synergizes incredibly well with Draven bonus damage on [Q] and the exposure damage of Press the Attack, allowing you to duel and sustain in lane.', 68, 10, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(406, 'The bonus damage on Coup De Grace allows you exert your dominance over bot lane and snowball by executing low health targets.', 68, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(407, 'Celerity''s bonus Movment Speed grants you a little freedom in catching axes. At also allows your [W] to become a small AD steroid.', 68, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(408, 'Gathering Storm is your late game insurance policy on damage. Draven is not typically an AD Carry that scales well into the late game, but Gathering Storm helps patch up some of those issues.', 68, 37, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(409, 'Draven benefits massively from the bonus exposure damage of Press the Attack paired with his [Q] for ending people''s lives in a heartbeat.', 69, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(410, 'Draven''s itemization tends to lean heavy on Life Steal thanks to his [Q]s damage, allowing him to keep an Overheal shield up very reliably.', 69, 5, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(411, 'Bloodline further allows you to keep a healthy Overheal shield up as well as synergizing well with his already heavy Life Steal itemization.', 69, 10, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(412, 'Draven is all about ending squishy target''s lives as soon as possible and Coup De Grace''s execution damage makes his [Q] damage insane.', 69, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(413, 'Combined with Life Steal and Overheal, Taste of Blood lets you take a lot of early skirmish fights for lane control.', 69, 18, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(414, 'Draven loves nothing more to snowball and continue to spiral the game off kills. Eyeball Collection grants you even more AD for those kills.', 69, 22, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(415, 'Aery is a fantastic lane harass rune for Pantheon. Spamming [Q] in lane will repeatedly proc Aery for bonus Magic damage, and your all-ins will result in multiple procs thanks to your close range.', 70, 26, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(416, 'Manaflow Band acts as your primary source of mana regen so that you can harass constantly with [Q].', 70, 30, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(417, 'Celerty''s bonus Movement Speed allows you to chase down your target and keep in range for [Q]s and [W].', 70, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(418, 'Along with Aery, Scorch is a fantastic rune for lane harass and poke. The extra bit of damage can easily be enough to determine the difference between a kill and survival.', 70, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(419, 'Sudden Impact empowers your all-in combo, as you [W] acts as a dash. The bonus Lethality pushes your Aery, Scorch, and ability damage into kill threat.', 70, 19, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(420, 'Pantheon often plays as a bit of a cheese pick, looking to assassinate and snowball to a victory. His late game falls off incredibly hard and Eyeball Collection lets you play up on further empowering an aggressive early game.', 70, 22, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(421, 'Arcane Comet is a solid offensive rune choice for Jhin thanks to its high Bonus AD scaling. If procced when using [W] for a root or [R], it''s almost guaranteed to hit.', 71, 27, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(422, 'Manaflow Band provides you the mana sustain so you can start Doran''s Blade instead of the typical Doran''s Ring.', 71, 30, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(423, 'Jhin is one of the fastest moving AD Carries in the game thanks to his passive, Zeal stacking, and tendency to build Ghostblade allowing you to position better for your 4th shot.', 71, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(424, 'Scorch is an all-around solid lane harass rune. You should be able to proc it relatively easily with [Q] or [W].', 71, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(425, 'Biscuit Delivery offer you an immense amount of health sustain during the laning phase to help you overcome to sometime oppressive amounts of poke and harass in the early game.', 71, 54, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(426, 'Cosmic Insight''s extra bit of CDR helps to empower your role as a long range utility AD Carry.', 71, 59, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(427, 'Jhin loves the healing from Fleet Footwork for sustain, but the movement speed to get into 4th shot range is the real kicker here.', 72, 4, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(428, 'Thanks to Fleet Footwork it''s quite easy to gain a reliable shield to keep you healthy in small trades.', 72, 5, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(429, 'Attack Speed on Jhin acts as a great AD multiplier, combined with Absolute Focus and Gathering Storm', 72, 8, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(430, 'Jhin''s 4th shot execution damage pattern screams for you to take Coup De Grace so you can quickly and painless execute your target.', 72, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(431, 'Flat Attack Damage on Jhin scales incredibly well with the attack speed multiplier on his passive, and Absolute Focus grants us just that.', 72, 34, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(432, 'With Jhin''s passive acting as an Attack Damage modifier, you''ll be hitting insane AD numbers in the late game.', 72, 37, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(433, 'The key to this build is lane pressure and roaming. Spellbook plus Cosmic Insight allows you to keep your Teleport on a short cooldown so you''re able to shove lane and roam.', 73, 50, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(434, 'Zhonya''s and Zilean''s [R] grant numerous chances to minimize positioning mistakes.', 73, 55, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(435, 'Minion Dematerialzer plays a key role in being able to keep the lane pressure/wave clear up so you''re able to leave lane and find ganks or fights with your jungler.', 73, 58, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(436, 'With Zilean''s only damage ability being [Q], he heavily relies on the bonus CDR. The extra bit of Summoner CDR also means more TP pressure and Flash safety.', 73, 59, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(437, 'At level 16 Zilean''s [R] is already pretty short. With max Ultimate Hat stacks that puts you at a 24s cooldown [R] heading into the mid game.', 73, 31, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(438, 'Transcendence allows you to go Morello''s and Lucidity as your only 2 CDR items, while still hitting cap.', 73, 32, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(439, 'Yorick''s trading/fighting pattern relies heavily on [Q], therefore auto attacks. Grasp''s heal and bonus damage keep you healthy and empower longer duration duels.', 74, 38, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(440, 'Demolish empowers and emphasizes Yorick''s ability to split push and shred towers. If you''re left alone by the enemy team you''ll have the ability to take several towers if not responded to.', 74, 42, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(441, 'Conditioning is the greedy rune in this slot. Yorick has strong early laning if you play around your Ghouls well allowing you to pressure safely without the early resists.', 74, 46, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(442, 'Second Wind is the rune of choice in this slot if you''re looking to fight and take a lot of trades during lane.', 74, 49, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(443, 'Every point of Tenacity that you can pick up further empowers your ability to deal damage due to your lack of mobility and having to just run at the enemy.', 74, 9, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(444, 'Yorick does an impressive and unexpected amount of damage. Coup De Grace lets you put that damage to good use to secure kills.', 74, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(445, 'Lethal Tempo allows Xayah to get out her stacked feathers as fast as possible for a bigger [E].', 75, 3, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(446, 'Triumph allows you to hold your ground in fights to continue dishing out damage after a kill/assist. ', 75, 6, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(447, 'The bonus Attack Speed allows you to get more feathers out in a a close all-in kiting fight so that you''re able to secure the kill.', 75, 8, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(448, 'Coup De Grace is an all-around reliable source of damage when looking trying to kill squishy targets with [E].', 75, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(449, 'Xayah is an AD Carry who heavily prioritizes CDR in the form of Essence Reaver so that you''re able to [E] multiple times in a fight and [R] more often for safety.', 75, 32, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(450, 'Gathering Storm is your late-game insurance policy. If you can make it to 30mins+ this rune starts becoming a massive source of damage.', 75, 37, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(451, 'The bonus damage on an exposed enemy from Press the Attack synergies very well with Xayah''s [W] bonus damage.', 76, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(452, 'Overheal is an all-around great rune choices on most AD Carries. The shield while small, negates a lot of damage over the course of the game.', 76, 5, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(453, 'Attack Speed and more attack speed. Every AD Carry''s dream.', 76, 8, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(454, 'Combine the bonus damage from Press the Attack, Xayah''s [W], and this rune, you''ll be shredding enemies regardless of their health.', 76, 12, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(455, 'Xayah loves CDR as her primary damage source comes from using abilities to get feathers out.', 76, 32, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(456, 'Thanks to having an un-targetable [R], you''re able to opt into a more offensive rune choice in this slot and Gathering Storm provides a whole lot of that.', 76, 37, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(457, 'Nidalee often acts a lot like an assassin, wanting to land a spear and blow up her target quickly. A Spear->Pounce->Swipe will instantly proc the Electro cute for a ton of damage.', 77, 14, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(458, 'Nidalee''s high mobility with Pounce allows her to keep the Magic Penetration and Lethality buff up at almost all times.', 77, 19, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(459, 'As an assassin, you''re wanting to pick up kills around the map from as early in the game as you can. Doubling down on that, we can take Eyeball here for even more power to snowball.', 77, 22, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(460, 'Nidlee is a Jungler who excels at clearing her jungle insanely quickly and getting around the map to find any fight she wants.', 77, 25, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(461, 'Celerity synergizes pretty well with Nidalee''s passive, granting you more AP when entering a bush. The bonus Movement Speed also furthers your ability to get to fights anywhere on the map.', 77, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(462, 'Waterwalking is one of the highest value runes if you can take advantage of and abuse it while in the river. ', 77, 36, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(463, 'Aery is taken here for it''s reliability and chip damage when trading with [Q]. ', 78, 26, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(464, 'Nullifying Orb lets you take aggressive trades/fights into high-threat AP mages during laning phase.', 78, 29, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(465, 'In the mid to late game, Viktor has a nearly constant haste thanks to his empowered [Q]. The bonus Movement Speed from [Q] will grant you a bit of an AP steroid.', 78, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(466, 'Combined with Aery, Scorch is a great rune for taking small trades and chipping away at the enemy in lane.', 78, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(467, 'Future''s Market plays a huge role in overcoming Viktor''s pain points of rough buy-timings when rushing his Hex Core upgrades.', 78, 57, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(468, 'Biscuit Delivery provides a great amount of sustain during lane so you can more reliably back on better buy-timings.', 78, 54, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(469, 'This rune setup is all about hitting item power-spikes as soon as possible and the bonus gold you get some Klepto can pay itself off insanely quickly if you''re playing into an easy melee support lane.', 79, 52, '2017-12-24 17:16:40', '2017-12-24 17:16:40');
INSERT INTO `keystones_why` (`id`, `stone_why`, `builds_id`, `keystones_id`, `created_at`, `updated_at`) VALUES
(470, 'We are looking to save and earn as much gold as we possibly can with this setup and Biscuits (combined with Klepto) allows us to rely on these for sustain, saving you 100s of gold to put into other items.', 79, 54, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(471, 'Continuing the pattern, Magical Footwear is just another source of raw gold income in the form of frugality.', 79, 56, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(472, 'Cosmic Insight is simply an overall fantastic rune choice on any champion in the game, but especially supports as they can make great use of the extra item CDR.', 79, 59, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(473, 'You''re looking to poke and harass a lot with [Q]->auto in lane, for both pressure as well as Kleptomancy procs. To keep this up and earn as much gold as possible, you''re going to need the mana sustain.', 79, 30, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(474, 'Because this loadout focuses heavily on [Q] spam and poke in lane, Scorch is a natural option to further empower that damage and keep the pressure up.', 79, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(475, 'Summon Aery is a great option for Sona both offensively (with autos and [Q]) and defensively (with [W]). ', 80, 26, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(476, 'Manaflow Band is a great option here for Sona because you''re going to want to play aggressively in lane early spamming [Q].', 80, 30, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(477, 'Like all support Transcendence is the best option here as it scales really well with your itemization.', 80, 32, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(478, 'Scorch allows you to dominate the lane phase if you''re able to consistently poke with your [Q].', 80, 35, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(479, 'To key to being a useful support is effective warding and Zombie Ward shines in this department keeping vision up for you even more.', 80, 20, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(480, 'Sona''s itemization is ripe for active items (Locket, Redemption, etc.). Pair Ingenious Hunter''s item CDR with Ruby Sightstone and you''ll be able to spam your items.', 80, 24, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(481, 'Tahm''s incredibly strong slow on [Q] allows him to chase down and trade incredibly well in lane with auto attacks. The stacking health on Grasp further empowers his passive. ', 81, 38, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(482, 'Tahm''s biggest downfall is how incredibly immobile and prone to CC/slowing he is. The bonus Tenacity/Slow Resist makes you incredibly hard to het away from once you have Righteous Glory and Mercury''s Treads.', 81, 41, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(483, 'This slot is highly dependent on lane matchup and enemy composition. If you think you can get away with an easy lane (Maokai etc.) you can opt for a greedier choice in Conditioning.', 81, 44, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(484, 'Overgrowth is a rune that allows Tahm to scale, both defensively and offensively, incredibly well. The bonus stacking health further empowers your autos and abilities thanks to Tahm''s Passive.', 81, 47, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(485, 'Triumph is a rune that is deceptively good in it''s ability to sustain in teamfights. If you''re playing frontline and soaking damage, picking up assists will massively heal you to keep moving forward.', 81, 6, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(486, 'Especially during the laning phase, Tahm relies heavily on the ability to take trades by getting as many autos off as possible. The faster autos means more damage from passive, Grasp, and faster passive stacks.', 81, 8, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(487, 'Guardian on Tahm allows him to eat a teammate that is about to take damage, shield, and gain the bonus Movement Speed to allow him to run away and re-position to spit them out.', 82, 40, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(488, 'Like Braum, the combination of [Q] slow and Tahm''s natural health stacking allows you to provide decent healing in lane fights.', 82, 43, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(489, 'The Armor and Magic Resist of Conditioning pairs very well with champions who buy an early Locket to make for a strong mid-game teamfight.', 82, 46, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(490, 'Revitalize synergizes well with Tahm''s passive shield, FotM, Locket, and healing from Redemption.', 82, 48, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(491, 'Approach Velocity is a great rune on Tahm to assist getting into range to [W] a CCed teammate, and for follow-up chase and damage on an enemy you have hit with [Q].', 82, 60, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(492, 'Biscuit Delivery allows you to sustian through tough poke lane that might abuse your short range during the laning phase.', 82, 54, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(493, 'This build is ALL ABOUT flashing in with your ultimate and blowing people up. The 25% summoner CDR + Cosmic Insight puts Flash on a 180s cooldown.', 83, 50, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(494, 'Perfect Timing gives you the safety of a large 5-man Flash->[R] without having to worry about getting blown up.', 83, 55, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(495, '', 83, 57, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(496, 'More Summoner CDR means more Flash all-ins.', 83, 59, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(497, 'Kennen is all about his [R], and this loadout in particular places heavy emphasis on spamming [R] and abusing your low Summoner cooldowns to take big teamfights immediately.', 83, 31, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(498, 'Celerity actually synergizes incredibly well with Kennen''s kit. The bonus Movement Speed from [E] grants you a burst of extra Ability Power during your [R] all-ins.', 83, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(499, 'Urgot is a fantastic user of Press the Attack because he is able to almost instantly proc the exposure damage with [W], allowing the rest of his follow-up damage to shred his target.', 84, 2, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(500, 'Urgot is a great lane duelist and Triumph allows you to potentially take a 1v2 against the enemy Jungler, executing the low target with [R], and moving on the kill the other.', 84, 6, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(501, 'Hard CC is Urgot''s biggest proponent holding him back from killing everyone and every thing. More Tenacity will allow you to stick to your target and execute them.', 84, 9, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(502, 'Coup De Grace is a rune designed to execute, allowing you to quickly get into execution range of your [R].', 84, 11, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(503, 'The bonus Movement Speed of Celerity massively empowers your ability to dance around your target during [W] and proc every leg.', 84, 33, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),
(504, 'More [R]s means more opportunity to snowball a lead and execute targets on cooldown.', 84, 31, '2017-12-24 17:16:40', '2017-12-24 17:16:40'),