-
Notifications
You must be signed in to change notification settings - Fork 0
/
all_heros_counts.json
9466 lines (9466 loc) · 458 KB
/
all_heros_counts.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"剃刀": [
{
"match_id": "2897407468",
"match_reslut": "胜利",
"match_KDA": "0.0 (0 / 0 / 0)",
"match_items": []
},
{
"match_id": "2897407468",
"match_reslut": "胜利",
"match_KDA": "0.0 (0 / 0 / 0)",
"match_items": []
}
],
"不朽尸王": [
{
"match_id": "3002129843",
"match_reslut": "失败",
"match_KDA": "2.6 (0 / 5 / 13)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/boots_lg.png"
]
},
{
"match_id": "3002129843",
"match_reslut": "失败",
"match_KDA": "2.6 (0 / 5 / 13)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/boots_lg.png"
]
},
{
"match_id": "2987257170",
"match_reslut": "胜利",
"match_KDA": "2.3 (2 / 10 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/medallion_of_courage_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2783922783",
"match_reslut": "胜利",
"match_KDA": "4.0 (2 / 5 / 18)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2766294726",
"match_reslut": "胜利",
"match_KDA": "6.0 (4 / 3 / 14)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/point_booster_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2731577856",
"match_reslut": "失败",
"match_KDA": "1.3 (1 / 9 / 11)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_dispenser_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2727145576",
"match_reslut": "胜利",
"match_KDA": "11.0 (3 / 1 / 8)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/poor_mans_shield_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2726439589",
"match_reslut": "胜利",
"match_KDA": "4.2 (1 / 5 / 20)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cloak_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/smoke_of_deceit_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2702986251",
"match_reslut": "胜利",
"match_KDA": "5.0 (5 / 4 / 15)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2667838287",
"match_reslut": "失败",
"match_KDA": "1.5 (0 / 2 / 3)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2551353251",
"match_reslut": "胜利",
"match_KDA": "13.0 (1 / 1 / 12)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/medallion_of_courage_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png"
]
},
{
"match_id": "2500881491",
"match_reslut": "胜利",
"match_KDA": "9.3 (6 / 3 / 22)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
}
],
"死亡先知": [
{
"match_id": "3025991936",
"match_reslut": "胜利",
"match_KDA": "8.0 (10 / 2 / 6)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/soul_booster_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/bottle_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "3025991936",
"match_reslut": "胜利",
"match_KDA": "8.0 (10 / 2 / 6)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/soul_booster_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/bottle_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "3008703186",
"match_reslut": "失败",
"match_KDA": "1.8 (6 / 9 / 10)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/sphere_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
}
],
"水晶室女": [
{
"match_id": "3173425070",
"match_reslut": "失败",
"match_KDA": "3.1 (4 / 8 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/black_king_bar_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png"
]
},
{
"match_id": "3173425070",
"match_reslut": "失败",
"match_KDA": "3.1 (4 / 8 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/black_king_bar_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png"
]
},
{
"match_id": "2503428644",
"match_reslut": "胜利",
"match_KDA": "4.2 (2 / 5 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png"
]
}
],
"半人马战行者": [
{
"match_id": "2907082731",
"match_reslut": "胜利",
"match_KDA": "7.7 (4 / 3 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pers_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2907082731",
"match_reslut": "胜利",
"match_KDA": "7.7 (4 / 3 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pers_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2889916189",
"match_reslut": "胜利",
"match_KDA": "12.0 (2 / 0 / 10)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
}
],
"发条技师": [
{
"match_id": "3209829498",
"match_reslut": "失败",
"match_KDA": "1.6 (3 / 7 / 8)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png"
]
},
{
"match_id": "3209829498",
"match_reslut": "失败",
"match_KDA": "1.6 (3 / 7 / 8)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png"
]
},
{
"match_id": "3205094163",
"match_reslut": "胜利",
"match_KDA": "6.7 (4 / 3 / 16)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hand_of_midas_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "3192339358",
"match_reslut": "胜利",
"match_KDA": "2.5 (6 / 13 / 27)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ultimate_scepter_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/lotus_orb_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/heart_lg.png"
]
}
],
"魅惑魔女": [
{
"match_id": "2261910568",
"match_reslut": "失败",
"match_KDA": "1.7 (3 / 3 / 2)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ogre_axe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ancient_janggo_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2261910568",
"match_reslut": "失败",
"match_KDA": "1.7 (3 / 3 / 2)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ogre_axe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ancient_janggo_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
}
],
"斧王": [
{
"match_id": "2982912678",
"match_reslut": "失败",
"match_KDA": "1.6 (6 / 8 / 7)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ogre_axe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png"
]
},
{
"match_id": "2982912678",
"match_reslut": "失败",
"match_KDA": "1.6 (6 / 8 / 7)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ogre_axe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png"
]
}
],
"孽主": [
{
"match_id": "2981478388",
"match_reslut": "胜利",
"match_KDA": "4.4 (2 / 5 / 20)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/staff_of_wizardry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/void_stone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2981478388",
"match_reslut": "胜利",
"match_KDA": "4.4 (2 / 5 / 20)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/staff_of_wizardry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/void_stone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
}
],
"上古巨神": [
{
"match_id": "2700603982",
"match_reslut": "胜利",
"match_KDA": "5.3 (3 / 4 / 18)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/soul_ring_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ring_of_health_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2700603982",
"match_reslut": "胜利",
"match_KDA": "5.3 (3 / 4 / 18)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/soul_ring_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ring_of_health_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/glimmer_cape_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2560158271",
"match_reslut": "失败",
"match_KDA": "1.0 (0 / 6 / 6)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/soul_ring_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_observer_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/stout_shield_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2551419679",
"match_reslut": "胜利",
"match_KDA": "16.0 (1 / 1 / 15)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/soul_ring_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2489929269",
"match_reslut": "胜利",
"match_KDA": "3.6 (4 / 7 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_observer_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
}
],
"力丸": [
{
"match_id": "3139778329",
"match_reslut": "胜利",
"match_KDA": "5.8 (5 / 5 / 24)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/basher_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "3139778329",
"match_reslut": "胜利",
"match_KDA": "5.8 (5 / 5 / 24)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/basher_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "3103421920",
"match_reslut": "失败",
"match_KDA": "1.2 (0 / 6 / 7)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tango_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "3062400690",
"match_reslut": "胜利",
"match_KDA": "5.0 (4 / 7 / 31)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "3024406050",
"match_reslut": "胜利",
"match_KDA": "1.8 (5 / 12 / 16)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/quelling_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/skadi_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "3009665347",
"match_reslut": "胜利",
"match_KDA": "4.8 (2 / 4 / 17)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/headdress_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/basher_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2999747766",
"match_reslut": "胜利",
"match_KDA": "3.3 (3 / 8 / 23)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png"
]
},
{
"match_id": "2974602021",
"match_reslut": "失败",
"match_KDA": "3.5 (7 / 4 / 7)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/smoke_of_deceit_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2969368899",
"match_reslut": "失败",
"match_KDA": "2.2 (3 / 6 / 10)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2967312029",
"match_reslut": "胜利",
"match_KDA": "4.4 (10 / 8 / 25)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cheese_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2936426756",
"match_reslut": "胜利",
"match_KDA": "8.7 (12 / 3 / 14)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ring_of_aquila_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2804660759",
"match_reslut": "胜利",
"match_KDA": "3.8 (3 / 4 / 12)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/quelling_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png"
]
},
{
"match_id": "2727237969",
"match_reslut": "胜利",
"match_KDA": "2.6 (2 / 5 / 11)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2503091835",
"match_reslut": "失败",
"match_KDA": "2.0 (5 / 11 / 17)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/yasha_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2444519922",
"match_reslut": "胜利",
"match_KDA": "2.2 (9 / 13 / 20)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/diffusal_blade_2_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cheese_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
}
],
"裂魂人": [
{
"match_id": "2991823738",
"match_reslut": "胜利",
"match_KDA": "5.0 (6 / 5 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/silver_edge_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_stick_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/power_treads_lg.png"
]
},
{
"match_id": "2991823738",
"match_reslut": "胜利",
"match_KDA": "5.0 (6 / 5 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/silver_edge_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ghost_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_stick_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/power_treads_lg.png"
]
}
],
"赏金猎人": [
{
"match_id": "3164542057",
"match_reslut": "胜利",
"match_KDA": "0.0 (0 / 0 / 0)",
"match_items": []
},
{
"match_id": "3164542057",
"match_reslut": "胜利",
"match_KDA": "0.0 (0 / 0 / 0)",
"match_items": []
},
{
"match_id": "3138877020",
"match_reslut": "失败",
"match_KDA": "2.0 (3 / 6 / 9)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/buckler_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/headdress_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_dispenser_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "3003972932",
"match_reslut": "胜利",
"match_KDA": "5.5 (2 / 4 / 20)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ward_dispenser_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/smoke_of_deceit_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/cyclone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2702632119",
"match_reslut": "失败",
"match_KDA": "3.4 (6 / 8 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2702545276",
"match_reslut": "胜利",
"match_KDA": "4.8 (4 / 6 / 25)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_observer_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2702473251",
"match_reslut": "失败",
"match_KDA": "2.6 (3 / 8 / 18)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2696605376",
"match_reslut": "胜利",
"match_KDA": "6.4 (4 / 5 / 28)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pers_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2692209839",
"match_reslut": "胜利",
"match_KDA": "8.5 (0 / 2 / 17)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/buckler_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2692062872",
"match_reslut": "失败",
"match_KDA": "3.8 (4 / 4 / 11)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/void_stone_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/energy_booster_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/travel_boots_lg.png"
]
},
{
"match_id": "2689794999",
"match_reslut": "胜利",
"match_KDA": "4.1 (4 / 8 / 29)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/lotus_orb_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/dust_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2683682946",
"match_reslut": "胜利",
"match_KDA": "6.0 (3 / 4 / 21)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/crimson_guard_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2680673019",
"match_reslut": "胜利",
"match_KDA": "2.0 (1 / 5 / 9)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ring_of_regen_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/wind_lace_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2549479137",
"match_reslut": "失败",
"match_KDA": "0.3 (0 / 6 / 2)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/orb_of_venom_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/boots_lg.png"
]
},
{
"match_id": "2446884480",
"match_reslut": "胜利",
"match_KDA": "3.6 (5 / 10 / 31)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blade_mail_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/urn_of_shadows_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/shivas_guard_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ancient_janggo_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2442433381",
"match_reslut": "失败",
"match_KDA": "1.2 (3 / 14 / 14)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/lotus_orb_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ring_of_regen_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tranquil_boots_lg.png"
]
},
{
"match_id": "2427950507",
"match_reslut": "胜利",
"match_KDA": "5.2 (4 / 5 / 22)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/lotus_orb_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_stick_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/boots_lg.png"
]
},
{
"match_id": "2362315882",
"match_reslut": "胜利",
"match_KDA": "19.5 (8 / 2 / 31)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/hood_of_defiance_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/gem_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/bottle_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2357638993",
"match_reslut": "失败",
"match_KDA": "3.0 (3 / 7 / 18)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/mekansm_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/solar_crest_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2343659407",
"match_reslut": "胜利",
"match_KDA": "7.0 (1 / 4 / 27)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tango_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/guardian_greaves_lg.png"
]
},
{
"match_id": "2343186672",
"match_reslut": "胜利",
"match_KDA": "4.0 (2 / 3 / 10)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/blink_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/quelling_blade_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
},
{
"match_id": "2276211103",
"match_reslut": "胜利",
"match_KDA": "4.6 (6 / 7 / 26)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/pipe_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/ancient_janggo_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/vladmir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/phase_boots_lg.png"
]
},
{
"match_id": "2236061800",
"match_reslut": "失败",
"match_KDA": "0.9 (1 / 9 / 7)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/ward_sentry_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/magic_wand_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/force_staff_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/arcane_boots_lg.png"
]
}
],
"德鲁伊": [
{
"match_id": "3018238041",
"match_reslut": "胜利",
"match_KDA": "3.0 (14 / 11 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/lifesteal_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/rapier_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mjollnir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hurricane_pike_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/skadi_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/power_treads_lg.png"
]
},
{
"match_id": "3018238041",
"match_reslut": "胜利",
"match_KDA": "3.0 (14 / 11 / 19)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/lifesteal_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/rapier_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mjollnir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/hurricane_pike_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/skadi_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/power_treads_lg.png"
]
},
{
"match_id": "3018137763",
"match_reslut": "失败",
"match_KDA": "1.7 (6 / 11 / 13)",
"match_items": [
"http://cdn.dota2.com/apps/dota2/images/items/hurricane_pike_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/monkey_king_bar_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/mjollnir_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/tpscroll_lg.png",
"http://cdn.dota2.com/apps/dota2/images/items/power_treads_lg.png"
]