forked from Super-Tree/wegame_spider2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.py
1296 lines (1296 loc) · 29.8 KB
/
config.py
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
#!/user/bin/env python
# 每天都要有好心情
# http://www.wegame.com.cn/ wegame cookie, document.cookie P-skey
sig='MgpGe2gOggizIHynpQ2ZOSQd0-5C3lb2Yaw8OiFZbbI_'
# 用于登录提交的json数据
LOGIN_DATA = {
"login_info": {
"qq_info_type": 6,
"uin": "1815968892",
# 这个字段应该是起到检验的作用,每次都会变,不过用登录时拿到的就可以了
"sig": sig,
'qqinfo_ext': [{
'qq_info_type': 3,
'sig': sig,
}]
},
"config_params": {
"lang_type": 0
},
"mappid": "10001",
"mcode": "",
"clienttype": "1000005"
}
# 爬虫模拟请求头
HEADERS = {
'Referer': 'https://www.wegame.com.cn/helper/lol/record/profile.html',
'Accept': 'application/json',
'Connection': 'keep-alive',
'Origin': 'https://www.wegame.com.cn',
'trpc-caller': 'wegame.pallas.web.Lolbattle',
'Accept-Encoding': 'application/json, text/plain, gzip',
'User-Agent': 'Mozilla/5.0',
'Content-Type': 'application/json;charset=UTF-8',
'Content-Length': "102",
}
# 我账号的LOL ID
SELF_LOL_ID = 'eQ9L13b'
# LOL英雄列表
LOL_Champion = {
"1": {
"id": "1",
"ename": "Annie",
"title": "黑暗之女",
"cname": "安妮",
"pic": "annie_square_0.png"
},
"2": {
"id": "2",
"ename": "Olaf",
"title": "狂战士",
"cname": "奥拉夫",
"pic": "olaf_square_0.png"
},
"3": {
"id": "3",
"ename": "Galio",
"title": "正义巨像",
"cname": "加里奥",
"pic": "galio_square_0.png"
},
"4": {
"id": "4",
"ename": "TwistedFate",
"title": "卡牌大师",
"cname": "崔斯特",
"pic": "twistedfate_square_0.png"
},
"5": {
"id": "5",
"ename": "XinZhao",
"title": "德邦总管",
"cname": "赵信",
"pic": "xinzhao_square_0.png"
},
"6": {
"id": "6",
"ename": "Urgot",
"title": "无畏战车",
"cname": "厄加特",
"pic": "urgot_square_0.png"
},
"7": {
"id": "7",
"ename": "Leblanc",
"title": "诡术妖姬",
"cname": "乐芙兰",
"pic": "leblanc_square_0.png"
},
"8": {
"id": "8",
"ename": "Vladimir",
"title": "猩红收割者",
"cname": "弗拉基米尔",
"pic": "vladimir_square_0.png"
},
"9": {
"id": "9",
"ename": "FiddleSticks",
"title": "远古恐惧",
"cname": "费德提克",
"pic": "fiddlesticks_square_0.png"
},
"10": {
"id": "10",
"ename": "Kayle",
"title": "审判天使",
"cname": "凯尔",
"pic": "kayle_square_0.png"
},
"11": {
"id": "11",
"ename": "MasterYi",
"title": "无极剑圣",
"cname": "易",
"pic": "masteryi_square_0.png"
},
"12": {
"id": "12",
"ename": "Alistar",
"title": "牛头酋长",
"cname": "阿利斯塔",
"pic": "alistar_square_0.png"
},
"13": {
"id": "13",
"ename": "Ryze",
"title": "符文法师",
"cname": "瑞兹",
"pic": "ryze_square_0.png"
},
"14": {
"id": "14",
"ename": "Sion",
"title": "亡灵战神",
"cname": "赛恩",
"pic": "sion_square_0.png"
},
"15": {
"id": "15",
"ename": "Sivir",
"title": "战争女神",
"cname": "希维尔",
"pic": "sivir_square_0.png"
},
"16": {
"id": "16",
"ename": "Soraka",
"title": "众星之子",
"cname": "索拉卡",
"pic": "soraka_square_0.png"
},
"17": {
"id": "17",
"ename": "Teemo",
"title": "迅捷斥候",
"cname": "提莫",
"pic": "teemo_square_0.png"
},
"18": {
"id": "18",
"ename": "Tristana",
"title": "麦林炮手",
"cname": "崔丝塔娜",
"pic": "tristana_square_0.png"
},
"19": {
"id": "19",
"ename": "Warwick",
"title": "祖安怒兽",
"cname": "沃里克",
"pic": "warwick_square_0.png"
},
"20": {
"id": "20",
"ename": "Nunu",
"title": "雪原双子",
"cname": "努努",
"pic": "nunu_square_0.png"
},
"21": {
"id": "21",
"ename": "MissFortune",
"title": "赏金猎人",
"cname": "厄运小姐",
"pic": "missfortune_square_0.png"
},
"22": {
"id": "22",
"ename": "Ashe",
"title": "寒冰射手",
"cname": "艾希",
"pic": "ashe_square_0.png"
},
"23": {
"id": "23",
"ename": "Tryndamere",
"title": "蛮族之王",
"cname": "泰达米尔",
"pic": "tryndamere_square_0.png"
},
"24": {
"id": "24",
"ename": "Jax",
"title": "武器大师",
"cname": "贾克斯",
"pic": "jax_square_0.png"
},
"25": {
"id": "25",
"ename": "Morgana",
"title": "堕落天使",
"cname": "莫甘娜",
"pic": "morgana_square_0.png"
},
"26": {
"id": "26",
"ename": "Zilean",
"title": "时光守护者",
"cname": "基兰",
"pic": "zilean_square_0.png"
},
"27": {
"id": "27",
"ename": "Singed",
"title": "炼金术士",
"cname": "辛吉德",
"pic": "singed_square_0.png"
},
"28": {
"id": "28",
"ename": "Evelynn",
"title": "痛苦之拥",
"cname": "伊芙琳",
"pic": "evelynn_square_0.png"
},
"29": {
"id": "29",
"ename": "Twitch",
"title": "瘟疫之源",
"cname": "图奇",
"pic": "twitch_square_0.png"
},
"30": {
"id": "30",
"ename": "Karthus",
"title": "死亡颂唱者",
"cname": "卡尔萨斯",
"pic": "karthus_square_0.png"
},
"31": {
"id": "31",
"ename": "Chogath",
"title": "虚空恐惧",
"cname": "科'加斯",
"pic": "chogath_square_0.png"
},
"32": {
"id": "32",
"ename": "Amumu",
"title": "殇之木乃伊",
"cname": "阿木木",
"pic": "amumu_square_0.png"
},
"33": {
"id": "33",
"ename": "Rammus",
"title": "披甲龙龟",
"cname": "拉莫斯",
"pic": "rammus_square_0.png"
},
"34": {
"id": "34",
"ename": "Anivia",
"title": "冰晶凤凰",
"cname": "艾尼维亚",
"pic": "anivia_square_0.png"
},
"35": {
"id": "35",
"ename": "Shaco",
"title": "恶魔小丑",
"cname": "萨科",
"pic": "shaco_square_0.png"
},
"36": {
"id": "36",
"ename": "DrMundo",
"title": "祖安狂人",
"cname": "蒙多医生",
"pic": "drmundo_square_0.png"
},
"37": {
"id": "37",
"ename": "Sona",
"title": "琴瑟仙女",
"cname": "娑娜",
"pic": "sona_square_0.png"
},
"38": {
"id": "38",
"ename": "Kassadin",
"title": "虚空行者",
"cname": "卡萨丁",
"pic": "kassadin_square_0.png"
},
"39": {
"id": "39",
"ename": "Irelia",
"title": "刀锋舞者",
"cname": "艾瑞莉娅",
"pic": "irelia_square_0.png"
},
"40": {
"id": "40",
"ename": "Janna",
"title": "风暴之怒",
"cname": "迦娜",
"pic": "janna_square_0.png"
},
"41": {
"id": "41",
"ename": "Gangplank",
"title": "海洋之灾",
"cname": "普朗克",
"pic": "gangplank_square_0.png"
},
"42": {
"id": "42",
"ename": "Corki",
"title": "英勇投弹手",
"cname": "库奇",
"pic": "corki_square_0.png"
},
"43": {
"id": "43",
"ename": "Karma",
"title": "天启者",
"cname": "卡尔玛",
"pic": "karma_square_0.png"
},
"44": {
"id": "44",
"ename": "Taric",
"title": "瓦洛兰之盾",
"cname": "塔里克",
"pic": "taric_square_0.png"
},
"45": {
"id": "45",
"ename": "Veigar",
"title": "邪恶小法师",
"cname": "维迦",
"pic": "veigar_square_0.png"
},
"48": {
"id": "48",
"ename": "Trundle",
"title": "巨魔之王",
"cname": "特朗德尔",
"pic": "trundle_square_0.png"
},
"50": {
"id": "50",
"ename": "Swain",
"title": "诺克萨斯统领",
"cname": "斯维因",
"pic": "swain_square_0.png"
},
"51": {
"id": "51",
"ename": "Caitlyn",
"title": "皮城女警",
"cname": "凯特琳",
"pic": "caitlyn_square_0.png"
},
"53": {
"id": "53",
"ename": "Blitzcrank",
"title": "蒸汽机器人",
"cname": "布里茨",
"pic": "blitzcrank_square_0.png"
},
"54": {
"id": "54",
"ename": "Malphite",
"title": "熔岩巨兽",
"cname": "墨菲特",
"pic": "malphite_square_0.png"
},
"55": {
"id": "55",
"ename": "Katarina",
"title": "不祥之刃",
"cname": "卡特琳娜",
"pic": "katarina_square_0.png"
},
"56": {
"id": "56",
"ename": "Nocturne",
"title": "永恒梦魇",
"cname": "魔腾",
"pic": "nocturne_square_0.png"
},
"57": {
"id": "57",
"ename": "Maokai",
"title": "扭曲树精",
"cname": "茂凯",
"pic": "maokai_square_0.png"
},
"58": {
"id": "58",
"ename": "Renekton",
"title": "荒漠屠夫",
"cname": "雷克顿",
"pic": "renekton_square_0.png"
},
"59": {
"id": "59",
"ename": "JarvanIV",
"title": "德玛西亚皇子",
"cname": "嘉文四世",
"pic": "jarvaniv_square_0.png"
},
"60": {
"id": "60",
"ename": "Elise",
"title": "蜘蛛女皇",
"cname": "伊莉丝",
"pic": "elise_square_0.png"
},
"61": {
"id": "61",
"ename": "Orianna",
"title": "发条魔灵",
"cname": "奥莉安娜",
"pic": "orianna_square_0.png"
},
"62": {
"id": "62",
"ename": "MonkeyKing",
"title": "齐天大圣",
"cname": "孙悟空",
"pic": "monkeyking_square_0.png"
},
"63": {
"id": "63",
"ename": "Brand",
"title": "复仇焰魂",
"cname": "布兰德",
"pic": "brand_square_0.png"
},
"64": {
"id": "64",
"ename": "LeeSin",
"title": "盲僧",
"cname": "李青",
"pic": "leesin_square_0.png"
},
"67": {
"id": "67",
"ename": "Vayne",
"title": "暗夜猎手",
"cname": "薇恩",
"pic": "vayne_square_0.png"
},
"68": {
"id": "68",
"ename": "Rumble",
"title": "机械公敌",
"cname": "兰博",
"pic": "rumble_square_0.png"
},
"69": {
"id": "69",
"ename": "Cassiopeia",
"title": "魔蛇之拥",
"cname": "卡西奥佩娅",
"pic": "cassiopeia_square_0.png"
},
"72": {
"id": "72",
"ename": "Skarner",
"title": "水晶先锋",
"cname": "斯卡纳",
"pic": "skarner_square_0.png"
},
"74": {
"id": "74",
"ename": "Heimerdinger",
"title": "大发明家",
"cname": "黑默丁格",
"pic": "heimerdinger_square_0.png"
},
"75": {
"id": "75",
"ename": "Nasus",
"title": "沙漠死神",
"cname": "内瑟斯",
"pic": "nasus_square_0.png"
},
"76": {
"id": "76",
"ename": "Nidalee",
"title": "狂野女猎手",
"cname": "奈德丽",
"pic": "nidalee_square_0.png"
},
"77": {
"id": "77",
"ename": "Udyr",
"title": "兽灵行者",
"cname": "乌迪尔",
"pic": "udyr_square_0.png"
},
"78": {
"id": "78",
"ename": "Poppy",
"title": "圣锤之毅",
"cname": "波比",
"pic": "poppy_square_0.png"
},
"79": {
"id": "79",
"ename": "Gragas",
"title": "酒桶",
"cname": "古拉加斯",
"pic": "gragas_square_0.png"
},
"80": {
"id": "80",
"ename": "Pantheon",
"title": "不屈之枪",
"cname": "潘森",
"pic": "pantheon_square_0.png"
},
"81": {
"id": "81",
"ename": "Ezreal",
"title": "探险家",
"cname": "伊泽瑞尔",
"pic": "ezreal_square_0.png"
},
"82": {
"id": "82",
"ename": "Mordekaiser",
"title": "金属大师",
"cname": "莫德凯撒",
"pic": "mordekaiser_square_0.png"
},
"83": {
"id": "83",
"ename": "Yorick",
"title": "牧魂人",
"cname": "约里克",
"pic": "yorick_square_0.png"
},
"84": {
"id": "84",
"ename": "Akali",
"title": "离群之刺",
"cname": "阿卡丽",
"pic": "akali_square_0.png"
},
"85": {
"id": "85",
"ename": "Kennen",
"title": "狂暴之心",
"cname": "凯南",
"pic": "kennen_square_0.png"
},
"86": {
"id": "86",
"ename": "Garen",
"title": "德玛西亚之力",
"cname": "盖伦",
"pic": "garen_square_0.png"
},
"89": {
"id": "89",
"ename": "Leona",
"title": "曙光女神",
"cname": "蕾欧娜",
"pic": "leona_square_0.png"
},
"90": {
"id": "90",
"ename": "Malzahar",
"title": "虚空先知",
"cname": "玛尔扎哈",
"pic": "malzahar_square_0.png"
},
"91": {
"id": "91",
"ename": "Talon",
"title": "刀锋之影",
"cname": "泰隆",
"pic": "talon_square_0.png"
},
"92": {
"id": "92",
"ename": "Riven",
"title": "放逐之刃",
"cname": "锐雯",
"pic": "riven_square_0.png"
},
"96": {
"id": "96",
"ename": "KogMaw",
"title": "深渊巨口",
"cname": "克格莫",
"pic": "kogmaw_square_0.png"
},
"98": {
"id": "98",
"ename": "Shen",
"title": "暮光之眼",
"cname": "慎",
"pic": "shen_square_0.png"
},
"99": {
"id": "99",
"ename": "Lux",
"title": "光辉女郎",
"cname": "拉克丝",
"pic": "lux_square_0.png"
},
"101": {
"id": "101",
"ename": "Xerath",
"title": "远古巫灵",
"cname": "泽拉斯",
"pic": "xerath_square_0.png"
},
"102": {
"id": "102",
"ename": "Shyvana",
"title": "龙血武姬",
"cname": "希瓦娜",
"pic": "shyvana_square_0.png"
},
"103": {
"id": "103",
"ename": "Ahri",
"title": "九尾妖狐",
"cname": "阿狸",
"pic": "ahri_square_0.png"
},
"104": {
"id": "104",
"ename": "Graves",
"title": "法外狂徒",
"cname": "格雷福斯",
"pic": "graves_square_0.png"
},
"105": {
"id": "105",
"ename": "Fizz",
"title": "潮汐海灵",
"cname": "菲兹",
"pic": "fizz_square_0.png"
},
"106": {
"id": "106",
"ename": "Volibear",
"title": "不灭狂雷",
"cname": "沃利贝尔",
"pic": "volibear_square_0.png"
},
"107": {
"id": "107",
"ename": "Rengar",
"title": "傲之追猎者",
"cname": "雷恩加尔",
"pic": "rengar_square_0.png"
},
"110": {
"id": "110",
"ename": "Varus",
"title": "惩戒之箭",
"cname": "韦鲁斯",
"pic": "varus_square_0.png"
},
"111": {
"id": "111",
"ename": "Nautilus",
"title": "深海泰坦",
"cname": "诺提勒斯",
"pic": "nautilus_square_0.png"
},
"112": {
"id": "112",
"ename": "Viktor",
"title": "机械先驱",
"cname": "维克托",
"pic": "viktor_square_0.png"
},
"113": {
"id": "113",
"ename": "Sejuani",
"title": "北地之怒",
"cname": "瑟庄妮",
"pic": "sejuani_square_0.png"
},
"114": {
"id": "114",
"ename": "Fiora",
"title": "无双剑姬",
"cname": "菲奥娜",
"pic": "fiora_square_0.png"
},
"115": {
"id": "115",
"ename": "Ziggs",
"title": "爆破鬼才",
"cname": "吉格斯",
"pic": "ziggs_square_0.png"
},
"117": {
"id": "117",
"ename": "Lulu",
"title": "仙灵女巫",
"cname": "璐璐",
"pic": "lulu_square_0.png"
},
"119": {
"id": "119",
"ename": "Draven",
"title": "荣耀行刑官",
"cname": "德莱文",
"pic": "draven_square_0.png"
},
"120": {
"id": "120",
"ename": "Hecarim",
"title": "战争之影",
"cname": "赫卡里姆",
"pic": "hecarim_square_0.png"
},
"121": {
"id": "121",
"ename": "Khazix",
"title": "虚空掠夺者",
"cname": "卡兹克",
"pic": "khazix_square_0.png"
},
"122": {
"id": "122",
"ename": "Darius",
"title": "诺克萨斯之手",
"cname": "德莱厄斯",
"pic": "darius_square_0.png"
},
"126": {
"id": "126",
"ename": "Jayce",
"title": "未来守护者",
"cname": "杰斯",
"pic": "jayce_square_0.png"
},
"127": {
"id": "127",
"ename": "Lissandra",
"title": "冰霜女巫",
"cname": "丽桑卓",
"pic": "lissandra_square_0.png"
},
"131": {
"id": "131",
"ename": "Diana",
"title": "皎月女神",
"cname": "黛安娜",
"pic": "diana_square_0.png"
},
"133": {
"id": "133",
"ename": "Quinn",
"title": "德玛西亚之翼",
"cname": "奎因",
"pic": "quinn_square_0.png"
},
"134": {
"id": "134",
"ename": "Syndra",
"title": "暗黑元首",
"cname": "辛德拉",
"pic": "syndra_square_0.png"
},
"136": {
"id": "136",
"ename": "AurelionSol",
"title": "铸星龙王",
"cname": "奥瑞利安索尔",
"pic": "AurelionSol_Square_0.png"
},
"141": {
"id": "141",
"ename": "Kayn",
"title": "影流之镰",
"cname": "凯隐",
"pic": "Kayn_Square_0.png"
},
"142": {
"id": "142",
"ename": "Zoe",
"title": "暮光星灵",
"cname": "佐伊",
"pic": "Zoe_Square_0.png"
},
"143": {
"id": "143",
"ename": "Zyra",
"title": "荆棘之兴",
"cname": "婕拉",
"pic": "zyra_square_0.png"
},
"145": {
"id": "145",
"ename": "Kaisa",
"title": "虚空之女",
"cname": "卡莎",
"pic": "Kaisa_Square_0.png"
},
"150": {
"id": "150",
"ename": "Gnar",
"title": "纳尔",
"cname": "迷失之牙",
"pic": "gnar_square_0.png"
},
"154": {
"id": "154",
"ename": "Zac",
"title": "生化魔人",
"cname": "扎克",
"pic": "zac_square_0.png"
},
"157": {
"id": "157",
"ename": "Yasuo",
"title": "疾风剑豪",
"cname": "亚索",
"pic": "yasuo_square_0.png"
},
"161": {
"id": "161",
"ename": "Velkoz",
"title": "虚空之眼",
"cname": "维克兹",
"pic": "velkoz_square_0.png"
},
"163": {
"id": "163",
"ename": "Taliyah",
"title": "岩雀",
"cname": "塔莉垭",
"pic": "Taliyah_Square_0.png"
},
"164": {
"id": "164",
"ename": "Camille",
"title": "青钢影",
"cname": "卡蜜尔",
"pic": "Camille_Square_0.png"
},
"201": {
"id": "201",
"ename": "Braum",
"title": "弗雷尔卓德之心",
"cname": "布隆",
"pic": "braum_square_0.png"
},
"202": {
"id": "202",
"ename": "Jhin",
"title": "戏命师",
"cname": "烬",
"pic": "Jhin_Square_0.png"
},
"203": {
"id": "203",
"ename": "Kindred",
"title": "永猎双子",
"cname": "千珏",
"pic": "Kindred_Square_0.png"
},
"222": {
"id": "222",
"ename": "Jinx",
"title": "暴走萝莉",
"cname": "金克丝",
"pic": "jinx_square_0.png"
},
"223": {
"id": "223",
"ename": "TahmKench",
"title": "河流之王",
"cname": "塔姆",
"pic": "TahmKench_Square_0.png"
},
"235": {
"id": "235",
"ename": "Seanna",
"title": "涤魂圣枪",
"cname": "赛娜",
"pic": "Seanna_Square_0.png"
},
"236": {
"id": "236",
"ename": "Lucian",
"title": "圣枪游侠",
"cname": "卢锡安",
"pic": "lucian_square_0.png"
},
"238": {
"id": "238",
"ename": "Zed",
"title": "影流之主",
"cname": "劫",
"pic": "zed_square_0.png"
},
"240": {
"id": "240",
"ename": "Kled",
"title": "暴怒骑士",
"cname": "克烈",
"pic": "Kled_Splash_0.png"
},
"245": {
"id": "245",
"ename": "Ekko",
"title": "时间刺客",
"cname": "艾克",
"pic": "Ekko_Square_0.png"
},
"246": {
"id": "246",
"ename": "Qiyana",
"title": "元素女皇",
"cname": "奇亚娜",
"pic": "Qiyana_Square_0.png"
},
"254": {
"id": "254",
"ename": "Vi",
"title": "皮城执法官",
"cname": "蔚",
"pic": "vi_square_0.png"
},
"266": {
"id": "266",
"ename": "Aatrox",
"title": "暗裔剑魔",
"cname": "亚托克斯",
"pic": "aatrox_square_0.png"
},
"267": {
"id": "267",
"ename": "Nami",
"title": "唤潮鲛姬",
"cname": "娜美",
"pic": "nami_square_0.png"
},
"268": {
"id": "268",
"ename": "Azir",
"title": "沙漠皇帝",
"cname": "阿兹尔",
"pic": "azir_square_0.png"
},
"350": {
"id": "350",
"ename": "Yuumi",
"title": "悠米",
"cname": "悠米",
"pic": "Yuumi_Square_0.png"
},
"412": {
"id": "412",
"ename": "Thresh",
"title": "魂锁典狱长",
"cname": "锤石",
"pic": "thresh_square_0.png"
},
"420": {
"id": "420",
"ename": "Illaoi",
"title": "海兽祭司",
"cname": "俄洛伊",
"pic": "illaoi_Square_0.png"
},
"421": {
"id": "421",
"ename": "RekSai",
"title": "虚空遁地兽",
"cname": "雷克塞",
"pic": "RekSai.png"
},
"427": {
"id": "427",