-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDATABASEv2.sql
More file actions
1991 lines (1959 loc) · 159 KB
/
DATABASEv2.sql
File metadata and controls
1991 lines (1959 loc) · 159 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
-- --------------------------------------------------------
-- Host: vweb13.nitrado.net
-- Server Version: 5.1.73-1+deb6u1 - (Debian)
-- Server Betriebssystem: debian-linux-gnu
-- HeidiSQL Version: 9.1.0.4867
-- --------------------------------------------------------
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET NAMES utf8 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
-- Exportiere Datenbank Struktur für ni50265_1sql1
CREATE DATABASE IF NOT EXISTS `ni50265_1sql1` /*!40100 DEFAULT CHARACTER SET latin1 */;
USE `ni50265_1sql1`;
-- Exportiere Struktur von Tabelle ni50265_1sql1.ItemBlocks
CREATE TABLE IF NOT EXISTS `ItemBlocks` (
`ID` int(10) unsigned NOT NULL AUTO_INCREMENT,
`Name` varchar(500) NOT NULL DEFAULT '',
`recMath` bit(1) NOT NULL DEFAULT b'0',
`minSumLvl` tinyint(4) NOT NULL DEFAULT '-1',
`maxSumLvl` tinyint(4) NOT NULL DEFAULT '-1',
`showIfSumSpell` varchar(50) NOT NULL DEFAULT '',
`hideIfSumSpell` varchar(50) NOT NULL DEFAULT '',
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=35 DEFAULT CHARSET=latin1;
-- Exportiere Daten aus Tabelle ni50265_1sql1.ItemBlocks: ~16 rows (ungefähr)
/*!40000 ALTER TABLE `ItemBlocks` DISABLE KEYS */;
INSERT INTO `ItemBlocks` (`ID`, `Name`, `recMath`, `minSumLvl`, `maxSumLvl`, `showIfSumSpell`, `hideIfSumSpell`) VALUES
(1, 'Test', b'0', -1, -1, '', ''),
(2, 'Test2', b'0', -1, -1, '', ''),
(18, 'starting', b'0', -1, -1, '', ''),
(19, 'yoloswaglord', b'0', -1, -1, '', ''),
(20, 'op huh', b'1', -1, -1, '', ''),
(21, 'op huh', b'0', -1, -1, '', ''),
(22, 'man fk this', b'0', -1, -1, '', ''),
(23, 'op huh', b'0', -1, -1, '', ''),
(24, 'op huh', b'1', -1, -1, '', ''),
(25, 'op huh', b'0', -1, -1, '', ''),
(26, 'op huh', b'0', -1, -1, '', ''),
(27, 'op huh', b'0', -1, -1, '', ''),
(28, 'op huh', b'0', -1, -1, '', ''),
(29, 'op huh', b'0', -1, -1, '', ''),
(30, 'op huh', b'0', -1, -1, '', ''),
(31, 'op huh', b'0', -1, -1, '', ''),
(32, 'drgayerh', b'0', -1, -1, '', ''),
(33, 'sdfsdf', b'0', -1, -1, '', ''),
(34, 'op huh', b'0', -1, -1, '', '');
/*!40000 ALTER TABLE `ItemBlocks` ENABLE KEYS */;
-- Exportiere Struktur von Tabelle ni50265_1sql1.ItemBuildsFrom
CREATE TABLE IF NOT EXISTS `ItemBuildsFrom` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`ItemID` int(11) NOT NULL,
`BuildsFromID` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=368 DEFAULT CHARSET=latin1;
-- Exportiere Daten aus Tabelle ni50265_1sql1.ItemBuildsFrom: ~367 rows (ungefähr)
/*!40000 ALTER TABLE `ItemBuildsFrom` DISABLE KEYS */;
INSERT INTO `ItemBuildsFrom` (`ID`, `ItemID`, `BuildsFromID`) VALUES
(1, 3725, 3713),
(2, 3725, 3751),
(3, 3724, 3713),
(4, 3724, 3057),
(5, 3089, 1026),
(6, 3089, 1058),
(7, 3089, 1052),
(8, 3723, 3713),
(9, 3723, 3134),
(10, 3722, 3711),
(11, 3722, 1043),
(12, 3087, 3086),
(13, 3087, 3093),
(14, 3721, 3711),
(15, 3721, 3751),
(16, 3086, 1051),
(17, 3086, 1042),
(18, 3720, 3711),
(19, 3720, 3057),
(20, 3085, 1042),
(21, 3085, 1043),
(22, 3085, 1042),
(23, 1319, 3047),
(24, 3084, 1011),
(25, 3084, 3801),
(26, 1318, 3047),
(27, 3083, 3801),
(28, 3083, 1011),
(29, 3083, 3801),
(30, 1317, 3047),
(31, 3082, 1029),
(32, 3082, 1029),
(33, 1316, 3047),
(34, 1315, 3047),
(35, 1314, 3020),
(36, 1313, 3020),
(37, 1312, 3020),
(38, 3285, 1058),
(39, 3285, 3113),
(40, 1311, 3020),
(41, 1310, 3020),
(42, 3726, 3713),
(43, 3726, 1043),
(44, 3924, 1053),
(45, 3924, 1036),
(46, 3711, 1039),
(47, 3098, 3303),
(48, 3714, 3715),
(49, 3714, 3134),
(50, 3713, 1039),
(51, 1329, 3117),
(52, 3290, 3108),
(53, 3290, 3113),
(54, 1328, 3117),
(55, 3710, 3706),
(56, 3710, 1043),
(57, 3097, 3302),
(58, 3096, 3301),
(59, 3091, 1043),
(60, 3091, 1033),
(61, 3091, 1042),
(62, 1325, 3117),
(63, 3719, 3711),
(64, 3719, 3134),
(65, 3090, 3191),
(66, 3090, 1058),
(67, 1324, 3111),
(68, 3093, 1051),
(69, 1327, 3117),
(70, 3092, 3098),
(71, 3092, 3108),
(72, 1326, 3117),
(73, 3716, 3715),
(74, 3716, 3057),
(75, 1321, 3111),
(76, 3715, 1039),
(77, 1320, 3111),
(78, 3718, 3715),
(79, 3718, 1043),
(80, 1323, 3111),
(81, 3717, 3715),
(82, 3717, 3751),
(83, 1322, 3111),
(84, 1330, 3158),
(85, 3911, 3801),
(86, 3911, 3067),
(87, 3742, 1031),
(88, 3742, 1011),
(89, 3745, 3028),
(90, 3745, 3067),
(91, 3744, 3028),
(92, 3744, 1052),
(93, 3748, 3077),
(94, 3748, 1011),
(95, 3841, 3844),
(96, 3840, 3841),
(97, 3840, 3114),
(98, 1307, 3009),
(99, 1306, 3009),
(100, 1309, 3009),
(101, 1308, 3009),
(102, 1301, 3006),
(103, 1300, 3006),
(104, 1303, 3006),
(105, 1302, 3006),
(106, 1305, 3009),
(107, 1304, 3006),
(108, 1057, 1033),
(109, 3930, 3710),
(110, 3931, 3718),
(111, 3932, 3722),
(112, 3933, 3726),
(113, 3110, 3082),
(114, 3110, 3024),
(115, 3111, 1001),
(116, 3111, 1033),
(117, 3112, 1006),
(118, 3112, 1006),
(119, 3112, 1057),
(120, 3829, 3136),
(121, 3829, 1028),
(122, 3106, 1042),
(123, 3108, 1052),
(124, 3102, 3211),
(125, 3102, 3801),
(126, 3105, 1033),
(127, 3105, 3801),
(128, 3104, 3122),
(129, 3104, 1037),
(130, 3104, 1018),
(131, 3100, 3057),
(132, 3100, 3113),
(133, 3101, 1042),
(134, 3101, 1042),
(135, 3801, 1028),
(136, 3801, 1006),
(137, 3706, 1039),
(138, 3707, 3706),
(139, 3707, 3134),
(140, 3800, 3010),
(141, 3800, 3801),
(142, 3504, 3114),
(143, 3504, 3113),
(144, 3708, 3706),
(145, 3708, 3057),
(146, 3709, 3706),
(147, 3709, 3751),
(148, 3508, 1053),
(149, 3508, 1038),
(150, 3361, 3340),
(151, 3362, 3340),
(152, 3363, 3342),
(153, 3364, 3341),
(154, 3146, 3144),
(155, 3146, 3145),
(156, 3006, 1001),
(157, 3006, 1042),
(158, 3003, 3070),
(159, 3003, 1058),
(160, 3004, 3070),
(161, 3004, 1037),
(162, 3009, 1001),
(163, 3007, 3073),
(164, 3007, 1058),
(165, 3008, 3073),
(166, 3008, 1037),
(167, 3010, 1028),
(168, 3010, 1027),
(169, 3156, 3155),
(170, 3156, 1037),
(171, 3155, 1036),
(172, 3155, 1033),
(173, 3154, 3106),
(174, 3154, 1036),
(175, 3154, 1042),
(176, 3153, 3144),
(177, 3153, 1043),
(178, 3152, 3145),
(179, 3152, 3108),
(180, 1011, 1028),
(181, 3151, 3136),
(182, 3151, 1026),
(183, 3150, 1053),
(184, 3150, 1037),
(185, 3150, 1018),
(186, 3139, 1038),
(187, 3139, 3140),
(188, 3135, 1026),
(189, 3135, 1052),
(190, 3136, 1028),
(191, 3136, 1052),
(192, 3137, 3140),
(193, 3137, 3101),
(194, 3001, 1026),
(195, 3001, 1057),
(196, 3143, 3082),
(197, 3143, 1011),
(198, 3142, 3093),
(199, 3142, 3134),
(200, 3145, 1052),
(201, 3145, 1052),
(202, 3401, 3097),
(203, 3401, 3067),
(204, 3144, 1036),
(205, 3144, 1053),
(206, 3211, 1028),
(207, 3211, 1033),
(208, 3141, 1036),
(209, 3140, 1033),
(210, 3124, 1026),
(211, 3124, 1037),
(212, 3029, 3010),
(213, 3029, 1026),
(214, 3027, 3010),
(215, 3027, 1026),
(216, 3028, 1004),
(217, 3028, 1033),
(218, 3028, 1004),
(219, 3025, 3057),
(220, 3025, 3024),
(221, 3026, 1057),
(222, 3026, 1031),
(223, 3512, 2053),
(224, 3512, 1057),
(225, 3035, 1037),
(226, 3035, 1036),
(227, 3031, 1038),
(228, 3031, 1037),
(229, 3031, 1018),
(230, 3222, 3028),
(231, 3222, 3114),
(232, 3134, 1036),
(233, 3134, 1036),
(234, 3113, 1052),
(235, 3114, 1004),
(236, 3114, 1004),
(237, 3430, 3433),
(238, 3430, 1052),
(239, 3115, 3101),
(240, 3115, 3108),
(241, 3431, 3433),
(242, 3431, 1052),
(243, 3116, 1058),
(244, 3116, 1052),
(245, 3116, 1011),
(246, 3117, 1001),
(247, 3022, 1028),
(248, 3022, 1011),
(249, 3022, 1037),
(250, 3024, 1027),
(251, 3024, 1029),
(252, 3023, 3108),
(253, 3023, 3113),
(254, 3020, 1001),
(255, 3122, 1051),
(256, 3122, 1036),
(257, 2053, 1006),
(258, 2053, 1029),
(259, 3048, 3007),
(260, 3047, 1001),
(261, 3047, 1029),
(262, 2051, 1006),
(263, 2051, 1028),
(264, 3434, 3433),
(265, 3434, 1052),
(266, 3197, 3196),
(267, 3433, 3108),
(268, 3433, 3114),
(269, 3198, 3197),
(270, 3196, 3200),
(271, 1053, 1036),
(272, 3191, 1029),
(273, 3191, 1052),
(274, 3053, 1011),
(275, 3053, 1036),
(276, 3050, 1052),
(277, 3050, 3024),
(278, 3050, 1052),
(279, 3190, 3105),
(280, 3190, 3067),
(281, 3056, 2053),
(282, 3056, 3067),
(283, 3057, 1027),
(284, 3057, 1052),
(285, 2049, 1028),
(286, 1341, 3158),
(287, 1340, 3117),
(288, 3187, 3024),
(289, 3187, 3067),
(290, 1339, 3111),
(291, 3184, 3044),
(292, 3184, 1037),
(293, 1043, 1042),
(294, 1043, 1042),
(295, 3185, 3122),
(296, 3185, 1018),
(297, 1335, 3006),
(298, 3040, 3003),
(299, 1336, 3009),
(300, 3180, 1057),
(301, 3180, 3010),
(302, 3041, 1052),
(303, 1337, 3020),
(304, 3181, 1037),
(305, 3181, 1053),
(306, 3042, 3004),
(307, 1338, 3047),
(308, 3043, 3008),
(309, 1331, 3158),
(310, 3044, 1028),
(311, 3044, 1036),
(312, 1332, 3158),
(313, 1333, 3158),
(314, 3046, 1018),
(315, 3046, 3086),
(316, 3046, 1042),
(317, 1334, 3158),
(318, 3069, 3096),
(319, 3069, 3114),
(320, 3070, 1027),
(321, 3070, 1004),
(322, 3174, 3108),
(323, 3174, 3028),
(324, 3174, 1052),
(325, 3071, 3044),
(326, 3071, 3067),
(327, 3751, 1028),
(328, 3172, 3101),
(329, 3172, 1037),
(330, 1031, 1029),
(331, 3078, 3086),
(332, 3078, 3057),
(333, 3078, 3044),
(334, 3077, 1037),
(335, 3077, 1036),
(336, 3077, 1006),
(337, 3077, 1006),
(338, 3074, 3077),
(339, 3074, 1053),
(340, 3170, 3191),
(341, 3170, 1057),
(342, 3075, 1029),
(343, 3075, 1031),
(344, 3652, 1037),
(345, 3652, 1042),
(346, 3072, 1053),
(347, 3072, 1038),
(348, 3073, 1027),
(349, 3073, 1004),
(350, 2045, 2049),
(351, 2045, 1028),
(352, 3158, 1001),
(353, 3157, 3191),
(354, 3157, 1058),
(355, 3159, 3106),
(356, 3159, 1036),
(357, 3159, 1042),
(358, 3060, 3105),
(359, 3060, 3108),
(360, 3165, 3108),
(361, 3165, 3114),
(362, 3165, 1052),
(363, 3065, 3211),
(364, 3065, 3067),
(365, 3067, 1028),
(366, 3068, 1031),
(367, 3068, 3751);
/*!40000 ALTER TABLE `ItemBuildsFrom` ENABLE KEYS */;
-- Exportiere Struktur von Tabelle ni50265_1sql1.ItemBuildsInto
CREATE TABLE IF NOT EXISTS `ItemBuildsInto` (
`ID` int(11) NOT NULL AUTO_INCREMENT,
`ItemID` int(11) NOT NULL,
`BuildsIntoID` int(11) NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB AUTO_INCREMENT=364 DEFAULT CHARSET=latin1;
-- Exportiere Daten aus Tabelle ni50265_1sql1.ItemBuildsInto: ~363 rows (ungefähr)
/*!40000 ALTER TABLE `ItemBuildsInto` DISABLE KEYS */;
INSERT INTO `ItemBuildsInto` (`ID`, `ItemID`, `BuildsIntoID`) VALUES
(1, 3722, 3932),
(2, 3086, 3046),
(3, 3086, 3078),
(4, 3086, 3087),
(5, 3082, 3110),
(6, 3082, 3143),
(7, 3726, 3933),
(8, 3711, 3719),
(9, 3711, 3720),
(10, 3711, 3721),
(11, 3711, 3722),
(12, 3098, 3092),
(13, 3713, 3723),
(14, 3713, 3724),
(15, 3713, 3725),
(16, 3713, 3726),
(17, 3710, 3930),
(18, 3097, 3401),
(19, 3096, 3069),
(20, 3093, 3087),
(21, 3093, 3142),
(22, 3715, 3714),
(23, 3715, 3716),
(24, 3715, 3717),
(25, 3715, 3718),
(26, 3718, 3931),
(27, 3844, 3841),
(28, 3841, 3840),
(29, 1058, 3089),
(30, 1058, 3157),
(31, 1058, 3003),
(32, 1058, 3007),
(33, 1058, 3090),
(34, 1058, 3116),
(35, 1058, 3285),
(36, 1057, 3001),
(37, 1057, 3026),
(38, 1057, 3112),
(39, 1057, 3170),
(40, 1057, 3180),
(41, 1057, 3512),
(42, 3111, 1321),
(43, 3111, 1323),
(44, 3111, 1320),
(45, 3111, 1322),
(46, 3111, 1324),
(47, 3111, 1339),
(48, 3106, 3154),
(49, 3106, 3159),
(50, 3108, 3174),
(51, 3108, 3092),
(52, 3108, 3115),
(53, 3108, 3023),
(54, 3108, 3165),
(55, 3108, 3152),
(56, 3108, 3060),
(57, 3108, 3290),
(58, 3108, 3433),
(59, 3105, 3190),
(60, 3105, 3060),
(61, 3101, 3115),
(62, 3101, 3172),
(63, 3101, 3137),
(64, 3245, 3006),
(65, 3245, 3047),
(66, 3245, 3020),
(67, 3245, 3158),
(68, 3245, 3111),
(69, 3245, 3117),
(70, 3245, 3009),
(71, 3801, 3105),
(72, 3801, 3083),
(73, 3801, 3084),
(74, 3801, 3102),
(75, 3801, 3800),
(76, 3801, 3911),
(77, 3706, 3707),
(78, 3706, 3708),
(79, 3706, 3709),
(80, 3706, 3710),
(81, 1004, 3028),
(82, 1004, 3070),
(83, 1004, 3073),
(84, 1004, 3114),
(85, 1001, 3006),
(86, 1001, 3047),
(87, 1001, 3020),
(88, 1001, 3158),
(89, 1001, 3111),
(90, 1001, 3117),
(91, 1001, 3009),
(92, 1006, 3077),
(93, 1006, 3112),
(94, 1006, 2051),
(95, 1006, 2053),
(96, 1006, 3801),
(97, 3006, 1301),
(98, 3006, 1303),
(99, 3006, 1300),
(100, 3006, 1302),
(101, 3006, 1304),
(102, 3006, 1335),
(103, 3003, 3040),
(104, 3004, 3042),
(105, 3009, 1306),
(106, 3009, 1308),
(107, 3009, 1305),
(108, 3009, 1307),
(109, 3009, 1309),
(110, 3009, 1336),
(111, 3007, 3048),
(112, 3008, 3043),
(113, 3342, 3363),
(114, 3341, 3364),
(115, 3340, 3361),
(116, 3340, 3362),
(117, 3010, 3027),
(118, 3010, 3029),
(119, 3010, 3180),
(120, 3010, 3800),
(121, 3155, 3156),
(122, 3200, 3196),
(123, 1011, 3083),
(124, 1011, 3143),
(125, 1011, 3116),
(126, 1011, 3022),
(127, 1011, 3084),
(128, 1011, 3053),
(129, 1011, 3742),
(130, 1011, 3748),
(131, 3136, 3151),
(132, 3136, 3829),
(133, 3145, 3146),
(134, 3145, 3152),
(135, 3144, 3146),
(136, 3144, 3153),
(137, 3211, 3065),
(138, 3211, 3102),
(139, 3140, 3139),
(140, 3140, 3137),
(141, 3028, 3174),
(142, 3028, 3222),
(143, 3028, 3744),
(144, 3028, 3745),
(145, 3134, 3142),
(146, 3134, 3707),
(147, 3134, 3714),
(148, 3134, 3719),
(149, 3134, 3723),
(150, 3113, 3023),
(151, 3113, 3290),
(152, 3113, 3100),
(153, 3113, 3285),
(154, 3113, 3504),
(155, 3114, 3069),
(156, 3114, 3165),
(157, 3114, 3222),
(158, 3114, 3433),
(159, 3114, 3504),
(160, 3114, 3840),
(161, 3117, 1326),
(162, 3117, 1328),
(163, 3117, 1325),
(164, 3117, 1327),
(165, 3117, 1329),
(166, 3117, 1340),
(167, 3024, 3110),
(168, 3024, 3025),
(169, 3024, 3050),
(170, 3024, 3187),
(171, 3020, 1311),
(172, 3020, 1313),
(173, 3020, 1310),
(174, 3020, 1312),
(175, 3020, 1314),
(176, 3020, 1337),
(177, 3122, 3104),
(178, 3122, 3185),
(179, 2053, 3056),
(180, 2053, 3512),
(181, 3047, 1316),
(182, 3047, 1318),
(183, 3047, 1315),
(184, 3047, 1317),
(185, 3047, 1319),
(186, 3047, 1338),
(187, 1051, 3086),
(188, 1051, 3093),
(189, 1051, 3122),
(190, 3197, 3198),
(191, 3433, 3430),
(192, 3433, 3431),
(193, 3433, 3434),
(194, 3196, 3197),
(195, 1052, 3108),
(196, 1052, 3191),
(197, 1052, 3057),
(198, 1052, 3136),
(199, 1052, 3135),
(200, 1052, 3145),
(201, 1052, 3113),
(202, 1052, 3090),
(203, 1052, 3116),
(204, 1052, 3041),
(205, 1052, 3050),
(206, 1052, 3089),
(207, 1052, 3165),
(208, 1052, 3174),
(209, 1052, 3430),
(210, 1052, 3431),
(211, 1052, 3434),
(212, 1052, 3744),
(213, 1053, 3144),
(214, 1053, 3181),
(215, 1053, 3072),
(216, 1053, 3074),
(217, 1053, 3508),
(218, 1053, 3150),
(219, 1053, 3924),
(220, 3191, 3090),
(221, 3191, 3157),
(222, 3191, 3170),
(223, 3057, 3078),
(224, 3057, 3100),
(225, 3057, 3025),
(226, 3057, 3708),
(227, 3057, 3716),
(228, 3057, 3720),
(229, 3057, 3724),
(230, 2049, 2045),
(231, 3301, 3096),
(232, 3303, 3098),
(233, 3302, 3097),
(234, 1037, 3035),
(235, 1037, 3124),
(236, 1037, 3031),
(237, 1037, 3156),
(238, 1037, 3077),
(239, 1037, 3104),
(240, 1037, 3184),
(241, 1037, 3004),
(242, 1037, 3008),
(243, 1037, 3022),
(244, 1037, 3150),
(245, 1037, 3172),
(246, 1037, 3181),
(247, 1037, 3652),
(248, 1036, 1053),
(249, 1036, 3044),
(250, 1036, 3134),
(251, 1036, 3155),
(252, 1036, 3077),
(253, 1036, 3035),
(254, 1036, 3154),
(255, 1036, 3141),
(256, 1036, 3144),
(257, 1036, 3122),
(258, 1036, 3053),
(259, 1036, 3159),
(260, 1036, 3924),
(261, 1039, 3706),
(262, 1039, 3711),
(263, 1039, 3715),
(264, 1039, 3713),
(265, 1038, 3031),
(266, 1038, 3072),
(267, 1038, 3139),
(268, 1038, 3508),
(269, 1042, 3006),
(270, 1042, 3106),
(271, 1042, 3086),
(272, 1042, 3101),
(273, 1042, 1043),
(274, 1042, 3085),
(275, 1042, 3046),
(276, 1042, 3154),
(277, 1042, 3091),
(278, 1042, 3159),
(279, 1042, 3652),
(280, 1043, 3091),
(281, 1043, 3153),
(282, 1043, 3085),
(283, 1043, 3710),
(284, 1043, 3718),
(285, 1043, 3726),
(286, 1043, 3722),
(287, 3044, 3078),
(288, 3044, 3071),
(289, 3044, 3184),
(290, 1029, 3047),
(291, 1029, 1031),
(292, 1029, 3191),
(293, 1029, 3024),
(294, 1029, 3082),
(295, 1029, 3075),
(296, 1029, 2053),
(297, 1028, 1011),
(298, 1028, 2049),
(299, 1028, 2045),
(300, 1028, 2051),
(301, 1028, 3010),
(302, 1028, 3022),
(303, 1028, 3044),
(304, 1028, 3067),
(305, 1028, 3801),
(306, 1028, 3211),
(307, 1028, 3751),
(308, 1028, 3136),
(309, 1028, 3829),
(310, 1027, 3057),
(311, 1027, 3070),
(312, 1027, 3073),
(313, 1027, 3010),
(314, 1027, 3024),
(315, 1026, 3001),
(316, 1026, 3135),
(317, 1026, 3027),
(318, 1026, 3029),
(319, 1026, 3089),
(320, 1026, 3124),
(321, 1026, 3151),
(322, 3070, 3003),
(323, 3070, 3004),
(324, 1033, 3111),
(325, 1033, 3211),
(326, 1033, 1057),
(327, 1033, 3028),
(328, 1033, 3140),
(329, 1033, 3155),
(330, 1033, 3105),
(331, 1033, 3091),
(332, 3751, 3068),
(333, 3751, 3709),
(334, 3751, 3717),
(335, 3751, 3721),
(336, 3751, 3725),
(337, 1031, 3075),
(338, 1031, 3068),
(339, 1031, 3026),
(340, 1031, 3742),
(341, 3077, 3074),
(342, 3077, 3748),
(343, 3073, 3007),
(344, 3073, 3008),
(345, 3158, 1331),
(346, 3158, 1333),
(347, 3158, 1330),
(348, 3158, 1332),
(349, 3158, 1334),
(350, 3158, 1341),
(351, 1018, 3046),
(352, 1018, 3031),
(353, 1018, 3104),
(354, 1018, 3185),
(355, 1018, 3150),
(356, 3067, 3187),
(357, 3067, 3190),
(358, 3067, 3401),
(359, 3067, 3065),
(360, 3067, 3056),
(361, 3067, 3071),
(362, 3067, 3745),
(363, 3067, 3911);
/*!40000 ALTER TABLE `ItemBuildsInto` ENABLE KEYS */;
-- Exportiere Struktur von Tabelle ni50265_1sql1.Items
CREATE TABLE IF NOT EXISTS `Items` (
`ID` int(10) unsigned NOT NULL,
`Gold` int(10) unsigned NOT NULL,
`Image` varchar(100) NOT NULL,
`Name` varchar(60) NOT NULL,
`Description` text NOT NULL,
PRIMARY KEY (`ID`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- Exportiere Daten aus Tabelle ni50265_1sql1.Items: ~282 rows (ungefähr)
/*!40000 ALTER TABLE `Items` DISABLE KEYS */;
INSERT INTO `Items` (`ID`, `Gold`, `Image`, `Name`, `Description`) VALUES
(1001, 325, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1001.png', 'Boots of Speed', '<groupLimit>Limited to 1.</groupLimit><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +25 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1004, 180, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1004.png', 'Faerie Charm', '<stats><mana>+25% Base Mana Regen </mana></stats>'),
(1006, 180, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1006.png', 'Rejuvenation Bead', '<stats>+50% Base Health Regen </stats>'),
(1011, 1000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1011.png', 'Giant\'s Belt', '<stats>+380 Health</stats>'),
(1018, 730, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1018.png', 'Cloak of Agility', '<stats>+15% Critical Strike Chance</stats>'),
(1026, 850, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1026.png', 'Blasting Wand', '<stats>+40 Ability Power</stats>'),
(1027, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1027.png', 'Sapphire Crystal', '<stats><mana>+200 Mana</mana></stats>'),
(1028, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1028.png', 'Ruby Crystal', '<stats>+150 Health</stats>'),
(1029, 300, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1029.png', 'Cloth Armor', '<stats>+15 Armor</stats>'),
(1031, 750, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1031.png', 'Chain Vest', '<stats>+40 Armor</stats>'),
(1033, 450, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1033.png', 'Null-Magic Mantle', '<stats>+25 Magic Resist</stats>'),
(1036, 360, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1036.png', 'Long Sword', '<stats>+10 Attack Damage</stats>'),
(1037, 875, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1037.png', 'Pickaxe', '<stats>+25 Attack Damage</stats>'),
(1038, 1550, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1038.png', 'B. F. Sword', '<stats>+50 Attack Damage</stats>'),
(1039, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1039.png', 'Hunter\'s Machete', '<stats>+15 Bonus Gold per Large Monster Kill</stats><br><passive>Passive - Jungler:</passive> Deal 30 magic damage on hit to monsters over 2 seconds and gain 7 Health and 4 Mana per second while under attack from neutral monsters.<br><br><groupLimit>Limited to 1 Jungle item</groupLimit>'),
(1042, 450, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1042.png', 'Dagger', '<stats>+15% Attack Speed</stats>'),
(1043, 1100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1043.png', 'Recurve Bow', '<stats>+30% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal an additional 10 physical damage on hit.'),
(1051, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1051.png', 'Brawler\'s Gloves', '<stats>+8% Critical Strike Chance</stats>'),
(1052, 435, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1052.png', 'Amplifying Tome', '<stats>+20 Ability Power</stats>'),
(1053, 800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1053.png', 'Vampiric Scepter', '<stats>+10 Attack Damage<br>+8% Life Steal</stats>'),
(1054, 440, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1054.png', 'Doran\'s Shield', '<stats>+80 Health</stats><br><br><unique>Passive: </unique> Restores 6 Health every 5 seconds.<br><unique>UNIQUE Passive:</unique> Blocks 8 damage from single target attacks and spells from champions.'),
(1055, 440, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1055.png', 'Doran\'s Blade', '<stats>+70 Health<br>+7 Attack Damage<br>+3% Life Steal</stats>'),
(1056, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1056.png', 'Doran\'s Ring', '<stats>+60 Health<br>+15 Ability Power</stats><br><br><passive>Passive:</passive> <mana>+3 Mana Regen per 5 seconds.<br><passive>Passive:</passive> Restores 4 Mana upon killing a unit.</mana>'),
(1057, 800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1057.png', 'Negatron Cloak', '<stats>+45 Magic Resist</stats>'),
(1058, 1250, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1058.png', 'Needlessly Large Rod', '<stats>+60 Ability Power</stats>'),
(1062, 950, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1062.png', 'Prospector\'s Blade', '<stats>+16 Attack Damage<br>+15% Attack Speed </stats><br><br><unique>UNIQUE Passive - Prospector:</unique> +150 Health<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1063, 950, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1063.png', 'Prospector\'s Ring', '<stats>+35 Ability Power</stats><br><br><unique>Passive :</unique> <mana>+6 Mana Regen per 5 seconds</mana><br><unique>UNIQUE Passive - Prospector:</unique> +150 Health<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1074, 440, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1074.png', 'Doran\'s Shield (Showdown)', '<stats>+100 Health<br>+10 Health Regen per 5 seconds</stats><br><br><unique>UNIQUE Passive:</unique> Blocks 8 damage from champion basic attacks.<br><br><groupLimit>Limited to 2 Doran\'s items on Showdown</groupLimit><br><br>'),
(1075, 440, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1075.png', 'Doran\'s Blade (Showdown)', '<stats>+70 Health<br>+7 Attack Damage<br>+3% Life Steal</stats><br><br><groupLimit>Limited to 2 Doran\'s items on Showdown</groupLimit><br><br>'),
(1076, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1076.png', 'Doran\'s Ring (Showdown)', '<stats>+60 Health<br>+15 Ability Power<br>+3 Mana Regen per 5 seconds</stats><br><br><passive>Passive:</passive> Restores 4 Mana upon killing a unit.<br><br><groupLimit>Limited to 2 Doran\'s items on Showdown</groupLimit><br><br>'),
(1300, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1300.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1301, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1301.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1302, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1302.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1303, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1303.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1304, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1304.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1305, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1305.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1306, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1306.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1307, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1307.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1308, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1308.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1309, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1309.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1310, 1575, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1310.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1311, 1575, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1311.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1312, 1700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1312.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1313, 1575, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1313.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1314, 1575, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1314.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1315, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1315.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1316, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1316.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1317, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1317.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1318, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1318.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1319, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1319.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1320, 1675, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1320.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1321, 1675, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1321.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1322, 1800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1322.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1323, 1675, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1323.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1324, 1675, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1324.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1325, 1275, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1325.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1326, 1275, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1326.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1327, 1400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1327.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1328, 1275, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1328.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1329, 1275, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1329.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1330, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1330.png', 'Enchantment: Furor', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Furor bonus.<br><br><unique>UNIQUE Passive - Furor:</unique> Upon dealing damage with a single target spell or attack (on hit), grants +12% Movement Speed that decays over 2 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1331, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1331.png', 'Enchantment: Alacrity', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Alacrity bonus. <br><br><unique>UNIQUE Passive - Alacrity:</unique> +20 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1332, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1332.png', 'Enchantment: Captain', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Captain bonus.<br><br><unique>UNIQUE Passive - Captain:</unique> Grants +10% Movement Speed to nearby approaching allied champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1333, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1333.png', 'Enchantment: Distortion', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Distortion bonus.<br><br><unique>UNIQUE Passive - Distortion:</unique> Teleport, Flash, and Ghost summoner spell cooldowns are reduced by 20% and are granted additional mobility: <br><br><font color=\'#FFDD00\'>Ghost:</font> Grants 40% Movement Speed from 27%.<br><font color=\'#FFDD00\'>Flash:</font> 20% Movement Speed bonus for 1 second after cast.<br><font color=\'#FFDD00\'>Teleport:</font> 30% Movement Speed bonus for 3 seconds after use.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1334, 1475, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1334.png', 'Enchantment: Homeguard', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Homeguard bonus.<br><br><unique>UNIQUE Passive - Homeguard:</unique> Visiting the shop vastly increases Health and Mana Regeneration and grants 200% bonus Movement Speed that decays over 8 seconds. Bonus Movement Speed and regeneration are disabled for 6 seconds upon dealing or taking damage.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(1335, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1335.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1336, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1336.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1337, 1700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1337.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1338, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1338.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1339, 1800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1339.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1340, 1400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1340.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(1341, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/1341.png', 'Enchantment: Teleport', '<groupLimit>Limited to 1 of each enchantment type.</groupLimit><br>Enchants boots to have Teleport Active.<br><br><unique>UNIQUE Active - Teleport:</unique> Teleport to target allied object (240s CD) (60s CD on purchase)'),
(2003, 35, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2003.png', 'Health Potion', '<groupLimit>Limited to 5 at one time.</groupLimit><br><br><consumable>Click to Consume:</consumable> Restores 150 Health over 15 seconds.'),
(2004, 35, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2004.png', 'Mana Potion', '<groupLimit>Limited to 5 at one time.</groupLimit><br><br><consumable>Click to Consume:</consumable> <mana>Restores 100 Mana over 15 seconds.</mana>'),
(2009, 0, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2009.png', 'Total Biscuit of Rejuvenation', '<consumable>Click to Consume:</consumable> Restores 80 Health and 50 Mana over 10 seconds.'),
(2010, 35, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2010.png', 'Total Biscuit of Rejuvenation', '<consumable>Click to Consume:</consumable> Restores 20 health and 10 mana immediately and then 150 Health over 15 seconds.'),
(2041, 345, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2041.png', 'Crystalline Flask', '<unique>UNIQUE Passive:</unique> Holds 3 charges and refills upon visiting the shop.<br><active>UNIQUE Active:</active> Consumes a charge to restore 120 Health and 60 Mana over 12 seconds.'),
(2043, 100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2043.png', 'Vision Ward', '<groupLimit>Can only carry 2 Vision Wards in inventory.</groupLimit><br><br><consumable>Click to Consume:</consumable> Places a visible ward that reveals the surrounding area and invisible units in the area until killed. Limit 1 <font color=\'#BBFFFF\'>Vision Ward</font> on the map per player.<br><br><i>(Revealing a ward in this manner grants a portion of the gold reward when that unit is killed.)</i>'),
(2044, 75, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2044.png', 'Stealth Ward', '<groupLimit>Can only carry 3 Stealth Wards in inventory.</groupLimit><br><br><consumable>Click to Consume:</consumable> Places an invisible ward that reveals the surrounding area for 3 minutes. Limit 3 <font color=\'#BBFFFF\'>Stealth Wards</font> on the map per player.'),
(2045, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2045.png', 'Ruby Sightstone', '<stats>+400 Health</stats><br><br><unique>UNIQUE Passive - Ward Refresh:</unique> Holds 5 charges and refills upon visiting the shop.<br><active>UNIQUE Active - Ghost Ward:</active> Consumes a charge to place a <font color=\'#BBFFFF\'>Stealth Ward</font> that reveals the surrounding area for 3 minutes. A player may only have 3 <font color=\'#BBFFFF\'>Stealth Wards</font> on the map at one time.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(2047, 250, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2047.png', 'Oracle\'s Extract', '<consumable>Click to Consume:</consumable> Grants detection of nearby invisible units for up to 5 minutes or until death.'),
(2049, 800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2049.png', 'Sightstone', '<stats>+150 Health</stats><br><br><unique>UNIQUE Passive - Ward Refresh:</unique> Holds 4 charges and refills upon visiting the shop.<br><active>UNIQUE Active - Ghost Ward:</active> Consumes a charge to place a <font color=\'#BBFFFF\'>Stealth Ward</font> that reveals the surrounding area for 3 minutes. A player may only have 3 <font color=\'#BBFFFF\'>Stealth Wards</font> on the map at one time.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(2050, 0, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2050.png', 'Explorer\'s Ward', '<consumable>Click to Consume:</consumable> Places an invisible ward that reveals the surrounding area for 60 seconds.'),
(2051, 1015, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2051.png', 'Guardian\'s Horn', '<stats>+200 Health<br>+125% Base Health Regeneration </stats><br><br><unique>UNIQUE Passive:</unique> Enemy spellcasts reduce the cooldown of Battle Cry by 1 second.<br><active>UNIQUE Active - Battle Cry:</active> Gain 30% Movement Speed, 20 Armor, and 20 Magic Resist for 3 seconds. 25 second cooldown.'),
(2052, 0, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2052.png', 'Poro-Snax', 'This savory blend of free-range, grass-fed Avarosan game hens and organic, non-ZMO Freljordian herbs contains the essential nutrients necessary to keep your Poro purring with pleasure.<br><br><i>All proceeds will be donated towards fighting Noxian animal cruelty.</i>'),
(2053, 1100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2053.png', 'Raptor Cloak', '<stats>+40 Armor<br>+150% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +20% Movement Speed over 2 seconds while near turrets and fallen turrets.'),
(2054, 0, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2054.png', 'Diet Poro-Snax', 'All the flavor of regular Poro-Snax, without the calories! Keeps your Poro happy AND healthy.<br><br><consumable>Click to Consume:</consumable> Gives your Poros a delicious healthy treat.'),
(2137, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2137.png', 'Elixir of Ruin', '<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +250 Health, 15% Bonus Damage to Towers and <font color=\'#FF8811\'><u>Siege Commander</u></font> for 3 minutes.<br><br><font color=\'#FF8811\'><u>Siege Commander:</u></font> Nearby minions gain 15% Bonus Damage to Towers and gain Movement Speed based on champion\'s Movement Speed.<br><br><i>(Only one Flask effect may be active at a time.)</i>'),
(2138, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2138.png', 'Elixir of Iron', '<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants 25% increased Size, Slow Resistance, Tenacity and <font color=\'#FF8811\'><u>Path of Iron</u></font> for 3 minutes.<br><br><font color=\'#FF8811\'><u>Path of Iron:</u></font> Moving leaves a path behind that boosts allied champion\'s Movement Speed by 15%.<br><br><i>(Only one Flask effect may be active at a time.)</i>'),
(2139, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2139.png', 'Elixir of Sorcery', '<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +40 Ability Power, 15 bonus Mana Regen per 5 seconds and <font color=\'#FF8811\'><u>Sorcery</u></font> for 3 minutes. <br><br><font color=\'#FF8811\'><u>Sorcery:</u></font> Damaging a champion or turret deals 25 bonus True Damage. This effect has a 5 second cooldown versus champions but no cooldown versus turrets.<br><br><i>(Only one Flask effect may be active at a time.)</i><br>'),
(2140, 400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/2140.png', 'Elixir of Wrath', '<stats><levelLimit>Level 9 required to purchase.</levelLimit></stats><br><br><consumable>Click to Consume:</consumable> Grants +25 Attack Damage and <font color=\'#FF8811\'><u>Bloodlust</u></font> for 3 minutes.<br><br><font color=\'#FF8811\'><u>Bloodlust:</u></font> Dealing physical damage to champions heals for 10% of the damage dealt. Scoring a Kill or Assist extends the duration of this Flask by 30 seconds.<br><br><i>(Only one Flask effect may be active at a time.)</i>'),
(3001, 2430, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3001.png', 'Abyssal Scepter', '<stats>+70 Ability Power<br>+50 Magic Resist</stats><br><br><aura>UNIQUE Aura:</aura> Reduces the Magic Resist of nearby enemies by 20.'),
(3003, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3003.png', 'Archangel\'s Staff', '<stats>+80 Ability Power<br><mana>+250 Mana<br>+50% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +8 maximum Mana (max +750 Mana) for each spell cast and Mana expenditure (occurs up to 2 times every 8 seconds). Transforms into Seraph\'s Embrace at +750 Mana.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3004, 2200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3004.png', 'Manamune', '<stats>+25 Attack Damage<br><mana>+250 Mana<br>+25% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +4 maximum Mana (max +750 Mana) for each basic attack, spell cast, and Mana expenditure (occurs up to 2 times every 8 seconds).<br><br>Transforms into Muramana at +750 Mana.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3006, 1000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3006.png', 'Berserker\'s Greaves', '<stats> +25% Attack Speed</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3007, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3007.png', 'Archangel\'s Staff (Crystal Scar)', '<stats>+80 Ability Power<br><mana>+250 Mana<br>+50% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +10 maximum Mana (max +750 Mana) for each spell cast and Mana expenditure (occurs up to 2 times every 6 seconds). Transforms into Seraph\'s Embrace at +750 Mana.<br></mana><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3008, 2200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3008.png', 'Manamune (Crystal Scar)', '<stats>+25 Attack Damage<br><mana>+250 Mana<br>+25% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana.<br><unique>UNIQUE Passive - Mana Charge:</unique> Grants +8 maximum Mana (max +750 Mana) for each basic attack, spell cast, and Mana expenditure (occurs up to 2 times every 6 seconds).<br><br>Transforms into Muramana at +750 Mana.<br></mana><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3009, 1000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3009.png', 'Boots of Swiftness', '<unique>UNIQUE Passive - Enhanced Movement:</unique> +60 Movement Speed<br><unique>UNIQUE Passive - Slow Resist:</unique> Movement slowing effects are reduced by 25%.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3010, 1200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3010.png', 'Catalyst the Protector', '<stats>+200 Health<br><mana>+300 Mana</mana></stats><br><br><unique>UNIQUE Passive - Valor\'s Reward:</unique> Upon leveling up, restores 150 Health and 200 Mana over 8 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3020, 1100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3020.png', 'Sorcerer\'s Shoes', '<stats>+15 Magic Penetration</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><br><i>(Magic Penetration: Magic damage is increased by ignoring an amount of the target\'s Magic Resist equal to Magic Penetration.)</i><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3022, 3300, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3022.png', 'Frozen Mallet', '<stats>+700 Health<br>+30 Attack Damage</stats><br><br><unique>UNIQUE Passive - Icy:</unique> Basic attacks slow the target\'s Movement Speed for 1.5 seconds on hit (40% slow for melee attacks, 30% slow for ranged attacks).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3023, 2400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3023.png', 'Twin Shadows', '<stats>+80 Ability Power<br>+10% Cooldown Reduction<br>+6% Movement Speed</stats><br><br><active>UNIQUE Active - Hunt:</active> Summons up to 2 invulnerable ghosts that seek out the 2 nearest enemy champions for 6 seconds. If a ghost reaches its target, it reveals the target and reduces their Movement Speed by 40% for 2.5 seconds.<br><br>If a ghost cannot find a target, it tries to return to the caster. Ghosts that successfully return in this way reduce the item\'s cooldown by 40 seconds (120 second cooldown).'),
(3024, 900, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3024.png', 'Glacial Shroud', '<stats>+20 Armor<br><mana>+250 Mana</mana></stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction'),
(3025, 2850, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3025.png', 'Iceborn Gauntlet', '<stats>+60 Armor<br>+30 Ability Power<br>+10% Cooldown Reduction<br><mana>+500 Mana</mana></stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack (on hit) deals bonus physical damage equal to 125% of base Attack Damage to enemies near the target, and creates a field around the target for 2 seconds that slows enemy Movement Speed by 30% (1.5 second cooldown, half-sized field if ranged).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3026, 2800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3026.png', 'Guardian Angel', '<stats>+50 Armor<br>+50 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique> Upon taking lethal damage, restores 30% of maximum Health and Mana after 4 seconds of stasis (300 second cooldown).'),
(3027, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3027.png', 'Rod of Ages', '<stats>+300 Health<br><mana>+400 Mana</mana><br>+60 Ability Power</stats><br><br><passive>Passive:</passive> Grants +20 Health, +40 Mana, and +4 Ability Power per stack (max +200 Health, +400 Mana, and +40 Ability Power). Grants 1 stack per minute (max 10 stacks).<br><unique>UNIQUE Passive - Valor\'s Reward:</unique> Upon leveling up, restores 150 Health and 200 Mana over 8 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3028, 900, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3028.png', 'Chalice of Harmony', '<stats>+25 Magic Resist<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Mana Font:</unique> Restores 2% of missing Mana every 5 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3029, 2790, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3029.png', 'Rod of Ages (Crystal Scar)', '<stats>+450 Health<br><mana>+450 Mana</mana><br>+60 Ability Power</stats><br><br><passive>Passive:</passive> Grants +20 Health, +20 Mana, and +2 Ability Power per stack (max +200 Health, +200 Mana, and +20 Ability Power). Grants 1 stack per 40 seconds (max 10 stacks).<br><unique>UNIQUE Passive - Valor\'s Reward:</unique> Upon leveling up, restores 150 Health and 200 Mana over 8 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3031, 3800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3031.png', 'Infinity Edge', '<stats>+80 Attack Damage<br>+20% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical strikes deal 250% damage instead of 200%.'),
(3035, 2300, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3035.png', 'Last Whisper', '<stats>+40 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> Physical damage ignores 35% of the target\'s Armor (applies before Armor Penetration).'),
(3040, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3040.png', 'Seraph\'s Embrace', '<stats>+80 Ability Power<br><mana>+1000 Mana<br>+50% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.</mana><br><active>UNIQUE Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed (120 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3041, 1400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3041.png', 'Mejai\'s Soulstealer', '<stats>+20 Ability Power </stats><br><br><unique>UNIQUE Passive:</unique> Grants +8 Ability Power per stack and 5 stacks upon first purchase. Grants 2 stacks for a kill or 1 stack for an assist (max 20 stacks). Half of the stacks are lost upon death. At 20 stacks, grants +15% Cooldown Reduction.'),
(3042, 2200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3042.png', 'Muramana', '<stats>+25 Attack Damage<br><mana>+1000 Mana<br>+25% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana.<br><unique>UNIQUE Toggle:</unique> Single target spells and attacks (on hit) consume 3% of current Mana to deal bonus physical damage equal to twice the amount of Mana consumed.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3043, 2200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3043.png', 'Muramana', '<stats>+25 Attack Damage<br><mana>+1000 Mana<br>+25% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Awe:</unique> Grants bonus Attack Damage equal to 2% of maximum Mana.<br><unique>UNIQUE Toggle:</unique> Single target spells and attacks (on hit) consume 3% of current Mana to deal bonus physical damage equal to twice the amount of Mana consumed.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3044, 1325, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3044.png', 'Phage', '<stats>+200 Health<br>+20 Attack Damage</stats><br><br><unique>UNIQUE Passive - Rage:</unique> Basic attacks grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement Speed instead. This Movement Speed bonus is halved for ranged champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3046, 2800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3046.png', 'Phantom Dancer', '<stats>+50% Attack Speed<br>+35% Critical Strike Chance<br>+5% Movement Speed</stats><br><br><unique>UNIQUE Passive:</unique> Champion can move through units.'),
(3047, 1000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3047.png', 'Ninja Tabi', '<stats>+25 Armor</stats><br><br><unique>UNIQUE Passive:</unique> Blocks 10% of the damage from basic attacks.<br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3048, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3048.png', 'Seraph\'s Embrace', '<stats>+80 Ability Power<br><mana>+1000 Mana<br>+50% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Insight:</unique> Grants Ability Power equal to 3% of maximum Mana.</mana><br><active>UNIQUE Active - Mana Shield:</active> Consumes 20% of current Mana to grant a shield for 3 seconds that absorbs damage equal to 150 plus the amount of Mana consumed (120 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3050, 2250, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3050.png', 'Zeke\'s Harbinger', '<stats><mana>+250 Mana</mana><br>+35 Armor<br>+50 Ability Power<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Conduit:</active> Bind to target ally (60 second cooldown).<br><unique>UNIQUE Passive:</unique> When within 1000 units of each other, you and your ally generate Charges. Attacking or casting spells generates extra Charges. At 100 Charges, causing damage consumes them, increasing your and your ally\'s Ability Power by 20% and Critical Strike Chance by 50% for 8 seconds. '),
(3053, 2550, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3053.png', 'Sterak\'s Gage', '<stats>+500 Health<br>+25% Base Attack Damage </stats><br><br><unique>UNIQUE Passive:</unique> Upon taking at least 400 to 1800 damage (based on level) within 5 seconds, gain <font color=\'#FF8811\'><u>Sterak\'s Fury</u></font> for 8 seconds (45 second cooldown).<br><br><font color=\'#FF8811\'><u>Sterak\'s Fury</u>:</font> Grow in size and strength, gaining increased Size, +25% additional Base Attack Damage, and a rapidly decaying Shield for 30% of your maximum Health.'),
(3056, 2600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3056.png', 'Ohmwrecker', '<stats>+300 Health<br>+50 Armor<br>+150% Base Health Regen <br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active:</active> Prevents nearby enemy turrets from attacking for 3 seconds (120 second cooldown). This effect cannot be used against the same turret more than once every 8 seconds.<br><br><unique>UNIQUE Passive - Point Runner:</unique> Builds up to +20% Movement Speed over 2 seconds while near turrets (including fallen turrets).'),
(3057, 1200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3057.png', 'Sheen', '<stats>+25 Ability Power<br><mana>+200 Mana</mana></stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals bonus physical damage equal to 100% base Attack Damage on hit (1.5 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3060, 2750, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3060.png', 'Banner of Command', '<stats>+200 Health<br>+100% Base Health Regen <br>+60 Ability Power<br>+20 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><aura>UNIQUE Aura - Legion:</aura> Grants nearby allies +15 Magic Resist.<br><active>UNIQUE Active - Promote:</active> Greatly increases the power of a lane minion and grants it immunity to magic damage (120 second cooldown).<br><br><i>(Unique Auras with the same name do not stack.)</i>'),
(3065, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3065.png', 'Spirit Visage', '<stats>+400 Health<br>+60 Magic Resist<br>+150% Base Health Regen <br>+10% Cooldown Reduction</stats><br><br><unique>UNIQUE Passive:</unique> Increases all healing received by 20%.'),
(3067, 850, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3067.png', 'Kindlegem', '<stats>+200 Health </stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction'),
(3068, 2600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3068.png', 'Sunfire Cape', '<stats>+450 Health<br>+45 Armor </stats><br><br><unique>UNIQUE Passive - Immolate:</unique> Deals 25 (+1 per champion level) magic damage per second to nearby enemies.'),
(3069, 2100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3069.png', 'Talisman of Ascension', '<stats>+100% Base Health Regen <br><mana>+100% Base Mana Regen <br></mana>+20 Movement Speed<br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique> Being near a minion death without dealing the killing blow grants 4 Gold and 10 Health.<br><active>UNIQUE Active:</active> Grants nearby allies +40% Movement Speed for 3 seconds (40 second cooldown).<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit><br><br><i><font color=\'#447777\'>\'\'Praise the sun.\'\' - Historian Shurelya, 22 September, 25 CLE</font></i><br><br>'),
(3070, 720, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3070.png', 'Tear of the Goddess', '<stats><mana>+250 Mana<br>+25% Base Mana Regen </mana></stats><br><br><mana><unique>UNIQUE Passive - Mana Charge:</unique> Grants 4 maximum Mana on spell cast or Mana expenditure (up to 2 times per 8 seconds). Grants 1 maximum Mana every 8 seconds.<br><br>Caps at +750 Mana.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3071, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3071.png', 'The Black Cleaver', '<stats>+400 Health<br>+40 Attack Damage<br>+20% Cooldown Reduction</stats><br><br><passive>UNIQUE Passive:</passive> Dealing physical damage to an enemy champion Cleaves them, reducing their Armor by 5% for 6 seconds (stacks up to 6 times, up to 30%).<br><unique>UNIQUE Passive - Rage:</unique> Dealing physical damage grants 20 movement speed for 2 seconds. Assists on Cleaved enemy champions or kills on any unit grant 60 movement speed for 2 seconds instead. This Movement Speed is halved for ranged champions.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3072, 3500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3072.png', 'The Bloodthirster', '<stats>+80 Attack Damage</stats><br><br><passive>UNIQUE Passive:</passive> +20% Life Steal<br><passive>UNIQUE Passive:</passive> Your basic attacks can now overheal you. Excess life is stored as a shield that can block 50-350 damage, based on champion level.<br><br>This shield decays slowly if you haven\'t dealt or taken damage in the last 25 seconds.'),
(3073, 720, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3073.png', 'Tear of the Goddess (Crystal Scar)', '<stats><mana>+250 Mana<br>+25% Base Mana Regen </stats><br><br><mana><unique>UNIQUE Passive - Mana Charge:</unique> Grants 5 maximum Mana on spell cast or Mana expenditure (up to 2 times per 6 seconds). Grants 1 maximum Mana every 6 seconds.<br><br>Caps at +750 Mana.</mana><br><br><i>(Unique Passives with the same name don\'t stack.)</i></mana>'),
(3074, 3300, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3074.png', 'Ravenous Hydra (Melee Only)', '<stats>+75 Attack Damage<br>+100% Base Health Regen <br>+12% Life Steal</stats><br><br><passive>Passive:</passive> Life Steal applies to damage dealt by this item.<br><unique>UNIQUE Passive - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage as bonus physical damage to enemies near the target on hit (enemies closest to the target take the most damage).<br><active>UNIQUE Active - Crescent:</active> Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy units (closest enemies take the most damage) (10 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3075, 2300, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3075.png', 'Thornmail', '<stats>+100 Armor </stats><br><br><unique>UNIQUE Passive:</unique> Upon being hit by a basic attack, reflects magic damage back to the attacker equal to 25% of your bonus Armor plus 15% of the incoming damage.<br><br><i>(Bonus Armor is Armor from Items, Buffs, Runes and Masteries.)</i><br><i>(Reflect damage is calculated based on damage taken before being reduced by Armor.)</i>'),
(3077, 1900, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3077.png', 'Tiamat (Melee Only)', '<stats>+40 Attack Damage<br>+100% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Cleave:</unique> Basic attacks deal 20% to 60% of total Attack Damage as bonus physical damage to enemies near the target on hit (enemies closest to the target take the most damage).<br><active>UNIQUE Active - Crescent:</active> Deals 60% to 100% of total Attack Damage as physical damage to nearby enemy units (enemies closest to the target take the most damage) (10 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3078, 3703, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3078.png', 'Trinity Force', '<stats>+30 Attack Damage<br>+30 Ability Power<br>+30% Attack Speed<br>+10% Critical Strike Chance<br>+8% Movement Speed<br>+250 Health<br><mana>+200 Mana</mana></stats><br><br><unique>UNIQUE Passive - Rage:</unique> Basic attacks grant 20 Movement Speed for 2 seconds. Kills grant 60 Movement Speed instead. This Movement Speed bonus is halved for ranged champions.<br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals bonus physical damage equal to 200% of base Attack Damage on hit (1.5 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3082, 1100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3082.png', 'Warden\'s Mail', '<stats>+45 Armor</stats><br><br><unique>UNIQUE Passive - Cold Steel:</unique> When hit by basic attacks, reduces the attacker\'s Attack Speed by 15% for 1 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3083, 2750, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3083.png', 'Warmog\'s Armor', '<stats>+800 Health<br>+200% Base Health Regen </stats><br><br><unique>UNIQUE Passive:</unique> Grants <font color=\'#FF8811\'><u>Warmog\'s Heart</u></font> if you have at least 3000 maximum Health.<br><br><font color=\'#FF8811\'><u>Warmog\'s Heart</u>:</font> Restores 15% of maximum Health every 5 seconds if damage hasn\'t been taken within 8 seconds. '),
(3084, 2500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3084.png', 'Overlord\'s Bloodmail', '<stats>+800 Health<br>+100% Base Health Regen </stats><br><br><unique>UNIQUE Passive:</unique> Upon champion kill or assist, restores 300 Health over 5 seconds.'),
(3085, 2500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3085.png', 'Runaan\'s Hurricane (Ranged Only)', '<stats>+70% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> When basic attacking, bolts are fired at up to 2 enemies near the target, each dealing (50% of Attack Damage) physical damage. These bolts apply on-hit effects.<br><unique>UNIQUE Passive:</unique> Basic attacks deal an additional 10 physical damage on hit.<br> '),
(3086, 1100, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3086.png', 'Zeal', '<stats>+20% Attack Speed<br>+10% Critical Strike Chance<br>+5% Movement Speed</stats>'),
(3087, 2500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3087.png', 'Statikk Shiv', '<stats>+40% Attack Speed<br>+20% Critical Strike Chance<br>+6% Movement Speed</stats><br><br><unique>UNIQUE Passive:</unique> Grants Static Charges upon moving or attacking. At 100 Charges, basic attacking expends all Charges to deal 100 bonus magic damage to up to 4 targets on hit (this damage can critically strike).'),
(3089, 3500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3089.png', 'Rabadon\'s Deathcap', '<stats>+120 Ability Power </stats><br><br><unique>UNIQUE Passive:</unique> Increases Ability Power by 35%.'),
(3090, 3500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3090.png', 'Wooglet\'s Witchcap', '<stats>+100 Ability Power<br>+45 Armor </stats><br><br><unique>UNIQUE Passive:</unique> Increases Ability Power by 25%<br><active>UNIQUE Active:</active> Champion becomes invulnerable and untargetable for 2.5 seconds, but is unable to move, attack, cast spells, or use items during this time (90 second cooldown).'),
(3091, 2600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3091.png', 'Wit\'s End', '<stats>+50% Attack Speed<br>+30 Magic Resist</stats><br><br><unique>UNIQUE Passive:</unique> Basic attacks deal 42 bonus magic damage on hit.<br><unique>UNIQUE Passive:</unique> Basic attacks steal 5 Magic Resist from the target on hit (stacks up to 5 times.)'),
(3092, 2200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3092.png', 'Frost Queen\'s Claim', '<stats>+50 Ability Power<br>+10% Cooldown Reduction<br>+2 Gold per 10 seconds<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Spells and basic attacks against champions or buildings deal 15 additional damage and grant 10 Gold. This can occur up to 3 times every 30 seconds.<br><active>UNIQUE Active:</active> Fires an ice lance that explodes dealing 50 (+5 per champion level) magic damage to nearby enemies and slowing their Movement Speed by 80%, decaying over 2 seconds (60 second cooldown).<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>'),
(3093, 800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3093.png', 'Avarice Blade', '<stats>+10% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive - Avarice:</unique> +3 Gold per 10 seconds<br><unique>UNIQUE Passive - Greed:</unique> Grants 2 Gold upon killing a unit.<br><br><groupLimit>May be bought with another Gold Income item</groupLimit>'),
(3096, 865, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3096.png', 'Nomad\'s Medallion', '<stats>+25% Base Health Regen <br><mana>+50% Base Mana Regen <br></mana>+10 Movement Speed<br>+2 Gold per 10 seconds</stats><br><br><unique>UNIQUE Passive - Favor:</unique> Being near a minion death without dealing the killing blow grants 4 Gold and 10 Health.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit><br><br><i><font color=\'#447777\'>\'\'The medallion shines with the glory of a thousand voices when exposed to the sun.\'\' - Historian Shurelya, 22 June, 24 CLE</font></i><br><br>'),
(3097, 865, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3097.png', 'Targon\'s Brace', '<stats>+175 Health<br>+50% Base Health Regen </stats><br><br><unique>UNIQUE Passive - Spoils of War:</unique> Melee basic attacks execute minions below 240 Health. Killing a minion heals the owner and the nearest allied champion for 50 Health and grants them kill Gold.<br><br>These effects require a nearby allied champion. Recharges every 30 seconds. Max 3 charges.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>'),
(3098, 865, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3098.png', 'Frostfang', '<stats>+10 Ability Power<br>+2 Gold per 10 seconds<br><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive - Tribute:</unique> Spells and basic attacks against champions or buildings deal 15 additional damage and grant 10 Gold. This can occur up to 3 times every 30 seconds. Killing a minion disables this passive for 12 seconds.<br><br><groupLimit>Limited to 1 Gold Income item</groupLimit>'),
(3100, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3100.png', 'Lich Bane', '<stats>+80 Ability Power<br>+5% Movement Speed<br><mana>+250 Mana</mana></stats><br><br><unique>UNIQUE Passive - Spellblade:</unique> After using an ability, the next basic attack deals 75% Base Attack Damage (+50% of Ability Power) bonus magic damage on hit (1.5 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3101, 1250, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3101.png', 'Stinger', '<stats>+40% Attack Speed</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction'),
(3102, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3102.png', 'Banshee\'s Veil', '<stats>+450 Health<br>+60 Magic Resist<br>+100% Base Health Regeneration </stats><br><br><unique>UNIQUE Passive:</unique> Grants a spell shield that blocks the next enemy ability. This shield refreshes after no damage is taken from enemy champions for 40 seconds.'),
(3104, 3800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3104.png', 'Lord Van Damm\'s Pillager', '<stats>+80 Attack Damage<br>+25% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical Strikes cause enemies to bleed for an additional 150% of bonus Attack Damage as magic damage over 3 seconds and reveal them for the duration.'),
(3105, 1600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3105.png', 'Aegis of the Legion', '<stats>+200 Health<br>+100% Base Health Regen <br>+20 Magic Resist</stats><br><br><aura>UNIQUE Aura - Legion:</aura> Grants nearby allies +15 Magic Resist.<br><br><i>(Unique Auras with the same name don\'t stack.)</i>'),
(3106, 750, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3106.png', 'Madred\'s Razors', '<stats>+15% Attack Speed</stats><br><br><unique>UNIQUE Passive - Maim:</unique> Basic attacks against monsters deal 50 bonus magic damage and heal 8 Health on hit.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3108, 820, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3108.png', 'Fiendish Codex', '<stats>+30 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction'),
(3110, 2600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3110.png', 'Frozen Heart', '<stats>+90 Armor<br>+20% Cooldown Reduction<br><mana>+400 Mana</mana></stats><br><br><aura>UNIQUE Aura:</aura> Reduces the Attack Speed of nearby enemies by 15%.'),
(3111, 1200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3111.png', 'Mercury\'s Treads', '<stats>+25 Magic Resist</stats><br><br><unique>UNIQUE Passive - Enhanced Movement:</unique> +45 Movement Speed<br><unique>UNIQUE Passive - Tenacity:</unique> Reduces the duration of stuns, slows, taunts, fears, silences, blinds, polymorphs, and immobilizes by 35%.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3112, 2150, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3112.png', 'Orb of Winter', '<stats>+70 Magic Resist<br>+100% Base Health Regeneration </stats><br><br><unique>UNIQUE Passive:</unique> Grants a shield that absorbs up to 30 (+10 per level) damage. The shield will refresh after 9 seconds without receiving damage.'),
(3113, 850, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3113.png', 'Aether Wisp', '<stats>+30 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +5% Movement Speed'),
(3114, 600, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3114.png', 'Forbidden Idol', '<stats><mana>+50% Base Mana Regen </mana></stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction'),
(3115, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3115.png', 'Nashor\'s Tooth', '<stats>+40% Attack Speed<br>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> +20% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> Basic attacks deal 15 (+15% of Ability Power) bonus magic damage on hit.<br>'),
(3116, 3000, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3116.png', 'Rylai\'s Crystal Scepter', '<stats>+400 Health<br>+100 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Damaging spells and abilities apply a Movement Speed reduction to enemies based on the spell type:<br><br><active>Single Target:</active> 40% reduction for 1.5 seconds. <br><active>Area of Effect:</active> 40% reduction for 1 seconds<br><active>Damage over Time or Multi-hit:</active> 20% reduction for 1 seconds.<br><active>Summoned Minions:</active> 20% reduction for 1 seconds.<br><br><i>(If a spell fits in more than one category, it uses the weakest slow value.)</i>'),
(3117, 800, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3117.png', 'Boots of Mobility', '<unique>UNIQUE Passive - Enhanced Movement:</unique> +25 Movement Speed. Increases to +105 Movement Speed when out of combat for 5 seconds.<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),
(3122, 1200, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3122.png', 'Wicked Hatchet', '<stats>+20 Attack Damage<br>+10% Critical Strike Chance</stats><br><br><unique>UNIQUE Passive:</unique> Critical Strikes cause your target to bleed for an additional 60% of your bonus Attack Damage as magic damage over 3 seconds.</i>'),
(3124, 2590, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3124.png', 'Guinsoo\'s Rageblade', '<stats>+30 Attack Damage<br>+40 Ability Power</stats><br><br><passive>Passive:</passive> Basic attacks (on attack) and spell casts grant +4% Attack Speed and +4 Ability Power for 8 seconds (stacks up to 8 times).<br><unique>UNIQUE Passive:</unique> Falling below 50% Health grants +20% Attack Speed, +10% Life Steal, and +10% Spell Vamp until out of combat (30 second cooldown).'),
(3134, 1337, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3134.png', 'The Brutalizer', '<stats>+25 Attack Damage</stats><br><br><unique>UNIQUE Passive:</unique> +10% Cooldown Reduction<br><unique>UNIQUE Passive:</unique> +10 Armor Penetration<br><br><i>(Armor Penetration: Physical damage is increased by ignoring an amount of the target\'s Armor equal to Armor Penetration.)</i>'),
(3135, 2500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3135.png', 'Void Staff', '<stats>+80 Ability Power</stats><br><br><unique>UNIQUE Passive:</unique> Magic damage ignores 35% of the target\'s Magic Resist (applies before Magic Penetration).'),
(3136, 1500, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3136.png', 'Haunting Guise', '<stats>+25 Ability Power<br>+200 Health</stats><br><br><unique>UNIQUE Passive - Eyes of Pain:</unique> +15 Magic Penetration<br><br><i>(Magic Penetration: Magic damage is increased by ignoring an amount of the target\'s Magic Resist equal to Magic Penetration.)</i><br><br><i>(Unique Passives with the same name do not stack.)</i>'),
(3137, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3137.png', 'Dervish Blade', '<stats>+50% Attack Speed<br>+45 Magic Resist<br>+10% Cooldown Reduction</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all debuffs, and if champion is melee, also grants +50% bonus Movement Speed for 1 second (90 second cooldown).'),
(3139, 3700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3139.png', 'Mercurial Scimitar', '<stats>+80 Attack Damage<br>+35 Magic Resist</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all debuffs and also grants +50% bonus Movement Speed for 1 second (90 second cooldown).'),
(3140, 1250, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3140.png', 'Quicksilver Sash', '<stats>+30 Magic Resist</stats><br><br><active>UNIQUE Active - Quicksilver:</active> Removes all debuffs (90 second cooldown).'),
(3141, 1400, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3141.png', 'Sword of the Occult', '<stats>+10 Attack Damage </stats><br><br><unique>UNIQUE Passive:</unique> Grants +5 Attack Damage per stack and 5 stacks upon first purchase. Grants 2 stacks for a kill or 1 stack for an assist (max 20 stacks). Half of the stacks are lost upon death. At 20 stacks, grants +20% bonus Attack Speed.'),
(3142, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3142.png', 'Youmuu\'s Ghostblade', '<stats>+30 Attack Damage<br>+15% Critical Strike Chance<br>+10% Cooldown Reduction</stats><br><br><passive>UNIQUE Passive:</passive> +20 Armor Penetration</passive><br><active>UNIQUE Active:</active> Grants +20% Movement Speed and +40% Attack Speed for 6 seconds (45 second cooldown).<br><br><i>(Armor Penetration: Physical damage is increased by ignoring an amount of the target\'s Armor equal to Armor Penetration.)</i>'),
(3143, 2700, 'http://lkimg.zamimg.com/images/v2/items/icons/size32x32/3143.png', 'Randuin\'s Omen', '<stats>+400 Health<br>+60 Armor<br>-10% Damage taken from Critical Strikes</stats><br><br><unique>UNIQUE Passive - Cold Steel:</unique> When hit by basic attacks, reduces the attacker\'s Attack Speed by 15%.<br><active>UNIQUE Active:</active> Slows the Movement Speed of nearby enemy units by 35% for 4 seconds (60 second cooldown).<br><br><i>(Unique Passives with the same name don\'t stack.)</i>'),