-
Notifications
You must be signed in to change notification settings - Fork 2
/
Video_Games_Sales.csv
We can't make this file beautiful and searchable because it's too large.
6867 lines (6867 loc) · 902 KB
/
Video_Games_Sales.csv
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
Name,Name_Identifier,Platform,Platform_Identifier,Year_of_Release,Genre,Genre_Identifier,Publisher,Publisher_Identifier,NA_Sales,EU_Sales,JP_Sales,Other_Sales,Global_Sales,Critic_Score,Critic_Count,User_Score,User_Count,Developer,Developer_Identifier,Rating,Rating_Identifier,Sales_Category,Sales_Category_Identifier
Mario Kart Wii,4243,Wii,7,2008,Racing,5,Nintendo,156,15.68,12.76,3.79,3.29,35.52,82,73,8.3,709,Nintendo,1264,E,1,VERY HIGH,4
Wii Sports Resort,4225,Wii,7,2009,Sports,2,Nintendo,156,15.61,10.93,3.28,2.95,32.77,80,73,8,192,Nintendo,1264,E,1,VERY HIGH,4
New Super Mario Bros.,1829,DS,11,2006,Platform,6,Nintendo,156,11.28,9.14,6.5,2.88,29.8,89,65,8.5,431,Nintendo,1264,E,1,VERY HIGH,4
Wii Play,1832,Wii,7,2006,Misc,7,Nintendo,156,13.96,9.18,2.93,2.84,28.92,58,41,6.6,129,Nintendo,1264,E,1,VERY HIGH,4
New Super Mario Bros. Wii,3137,Wii,7,2009,Platform,6,Nintendo,156,14.44,6.94,4.7,2.24,28.32,87,80,8.4,594,Nintendo,1264,E,1,VERY HIGH,4
Mario Kart DS,4042,DS,11,2005,Racing,5,Nintendo,156,9.71,7.47,4.13,1.9,23.21,91,64,8.6,464,Nintendo,1264,E,1,VERY HIGH,4
Wii Fit,1431,Wii,7,2007,Sports,2,Nintendo,156,8.92,8.03,3.6,2.15,22.7,80,63,7.7,146,Nintendo,1264,E,1,VERY HIGH,4
Kinect Adventures!,3307,X360,15,2010,Misc,7,Microsoft Game Studios,14,15,4.89,0.24,1.69,21.81,61,45,6.3,106,Good Science Studio,1172,E,1,VERY HIGH,4
Wii Fit Plus,3478,Wii,7,2009,Sports,2,Nintendo,156,9.01,8.49,2.53,1.77,21.79,80,33,7.4,52,Nintendo,1264,E,1,VERY HIGH,4
Grand Theft Auto V,300,PS3,14,2013,Action,1,Take Two Interactive,21,7.02,9.09,0.98,3.96,21.04,97,50,8.2,3994,Rockstar North,1197,M,2,VERY HIGH,4
Grand Theft Auto: San Andreas,2967,PS2,13,2004,Action,1,Take Two Interactive,21,9.43,0.4,0.41,10.57,20.81,95,80,9,1588,Rockstar North,1197,M,2,VERY HIGH,4
Brain Age: Train Your Brain in Minutes a Day,271,DS,11,2005,Misc,7,Nintendo,156,4.74,9.2,4.16,2.04,20.15,77,58,7.9,50,Nintendo,1264,E,1,VERY HIGH,4
Grand Theft Auto V,300,X360,15,2013,Action,1,Take Two Interactive,21,9.66,5.14,0.06,1.41,16.27,97,58,8.1,3711,Rockstar North,1197,M,2,HIGH,3
Grand Theft Auto: Vice City,3871,PS2,13,2002,Action,1,Take Two Interactive,21,8.41,5.49,0.47,1.78,16.15,95,62,8.7,730,Rockstar North,1197,M,2,HIGH,3
Brain Age 2: More Training in Minutes a Day,3337,DS,11,2005,Puzzle,12,Nintendo,156,3.43,5.35,5.32,1.18,15.29,77,37,7.1,19,Nintendo,1264,E,1,HIGH,3
Gran Turismo 3: A-Spec,873,PS2,13,2001,Racing,5,Sony Computer Entertainment,34,6.85,5.09,1.87,1.16,14.98,95,54,8.4,314,Polyphony Digital,550,E,1,HIGH,3
Call of Duty: Modern Warfare 3,2364,X360,15,2011,Shooter,3,Activision,176,9.04,4.24,0.13,1.32,14.73,88,81,3.4,8713,Infinity Ward Sledgehammer Games,802,M,2,HIGH,3
Call of Duty: Black Ops,2219,X360,15,2010,Shooter,3,Activision,176,9.7,3.68,0.11,1.13,14.61,87,89,6.3,1454,Treyarch,1245,M,2,HIGH,3
Call of Duty: Black Ops II,1206,PS3,14,2012,Shooter,3,Activision,176,4.99,5.73,0.65,2.42,13.79,83,21,5.3,922,Treyarch,1245,M,2,HIGH,3
Call of Duty: Black Ops II,1206,X360,15,2012,Shooter,3,Activision,176,8.25,4.24,0.07,1.12,13.67,83,73,4.8,2256,Treyarch,1245,M,2,HIGH,3
Call of Duty: Modern Warfare 2,3397,X360,15,2009,Shooter,3,Activision,176,8.52,3.59,0.08,1.28,13.47,94,100,6.3,2698,Infinity Ward,975,M,2,HIGH,3
Call of Duty: Modern Warfare 3,2364,PS3,14,2011,Shooter,3,Activision,176,5.54,5.73,0.49,1.57,13.32,88,39,3.2,5234,Infinity Ward Sledgehammer Games,802,M,2,HIGH,3
Grand Theft Auto III,2964,PS2,13,2001,Action,1,Take Two Interactive,21,6.99,4.51,0.3,1.3,13.1,97,56,8.5,664,DMA Design,610,M,2,HIGH,3
Super Smash Bros. Brawl,2239,Wii,7,2008,Fighting,8,Nintendo,156,6.62,2.55,2.66,1.01,12.84,93,81,8.9,1662,Game Arts,1090,T,0,HIGH,3
Mario Kart 7,2790,3DS,16,2011,Racing,5,Nintendo,156,5.03,4.02,2.69,0.91,12.66,85,73,8.2,632,Retro Studios Entertainment Analysis & Development Division,640,E,1,HIGH,3
Call of Duty: Black Ops,2219,PS3,14,2010,Shooter,3,Activision,176,5.99,4.37,0.48,1.79,12.63,88,58,6.4,1094,Treyarch,1245,M,2,HIGH,3
Grand Theft Auto V,300,PS4,3,2014,Action,1,Take Two Interactive,21,3.96,6.31,0.38,1.97,12.61,97,66,8.3,2899,Rockstar North,1197,M,2,HIGH,3
Animal Crossing: Wild World,4206,DS,11,2005,Simulation,9,Nintendo,156,2.5,3.45,5.33,0.86,12.13,86,57,8.7,242,Nintendo,1264,E,1,HIGH,3
Halo 3,1043,X360,15,2007,Shooter,3,Microsoft Game Studios,14,7.97,2.81,0.13,1.21,12.12,94,86,7.8,4100,Bungie Software Bungie,1250,M,2,HIGH,3
Gran Turismo 4,2365,PS2,13,2004,Racing,5,Sony Computer Entertainment,34,3.01,0.01,1.1,7.53,11.66,89,74,8.5,272,Polyphony Digital,550,E,1,HIGH,3
Super Mario Galaxy,518,Wii,7,2007,Platform,6,Nintendo,156,6.06,3.35,1.2,0.74,11.35,97,73,8.9,2147,Nintendo,1264,E,1,HIGH,3
Grand Theft Auto IV,4126,X360,15,2008,Action,1,Take Two Interactive,21,6.76,3.07,0.14,1.03,11.01,98,86,7.9,2951,Rockstar North,1197,M,2,HIGH,3
Gran Turismo,2751,PS,8,1997,Racing,5,Sony Computer Entertainment,34,4.02,3.87,2.54,0.52,10.95,96,16,8.7,138,Polyphony Digital,550,E,1,HIGH,3
Super Mario 3D Land,3227,3DS,16,2011,Platform,6,Nintendo,156,4.89,3,2.14,0.78,10.81,90,82,8.4,921,Nintendo,1264,E,1,HIGH,3
Gran Turismo 5,3857,PS3,14,2010,Racing,5,Sony Computer Entertainment,34,2.96,4.82,0.81,2.11,10.7,84,82,7.5,1112,Polyphony Digital,550,E,1,HIGH,3
Call of Duty: Modern Warfare 2,3397,PS3,14,2009,Shooter,3,Activision,176,4.99,3.64,0.38,1.6,10.6,94,67,6.3,2073,Infinity Ward,975,M,2,HIGH,3
Grand Theft Auto IV,4126,PS3,14,2008,Action,1,Take Two Interactive,21,4.76,3.69,0.44,1.61,10.5,98,64,7.5,2833,Rockstar North,1197,M,2,HIGH,3
Call of Duty: Ghosts,1698,X360,15,2013,Shooter,3,Activision,176,6.73,2.56,0.04,0.91,10.25,73,29,2.6,2117,Infinity Ward,975,M,2,HIGH,3
Just Dance 3,689,Wii,7,2011,Misc,7,Ubisoft,168,5.95,3.11,0,1.06,10.12,74,15,7.8,16,Ubisoft,855,E10+,3,HIGH,3
New Super Mario Bros. 2,796,3DS,16,2012,Platform,6,Nintendo,156,3.66,3.14,2.47,0.63,9.9,78,70,7.2,424,Nintendo,1264,E,1,HIGH,3
Halo: Reach,4307,X360,15,2010,Shooter,3,Microsoft Game Studios,14,7.04,1.95,0.08,0.79,9.86,91,99,7.9,2045,Bungie,836,M,2,HIGH,3
Final Fantasy VII,2208,PS,8,1997,Role-Playing,4,Sony Computer Entertainment,34,3.01,2.47,3.28,0.96,9.72,92,20,9.2,1282,SquareSoft,148,T,0,HIGH,3
Halo 4,124,X360,15,2012,Shooter,3,Microsoft Game Studios,14,6.65,2.28,0.04,0.74,9.71,87,87,7,3260,343 Industries,919,M,2,HIGH,3
Gran Turismo 2,3429,PS,8,1999,Racing,5,Sony Computer Entertainment,34,3.88,3.42,1.69,0.5,9.49,93,23,9,135,Polyphony Digital,550,T,0,HIGH,3
Just Dance 2,470,Wii,7,2010,Misc,7,Ubisoft,168,5.8,2.85,0.01,0.78,9.44,74,24,7.3,24,Ubisoft,855,E10+,3,HIGH,3
Call of Duty: Ghosts,1698,PS3,14,2013,Shooter,3,Activision,176,4.1,3.63,0.38,1.25,9.36,71,10,2.6,1047,Infinity Ward,975,M,2,HIGH,3
Call of Duty 4: Modern Warfare,3557,X360,15,2007,Shooter,3,Activision,176,5.93,2.36,0.13,0.9,9.31,94,70,8.4,1320,Infinity Ward,975,M,2,HIGH,3
Animal Crossing: New Leaf,148,3DS,16,2012,Simulation,9,Nintendo,156,2.03,2.36,4.39,0.39,9.16,88,70,8.7,626,Nintendo,1264,E,1,HIGH,3
Mario Party DS,1295,DS,11,2007,Misc,7,Nintendo,156,4.4,1.85,1.98,0.68,8.91,72,27,7.8,85,Hudson Soft,304,E,1,HIGH,3
The Elder Scrolls V: Skyrim,2906,X360,15,2011,Role-Playing,4,Bethesda Softworks,189,5.05,2.79,0.1,0.85,8.79,96,89,8.4,3589,Bethesda Game Studios,121,M,2,HIGH,3
FIFA 16,4226,PS4,3,2015,Sports,2,Electronic Arts,126,1.12,6.12,0.06,1.28,8.57,82,42,4.3,896,EA Sports,856,E,1,HIGH,3
Halo 2,3011,XB,2,2004,Shooter,3,Microsoft Game Studios,14,6.82,1.53,0.05,0.08,8.49,95,91,8.2,1218,Bungie Software,680,M,2,HIGH,3
Wii Party,2260,Wii,7,2010,Misc,7,Nintendo,156,1.75,3.47,2.49,0.67,8.38,68,42,7.4,54,Nd Cube,510,E,1,HIGH,3
Mario Party 8,772,Wii,7,2007,Misc,7,Nintendo,156,3.74,2.24,1.58,0.7,8.27,62,41,6.3,190,Hudson,685,E,1,HIGH,3
FIFA Soccer 13,1348,PS3,14,2012,Action,1,Electronic Arts,126,1.06,5.01,0.13,1.97,8.16,88,37,6.6,348,Electronic Arts,366,E,1,HIGH,3
Final Fantasy X,3901,PS2,13,2001,Role-Playing,4,Sony Computer Entertainment,34,2.91,2.07,2.73,0.33,8.05,92,53,8.7,1056,SquareSoft,148,T,0,HIGH,3
The Sims 3,1454,PC,0,2009,Simulation,9,Electronic Arts,126,0.99,6.42,0,0.6,8.01,86,75,7.6,886,The Sims Studio,598,T,0,HIGH,3
Final Fantasy VIII,4122,PS,8,1999,Role-Playing,4,SquareSoft,246,2.28,1.72,3.63,0.23,7.86,90,24,8.6,644,SquareSoft,148,T,0,HIGH,3
Pokémon Platinum Version,3652,DS,11,2008,Role-Playing,4,Nintendo,156,2.76,1.72,2.69,0.54,7.72,83,46,8.5,203,Game Freak,725,E,1,HIGH,3
Grand Theft Auto: Liberty City Stories,165,PSP,1,2005,Action,1,Take Two Interactive,21,2.9,2.81,0.24,1.73,7.69,88,65,7.6,451,Rockstar Leeds,787,M,2,HIGH,3
Call of Duty: Advanced Warfare,3071,PS4,3,2014,Shooter,3,Activision,176,2.81,3.48,0.14,1.23,7.66,83,39,5.7,1443,Sledgehammer Games,1014,M,2,HIGH,3
FIFA 17,622,PS4,3,2016,Sports,2,Electronic Arts,126,0.66,5.75,0.08,1.11,7.59,85,41,5,398,EA Sports EA Vancouver,418,E,1,HIGH,3
Super Mario Galaxy 2,651,Wii,7,2010,Platform,6,Nintendo,156,3.56,2.35,0.98,0.62,7.51,97,87,9.1,1854,Nintendo EAD Tokyo,198,E,1,HIGH,3
Call of Duty: World at War,3202,X360,15,2008,Shooter,3,Activision,176,4.81,1.88,0,0.69,7.38,84,84,7.6,580,Treyarch,1245,M,2,HIGH,3
Battlefield 3,905,X360,15,2011,Shooter,3,Electronic Arts,126,4.46,2.11,0.06,0.69,7.32,84,57,7.4,2142,EA DICE,122,M,2,HIGH,3
Need for Speed Underground,3167,PS2,13,2003,Racing,5,Electronic Arts,126,3.27,2.83,0.08,1.02,7.2,85,33,8.6,171,EA Black Box,452,E,1,HIGH,3
Just Dance,1960,Wii,7,2009,Misc,7,Ubisoft,168,3.48,2.99,0,0.73,7.2,49,21,8,110,Ubisoft Paris,706,E10+,3,HIGH,3
Battlefield 3,905,PS3,14,2011,Shooter,3,Electronic Arts,126,2.85,2.89,0.35,1.08,7.17,85,38,7.5,1761,EA DICE,122,M,2,HIGH,3
Fallout 4,616,PS4,3,2015,Role-Playing,4,Bethesda Softworks,189,2.53,3.27,0.24,1.13,7.16,87,58,6.5,4228,Bethesda Game Studios,121,M,2,HIGH,3
Tekken 3,2773,PS,8,1998,Fighting,8,Sony Computer Entertainment,34,3.27,2.22,1.4,0.29,7.16,96,15,9.1,367,Namco,1098,T,0,HIGH,3
The Legend of Zelda: Twilight Princess,4326,Wii,7,2006,Action,1,Nintendo,156,3.74,2.14,0.6,0.68,7.15,95,73,9,1658,Nintendo,1264,T,0,HIGH,3
Crash Bandicoot 3: Warped,2878,PS,8,1998,Platform,6,Sony Computer Entertainment,34,3.68,1.75,1.42,0.28,7.13,91,12,8.9,432,Naughty Dog,12,E,1,HIGH,3
Mario Kart 8,3506,WiiU,9,2014,Racing,5,Nintendo,156,3.15,2.15,1.28,0.51,7.09,88,82,9.1,1599,Nintendo,1264,E,1,HIGH,3
Super Smash Bros. Melee,2909,GC,4,2001,Fighting,8,Nintendo,156,4.41,1.04,1.39,0.22,7.07,92,38,9.1,568,HAL Labs,1289,T,0,HIGH,3
Need for Speed Underground 2,2153,PS2,13,2004,Racing,5,Electronic Arts,126,2.71,3.02,0.08,1.09,6.9,82,39,8.6,132,EA Canada,538,E,1,HIGH,3
Medal of Honor: Frontline,728,PS2,13,2002,Shooter,3,Electronic Arts,126,2.93,2.75,0.17,0.99,6.83,88,29,8.5,135,EA LA,1104,T,0,HIGH,3
Just Dance 4,3728,Wii,7,2012,Misc,7,Ubisoft,168,4.05,2.16,0,0.55,6.76,74,10,7.3,28,Ubisoft,855,E10+,3,HIGH,3
Gears of War 2,2675,X360,15,2008,Shooter,3,Microsoft Game Studios,14,4.15,1.9,0.06,0.64,6.75,93,90,7.7,2739,Epic Games,578,M,2,HIGH,3
Uncharted 3: Drake's Deception,602,PS3,14,2011,Action,1,Sony Computer Entertainment,34,2.77,2.75,0.19,1.03,6.74,92,97,8.3,3712,Naughty Dog,12,T,0,HIGH,3
Call of Duty 4: Modern Warfare,3557,PS3,14,2007,Shooter,3,Activision,176,3.11,2.26,0.28,1.03,6.68,94,44,8.4,993,Infinity Ward,975,M,2,HIGH,3
Uncharted 2: Among Thieves,1202,PS3,14,2009,Action,1,Sony Computer Entertainment,34,3.27,2.2,0.21,0.98,6.66,96,105,8.8,5187,Naughty Dog,12,T,0,HIGH,3
Big Brain Academy,3503,DS,11,2005,Misc,7,Nintendo,156,1.66,2.75,1.6,0.62,6.62,74,45,7.4,27,Nintendo,1264,E,1,HIGH,3
Red Dead Redemption,794,PS3,14,2010,Action,1,Take Two Interactive,21,2.79,2.53,0.17,0.99,6.49,95,73,8.8,2456,Rockstar San Diego,499,M,2,HIGH,3
FIFA 14,3173,PS3,14,2013,Sports,2,Electronic Arts,126,0.78,4.24,0.07,1.37,6.47,86,37,4.3,576,EA Canada,538,E,1,HIGH,3
Assassin's Creed III,198,PS3,14,2012,Action,1,Ubisoft,168,2.64,2.52,0.16,1.12,6.45,85,41,6.9,1307,Ubisoft,855,M,2,HIGH,3
Donkey Kong Country Returns,4257,Wii,7,2010,Platform,6,Nintendo,156,3.17,1.79,1.03,0.46,6.44,87,77,8.6,368,Retro Studios,1167,E,1,HIGH,3
Halo: Combat Evolved,3598,XB,2,2001,Shooter,3,Microsoft Game Studios,14,4.98,1.3,0.08,0.07,6.43,97,68,8.6,1283,Bungie Software,680,M,2,HIGH,3
The Elder Scrolls V: Skyrim,2906,PS3,14,2011,Role-Playing,4,Bethesda Softworks,189,2.55,2.6,0.25,1,6.41,92,16,6.4,2527,Bethesda Game Studios,121,M,2,HIGH,3
Pokémon Emerald Version,3603,GBA,6,2004,Role-Playing,4,Nintendo,156,2.57,1.58,2.06,0.21,6.41,76,28,9,222,Game Freak,725,E,1,HIGH,3
Kingdom Hearts,997,PS2,13,2002,Role-Playing,4,Sony Computer Entertainment,34,3.64,1.2,1.49,0.07,6.4,85,46,8.8,597,SquareSoft,148,E,1,HIGH,3
Halo 3: ODST,2076,X360,15,2009,Shooter,3,Microsoft Game Studios,14,4.34,1.34,0.06,0.61,6.34,83,94,7.1,1163,Bungie Software Bungie,1250,M,2,HIGH,3
Red Dead Redemption,794,X360,15,2010,Action,1,Take Two Interactive,21,3.7,1.95,0.09,0.58,6.32,95,96,9,2316,Rockstar San Diego,499,M,2,HIGH,3
Super Mario Sunshine,336,GC,4,2002,Platform,6,Nintendo,156,4.01,1.26,0.87,0.17,6.31,92,61,8.6,439,Nintendo,1264,E,1,HIGH,3
World of Warcraft,4100,PC,0,2004,Role-Playing,4,Activision,176,0.08,6.21,0,0,6.29,93,57,7.3,2182,Blizzard Entertainment,599,T,0,HIGH,3
Driver,2779,PS,8,1999,Action,1,GT Interactive,248,3.11,2.8,0.02,0.33,6.27,87,22,8.1,78,Reflections Interactive,800,T,0,HIGH,3
Gears of War 3,1884,X360,15,2011,Shooter,3,Microsoft Game Studios,14,4.05,1.59,0.07,0.5,6.21,91,96,7.8,1504,Epic Games,578,M,2,HIGH,3
Kinect Sports,628,X360,15,2010,Sports,2,Microsoft Game Studios,14,3.92,1.73,0.03,0.51,6.19,73,51,7.4,95,Rare Ltd.,1004,E10+,3,HIGH,3
Gears of War,4217,X360,15,2006,Shooter,3,Microsoft Game Studios,14,3.54,1.88,0.07,0.6,6.09,94,88,8.3,2295,Epic Games,578,M,2,HIGH,3
FIFA 15,1512,PS4,3,2014,Sports,2,Electronic Arts,126,0.8,4.33,0.05,0.9,6.08,82,47,5.7,988,EA Sports,856,E,1,HIGH,3
Metal Gear Solid 2: Sons of Liberty,293,PS2,13,2001,Action,1,Konami Digital Entertainment,22,2.45,2.01,0.87,0.72,6.05,96,42,8.7,1026,KCEJ,636,M,2,HIGH,3
Metal Gear Solid,326,PS,8,1998,Action,1,Konami Digital Entertainment,22,3.18,1.83,0.78,0.24,6.03,94,20,9.4,918,KCEJ,636,M,2,HIGH,3
Metal Gear Solid 4: Guns of the Patriots,567,PS3,14,2008,Action,1,Konami Digital Entertainment,22,2.63,1.71,0.83,0.82,5.99,94,82,8.7,3558,Kojima Productions,1070,M,2,HIGH,3
Final Fantasy XII,1477,PS2,13,2006,Role-Playing,4,Square Enix,127,1.88,0,2.33,1.74,5.95,92,64,7.6,972,Square Enix,921,T,0,HIGH,3
The Last of Us,980,PS3,14,2013,Action,1,Sony Computer Entertainment Europe,153,2.41,2.18,0.28,0.99,5.87,95,98,9.1,8003,Naughty Dog,12,M,2,HIGH,3
LittleBigPlanet,1524,PS3,14,2008,Platform,6,Sony Computer Entertainment,34,2.8,1.98,0.17,0.87,5.82,95,85,6.8,5311,SCE/WWS Media Molecule,665,E,1,HIGH,3
Resident Evil 2,1428,PS,8,1998,Action,1,Virgin Interactive,30,1.88,1.47,2.02,0.45,5.82,89,13,9.2,364,Capcom,63,M,2,HIGH,3
Dragon Quest IX: Sentinels of the Starry Skies,2282,DS,11,2009,Role-Playing,4,Nintendo,156,0.63,0.67,4.35,0.15,5.78,87,65,8.8,197,Level 5,968,E10+,3,HIGH,3
Tekken 2,2363,PS,8,1996,Fighting,8,Sony Computer Entertainment,34,2.26,1.89,1.36,0.23,5.74,89,8,8.9,102,Namco,1098,T,0,HIGH,3
Destiny,449,PS4,3,2014,Shooter,3,Activision,176,2.49,2.07,0.16,0.92,5.64,76,95,6.1,5380,Bungie Software Bungie,1250,T,0,HIGH,3
LEGO Star Wars: The Complete Saga,506,Wii,7,2007,Action,1,LucasArts,37,3.57,1.55,0,0.51,5.64,80,17,8.9,62,Traveller's Tales,179,E10+,3,HIGH,3
Cooking Mama,2762,DS,11,2006,Simulation,9,505 Games,25,3.07,1.91,0.07,0.57,5.63,67,35,7.2,21,Taito Corporation,540,E,1,HIGH,3
Assassin's Creed II,642,PS3,14,2009,Action,1,Ubisoft,168,2.54,1.93,0.21,0.86,5.55,91,70,8.6,1202,Ubisoft Montreal,164,M,2,HIGH,3
Assassin's Creed,1398,X360,15,2007,Adventure,11,Ubisoft,168,3.28,1.64,0.07,0.56,5.54,81,77,7.7,1074,Ubisoft Montreal,164,M,2,HIGH,3
Forza Motorsport 3,306,X360,15,2009,Racing,5,Microsoft Game Studios,14,2.99,1.9,0.1,0.5,5.49,92,90,8,516,Turn 10,1008,E,1,HIGH,3
Super Mario Advance,2930,GBA,6,2001,Platform,6,Nintendo,156,3.14,1.24,0.91,0.2,5.49,84,19,7.8,41,Nintendo,1264,E,1,HIGH,3
Monster Hunter Freedom Unite,507,PSP,1,2008,Role-Playing,4,Capcom,261,0.47,0.55,4.13,0.34,5.48,81,48,8.7,124,Capcom,63,T,0,HIGH,3
Batman: Arkham City,2251,PS3,14,2011,Action,1,Warner Bros. Interactive Entertainment,69,2.71,1.85,0.11,0.81,5.48,96,42,8.6,2162,Rocksteady Studios,380,T,0,HIGH,3
Grand Theft Auto V,300,XOne,5,2014,Action,1,Take Two Interactive,21,2.81,2.19,0,0.47,5.48,97,14,7.9,764,Rockstar North,1197,M,2,HIGH,3
Mario Kart: Super Circuit,3820,GBA,6,2001,Racing,5,Nintendo,156,2.62,1.64,0.99,0.23,5.47,93,24,8.3,108,Intelligent Systems,1024,E,1,HIGH,3
Crash Bandicoot: The Wrath of Cortex,2317,PS2,13,2001,Platform,6,Universal Interactive,31,2.07,2.29,0.24,0.82,5.42,66,22,7.1,156,Traveller's Tales,179,E,1,HIGH,3
Call of Duty: World at War,3202,PS3,14,2008,Shooter,3,Activision,176,2.73,1.83,0,0.83,5.39,85,45,7.6,409,Treyarch,1245,M,2,HIGH,3
Uncharted 4: A Thief's End,2542,PS4,3,2016,Shooter,3,Sony Computer Entertainment,34,1.85,2.5,0.19,0.85,5.38,93,113,7.9,7064,Naughty Dog,12,T,0,HIGH,3
Final Fantasy XIII,3090,PS3,14,2009,Role-Playing,4,Square Enix,127,1.74,1.21,1.87,0.51,5.33,83,83,7.3,2483,Square Enix,921,T,0,HIGH,3
Final Fantasy IX,1561,PS,8,2000,Role-Playing,4,SquareSoft,246,1.62,0.77,2.78,0.14,5.3,94,22,8.9,779,SquareSoft,148,T,0,HIGH,3
Assassin's Creed III,198,X360,15,2012,Action,1,Ubisoft,168,3.13,1.69,0.03,0.44,5.29,84,61,6.7,1196,Ubisoft,855,M,2,HIGH,3
Final Fantasy X-2,3903,PS2,13,2003,Role-Playing,4,Electronic Arts,126,1.92,1.08,2.11,0.17,5.29,85,45,6.6,400,SquareSoft,148,T,0,HIGH,3
Call of Duty: Advanced Warfare,3071,XOne,5,2014,Shooter,3,Activision,176,3.22,1.55,0.01,0.48,5.27,81,53,5.4,898,Sledgehammer Games,1014,M,2,HIGH,3
Assassin's Creed II,642,X360,15,2009,Action,1,Ubisoft,168,3.11,1.55,0.08,0.51,5.26,90,82,8.8,1305,Ubisoft Montreal,164,M,2,HIGH,3
Madden NFL 2004,1641,PS2,13,2004,Sports,2,Electronic Arts,126,4.26,0.26,0.01,0.71,5.23,94,29,8.5,140,EA Tiburon,397,E,1,HIGH,3
New Super Mario Bros. U,1759,WiiU,9,2012,Platform,6,Nintendo,156,2.3,1.34,1.27,0.32,5.22,84,70,8.1,733,Nintendo,1264,E,1,HIGH,3
Dragon Quest VIII: Journey of the Cursed King,4032,PS2,13,2004,Role-Playing,4,Square Enix,127,0.65,0.75,3.61,0.2,5.21,89,63,8.8,245,Level 5,968,T,0,HIGH,3
Professor Layton and the Curious Village,3001,DS,11,2007,Puzzle,12,Nintendo,156,1.21,2.43,1.03,0.52,5.19,85,72,8.6,147,Level 5,968,E,1,HIGH,3
FIFA Soccer 13,1348,X360,15,2012,Action,1,Electronic Arts,126,1.09,3.47,0.03,0.57,5.16,90,48,6.1,403,Electronic Arts,366,E,1,HIGH,3
Diablo III,961,PC,0,2012,Role-Playing,4,Activision,176,2.44,2.16,0,0.54,5.14,88,86,4,9629,Blizzard Entertainment,599,M,2,HIGH,3
Medal of Honor: Rising Sun,2997,PS2,13,2003,Shooter,3,Electronic Arts,126,1.98,2.23,0.13,0.8,5.13,68,30,7.6,100,EA LA,1104,T,0,HIGH,3
Guitar Hero II,1569,PS2,13,2006,Misc,7,RedOctane,231,3.81,0.63,0,0.68,5.12,92,69,8.5,112,Harmonix Music Systems,1009,T,0,HIGH,3
Fable III,4099,X360,15,2010,Role-Playing,4,Microsoft Game Studios,14,3.59,1.08,0.05,0.38,5.1,80,88,6.5,604,Lionhead Studios,925,M,2,HIGH,3
Resident Evil 5,3851,PS3,14,2009,Action,1,Capcom,261,1.96,1.41,1.08,0.64,5.09,84,76,7.5,667,Capcom,63,M,2,HIGH,3
The Legend of Zelda: Phantom Hourglass,1926,DS,11,2007,Action,1,Nintendo,156,1.85,1.8,0.95,0.48,5.08,90,57,8,416,Nintendo,1264,E,1,HIGH,3
FIFA Soccer 11,3317,PS3,14,2010,Sports,2,Electronic Arts,126,0.61,3.28,0.06,1.12,5.07,89,51,8,233,EA Sports,856,E,1,HIGH,3
Resident Evil,740,PS,8,1996,Action,1,Virgin Interactive,30,2.05,1.16,1.11,0.73,5.05,91,8,9,266,Capcom,63,M,2,HIGH,3
Grand Theft Auto: Vice City Stories,3976,PSP,1,2006,Action,1,Take Two Interactive,21,1.7,1.99,0.16,1.18,5.03,86,50,8,150,Rockstar Leeds,787,M,2,HIGH,3
Tony Hawk's Pro Skater,729,PS,8,1999,Sports,2,Activision,176,3.42,1.38,0.02,0.2,5.02,92,18,9.2,69,Neversoft Entertainment,641,T,0,HIGH,3
Guitar Hero III: Legends of Rock,1102,PS2,13,2007,Misc,7,Activision,176,3.49,0.01,0.01,1.48,4.98,82,24,8.2,46,Neversoft Entertainment BudCat,846,T,0,HIGH,3
Link's Crossbow Training,801,Wii,7,2007,Shooter,3,Nintendo,156,3.05,1.17,0.29,0.46,4.98,68,34,7.1,47,Nintendo,1264,T,0,HIGH,3
Fallout 3,2557,X360,15,2008,Role-Playing,4,Bethesda Softworks,189,3.4,0.99,0.09,0.45,4.93,93,84,8.5,1655,Bethesda Game Studios,121,M,2,HIGH,3
Uncharted: Drake's Fortune,2780,PS3,14,2007,Action,1,Sony Computer Entertainment,34,2.31,1.72,0.12,0.77,4.92,88,66,8.1,2306,Naughty Dog SCE/WWS,715,T,0,HIGH,3
Madden NFL 06,2702,PS2,13,2005,Sports,2,Electronic Arts,126,3.98,0.26,0.01,0.66,4.91,88,29,8,121,EA Sports,856,E,1,HIGH,3
StarCraft II: Wings of Liberty,120,PC,0,2010,Strategy,10,Activision,176,2.57,1.68,0,0.58,4.84,93,82,8.2,3052,Blizzard Entertainment,599,T,0,HIGH,3
Assassin's Creed,1398,PS3,14,2007,Adventure,11,Ubisoft,168,1.91,2,0.09,0.82,4.82,81,40,7.3,769,Ubisoft Montreal,164,M,2,HIGH,3
God of War III,937,PS3,14,2010,Action,1,Sony Computer Entertainment,34,2.74,1.33,0.12,0.61,4.8,92,101,8.7,2633,SCE Santa Monica,194,M,2,HIGH,3
Crash Team Racing,440,PS,8,1999,Racing,5,Sony Computer Entertainment,34,2.57,1.57,0.44,0.21,4.79,88,20,9,233,Naughty Dog,12,E,1,HIGH,3
LEGO Star Wars: The Complete Saga,506,DS,11,2007,Action,1,LucasArts,37,2.83,1.48,0,0.45,4.76,80,9,5.4,46,TT Fusion,986,E,1,HIGH,3
Driver 2,3286,PS,8,2000,Action,1,Atari,229,2.36,2.1,0.02,0.25,4.73,62,14,7.7,92,Reflections Interactive,800,T,0,HIGH,3
Batman: Arkham City,2251,X360,15,2011,Action,1,Warner Bros. Interactive Entertainment,69,2.99,1.27,0.04,0.42,4.73,94,87,8.7,1472,Rocksteady Studios,380,T,0,HIGH,3
Tony Hawk's Pro Skater 2,301,PS,8,2000,Sports,2,Activision,176,3.05,1.41,0.02,0.2,4.68,98,19,7.7,299,Neversoft Entertainment,641,T,0,HIGH,3
The Lord of the Rings: The Two Towers,1349,PS2,13,2002,Action,1,Electronic Arts,126,1.94,1.95,0.08,0.7,4.67,82,32,8.2,78,Stormfront Studios,10,T,0,HIGH,3
Tomb Raider,875,PS,8,1996,Action,1,Eidos Interactive,259,2.29,1.97,0.13,0.24,4.63,91,13,8.6,147,Core Design Ltd.,559,T,0,HIGH,3
Animal Crossing: City Folk,733,Wii,7,2008,Simulation,9,Nintendo,156,1.82,1.12,1.32,0.36,4.62,73,50,7.6,119,Nintendo,1264,E,1,HIGH,3
Uncharted: The Nathan Drake Collection,2519,PS4,3,2015,Action,1,Sony Computer Entertainment,34,2.07,1.71,0.08,0.76,4.62,86,78,8.1,1264,Bluepoint Games,630,T,0,HIGH,3
The Legend of Zelda: The Wind Waker,3565,GC,4,2002,Action,1,Nintendo,156,2.6,0.99,0.89,0.13,4.6,96,80,8.9,968,Nintendo,1264,E,1,HIGH,3
Guitar Hero III: Legends of Rock,1102,Wii,7,2007,Misc,7,Activision,176,3.04,1.11,0,0.43,4.6,86,36,8.4,87,Vicarious Visions,312,T,0,HIGH,3
Luigi's Mansion: Dark Moon,2386,3DS,16,2013,Action,1,Nintendo,156,1.8,1.39,1.11,0.29,4.59,86,74,8.4,458,Next Level Games,299,E,1,HIGH,3
Forza Motorsport 4,459,X360,15,2011,Racing,5,Microsoft Game Studios,14,2.08,1.97,0.06,0.46,4.57,91,83,8.2,617,Turn 10,1008,E,1,HIGH,3
Madden NFL 2005,308,PS2,13,2004,Sports,2,Electronic Arts,126,4.18,0.26,0.01,0.08,4.53,91,30,7.9,78,EA Tiburon,397,E,1,HIGH,3
Guitar Hero III: Legends of Rock,1102,X360,15,2007,Misc,7,Activision,176,3.19,0.91,0.01,0.42,4.53,85,69,7.9,165,Neversoft Entertainment,641,T,0,HIGH,3
Madden NFL 07,4101,PS2,13,2006,Sports,2,Electronic Arts,126,3.63,0.24,0.01,0.61,4.49,84,29,8.2,39,EA Sports,856,E,1,HIGH,3
Halo 5: Guardians,133,XOne,5,2015,Shooter,3,Microsoft Game Studios,14,2.78,1.27,0.03,0.41,4.48,84,101,6.4,2438,343 Industries,919,T,0,HIGH,3
Spider-Man: The Movie,757,PS2,13,2002,Action,1,Activision,176,2.71,1.51,0.03,0.23,4.48,76,25,7.9,41,Treyarch,1245,E,1,HIGH,3
Call of Duty: Infinite Warfare,672,PS4,3,2016,Shooter,3,Activision,176,1.61,2,0.15,0.71,4.46,77,82,3.4,1129,Infinity Ward,975,M,2,HIGH,3
God of War,2167,PS2,13,2005,Action,1,Sony Computer Entertainment,34,2.71,1.29,0.02,0.43,4.45,94,75,8.9,997,SCE Santa Monica,194,M,2,HIGH,3
Splatoon,977,WiiU,9,2015,Shooter,3,Nintendo,156,1.54,1.18,1.46,0.26,4.43,81,88,8.5,1184,Nintendo,1264,E10+,3,HIGH,3
Nintendo Land,94,WiiU,9,2012,Misc,7,Nintendo,156,2.52,1.11,0.46,0.33,4.42,77,61,7.9,471,Nintendo,1264,E10+,3,HIGH,3
Tony Hawk's Pro Skater 3,2043,PS2,13,2001,Sports,2,Activision,176,2.66,1.29,0.01,0.46,4.41,97,34,7.5,298,Neversoft Entertainment,641,T,0,HIGH,3
Winning Eleven: Pro Evolution Soccer 2007,3186,PS2,13,2006,Sports,2,Konami Digital Entertainment,22,0.1,2.39,1.05,0.86,4.39,86,19,8.9,33,Konami,489,E,1,HIGH,3
The Elder Scrolls IV: Oblivion,475,X360,15,2006,Role-Playing,4,Take Two Interactive,21,2.82,1.03,0.13,0.4,4.38,94,90,8.7,1109,Bethesda Softworks,307,M,2,HIGH,3
Need for Speed: Most Wanted,1728,PS2,13,2005,Racing,5,Electronic Arts,126,2.03,1.79,0.08,0.47,4.37,82,36,9.1,137,EA Canada,538,T,0,HIGH,3
Michael Jackson: The Experience,2292,Wii,7,2010,Misc,7,Ubisoft,168,2.64,1.33,0.01,0.39,4.36,56,37,8.3,31,Ubisoft Paris Ubisoft Montpellier,381,E10+,3,HIGH,3
Resistance: Fall of Man,3196,PS3,14,2006,Shooter,3,Sony Computer Entertainment,34,1.74,1.72,0.14,0.75,4.34,86,70,8.1,715,Insomniac Games,567,M,2,HIGH,3
Kingdom Hearts II,2382,PS2,13,2005,Role-Playing,4,Square Enix,127,2.2,0.58,1.38,0.17,4.33,87,64,9,766,Square Enix,921,E10+,3,HIGH,3
Super Mario 3D World,1745,WiiU,9,2013,Platform,6,Nintendo,156,2.11,1.16,0.73,0.32,4.32,93,83,9,1607,Nintendo,1264,E,1,HIGH,3
Fable II,1149,X360,15,2008,Role-Playing,4,Microsoft Game Studios,14,2.51,1.24,0.11,0.41,4.27,89,95,6.5,2423,Lionhead Studios,925,M,2,HIGH,3
Namco Museum,2546,GBA,6,2001,Misc,7,Namco Bandai Games,0,3,1.11,0.05,0.07,4.24,79,10,7.3,6,Mass Media,1170,E,1,HIGH,3
Batman: Arkham Asylum,4093,PS3,14,2009,Action,1,Eidos Interactive,259,2.24,1.31,0.07,0.61,4.23,91,70,8.9,1122,Rocksteady Studios,380,T,0,HIGH,3
Metal Gear Solid 3: Snake Eater,2829,PS2,13,2004,Action,1,Konami Digital Entertainment,22,1.46,0,0.83,1.93,4.23,91,68,9.3,955,KCEJ,636,M,2,HIGH,3
Assassin's Creed: Revelations,2722,PS3,14,2011,Action,1,Ubisoft,168,1.41,2.01,0.1,0.7,4.22,80,39,7.5,613,Ubisoft Montreal,164,M,2,HIGH,3
Fallout 4,616,XOne,5,2015,Role-Playing,4,Bethesda Softworks,189,2.51,1.32,0.01,0.38,4.22,88,39,6.2,1749,Bethesda Game Studios,121,M,2,HIGH,3
FIFA 14,3173,X360,15,2013,Sports,2,Electronic Arts,126,0.92,2.89,0.01,0.4,4.22,84,41,4.2,435,EA Canada,538,E,1,HIGH,3
Daxter,3734,PSP,1,2006,Platform,6,Sony Computer Entertainment,34,2.45,1.01,0,0.75,4.21,85,59,8.7,109,Ready at Dawn,596,E10+,3,HIGH,3
FIFA Soccer 06,788,PS2,13,2005,Sports,2,Electronic Arts,126,0.78,2.55,0.04,0.84,4.21,80,32,7.8,47,EA Canada,538,E,1,HIGH,3
EyeToy Play,962,PS2,13,2003,Misc,7,Sony Computer Entertainment,34,0.88,2.3,0.2,0.83,4.2,80,32,7.5,22,SCEE Zoe Mode,575,E,1,HIGH,3
Gran Turismo 5 Prologue,3192,PS3,14,2007,Racing,5,Sony Computer Entertainment,34,1.28,1.82,0.57,0.52,4.19,80,67,7.1,120,Polyphony Digital,550,E,1,HIGH,3
Assassin's Creed: Revelations,2722,X360,15,2011,Action,1,Ubisoft,168,2.25,1.47,0.04,0.43,4.19,80,77,7.2,564,Ubisoft Montreal,164,M,2,HIGH,3
Street Fighter IV,4162,PS3,14,2009,Fighting,8,Capcom,261,2.03,1.04,0.58,0.52,4.16,94,61,7.3,330,Capcom,63,T,0,HIGH,3
Madden NFL 2003,1445,PS2,13,2002,Sports,2,Electronic Arts,126,3.36,0.21,0.01,0.56,4.14,95,25,7.7,65,EA Sports,856,E,1,HIGH,3
Half-Life,1322,PC,0,1997,Shooter,3,Vivendi Games,245,4.03,0,0.09,0,4.12,96,24,9.1,3161,Valve Software,798,M,2,HIGH,3
World of Warcraft: The Burning Crusade,3708,PC,0,2007,Role-Playing,4,Activision,176,2.57,1.52,0,0,4.09,91,46,7.9,785,Blizzard Entertainment,599,T,0,HIGH,3
Battlefield 1,2138,PS4,3,2016,Shooter,3,Electronic Arts,126,1.1,2.15,0.21,0.61,4.08,88,31,8.4,809,EA DICE,122,M,2,HIGH,3
God of War II,2610,PS2,13,2007,Action,1,Sony Computer Entertainment,34,2.32,0.04,0.04,1.67,4.07,93,70,8.9,709,SCE Santa Monica,194,M,2,HIGH,3
Fallout: New Vegas,3620,X360,15,2010,Role-Playing,4,Bethesda Softworks,189,2.66,1.03,0.04,0.33,4.05,84,81,8.1,769,Obsidian Entertainment,693,M,2,HIGH,3
Forza Motorsport 2,2673,X360,15,2007,Racing,5,Microsoft Game Studios,14,2.35,1.27,0.03,0.41,4.05,90,66,8.3,381,Turn 10,1008,E,1,HIGH,3
Carnival Games,1760,Wii,7,2007,Misc,7,Take Two Interactive,21,2.12,1.47,0.05,0.42,4.05,56,27,6,44,Cat Daddy Games,1105,E,1,HIGH,3
Watch Dogs,1281,PS4,3,2014,Action,1,Ubisoft,168,1.4,1.9,0.11,0.64,4.05,80,80,6.3,2996,Ubisoft Montreal,164,M,2,HIGH,3
Tekken Tag Tournament,3750,PS2,13,2000,Fighting,8,Namco Bandai Games,0,1.68,1.51,0.51,0.35,4.05,85,25,8.5,117,Namco,1098,T,0,HIGH,3
Far Cry 4,846,PS4,3,2014,Shooter,3,Ubisoft,168,1.13,2.18,0.1,0.63,4.04,85,83,7.7,1653,Ubisoft Montreal,164,M,2,HIGH,3
Left 4 Dead 2,3999,X360,15,2009,Shooter,3,Electronic Arts,126,2.67,0.87,0.05,0.38,3.97,89,76,8.6,681,Valve Software,798,M,2,HIGH,3
The Witcher 3: Wild Hunt,1310,PS4,3,2015,Role-Playing,4,Namco Bandai Games,0,1.02,2.13,0.23,0.59,3.97,92,79,9.2,10179,CD Projekt Red Studio,763,M,2,HIGH,3
Assassin's Creed: Unity,3259,PS4,3,2014,Action,1,Ubisoft,168,1.19,2.07,0.08,0.62,3.96,70,40,4.9,2050,Ubisoft Ubisoft Montreal,774,M,2,HIGH,3
Batman: Arkham Knight,4250,PS4,3,2015,Action,1,Warner Bros. Interactive Entertainment,69,1.53,1.69,0.1,0.64,3.95,87,89,7.6,2679,Rocksteady Studios,380,M,2,HIGH,3
The Legend of Zelda: Skyward Sword,2884,Wii,7,2011,Action,1,Nintendo,156,2.03,1.16,0.37,0.38,3.95,93,81,8,1958,Nintendo,1264,E10+,3,HIGH,3
Fallout 3,2557,PS3,14,2008,Role-Playing,4,Bethesda Softworks,189,2.15,1.13,0.07,0.59,3.94,90,57,8,910,Bethesda Game Studios,121,M,2,HIGH,3
Professor Layton and the Diabolical Box,1742,DS,11,2007,Puzzle,12,Nintendo,156,0.9,1.76,0.92,0.37,3.94,84,65,8.8,72,Level 5,968,E10+,3,HIGH,3
EA Sports Active,3812,Wii,7,2009,Sports,2,Electronic Arts,126,2.09,1.35,0.06,0.4,3.9,81,27,8.7,39,EA Canada,538,E,1,HIGH,3
Tony Hawk's Underground,3185,PS2,13,2003,Sports,2,Activision,176,2.29,1.17,0.01,0.42,3.9,90,38,8.7,121,Neversoft Entertainment,641,T,0,HIGH,3
Monster Hunter 4 Ultimate,3956,3DS,16,2014,Role-Playing,4,Nintendo,156,0.68,0.48,2.62,0.11,3.89,86,80,8.7,348,Capcom,63,T,0,HIGH,3
The Elder Scrolls V: Skyrim,2906,PC,0,2011,Role-Playing,4,Bethesda Softworks,189,1.16,2.12,0,0.6,3.88,94,32,8.1,9073,Bethesda Game Studios,121,M,2,HIGH,3
NBA 2K16,113,PS4,3,2015,Sports,2,Take Two Interactive,21,2.49,0.66,0.03,0.69,3.88,87,51,6.7,364,Visual Concepts,261,E10+,3,HIGH,3
Tekken 5,559,PS2,13,2005,Fighting,8,Namco Bandai Games,0,0.93,1.94,0.31,0.7,3.87,88,62,8.6,229,Namco,1098,T,0,HIGH,3
MotorStorm,4106,PS3,14,2006,Racing,5,Sony Computer Entertainment,34,1.53,1.6,0.06,0.67,3.87,84,9,7.4,220,Evolution Studios,634,T,0,HIGH,3
World Soccer Winning Eleven 8 International,947,PS2,13,2004,Sports,2,Konami Digital Entertainment,22,0.16,1.89,1.12,0.68,3.85,91,26,9.1,38,KCET,256,E,1,HIGH,3
Sports Champions,2309,PS3,14,2010,Sports,2,Sony Computer Entertainment,34,2.13,1.12,0.1,0.5,3.84,76,64,7.9,104,SCEA Zindagi Games,1227,E10+,3,HIGH,3
Call of Duty: Ghosts,1698,PS4,3,2013,Shooter,3,Activision,176,1.78,1.43,0.05,0.57,3.83,78,49,3.7,1564,Infinity Ward,975,M,2,HIGH,3
Flash Focus: Vision Training in Minutes a Day,613,DS,11,2007,Misc,7,Nintendo,156,0.86,1.56,1.05,0.35,3.83,59,22,4,4,Nintendo Namco Bandai Games,1280,E,1,HIGH,3
Tom Clancy's The Division,429,PS4,3,2016,Shooter,3,Ubisoft,168,1.35,1.7,0.15,0.6,3.8,80,64,7,2219,Massive Entertainment,970,M,2,HIGH,3
Big Brain Academy: Wii Degree,445,Wii,7,2007,Misc,7,Nintendo,156,1.05,1.91,0.41,0.42,3.79,68,33,6.9,39,Nintendo,1264,E,1,HIGH,3
LEGO Indiana Jones: The Original Adventures,3839,X360,15,2008,Action,1,Activision,176,2.4,1.01,0,0.36,3.76,77,60,7.5,66,Traveller's Tales,179,E10+,3,HIGH,3
The Sims: Unleashed,4023,PC,0,2002,Simulation,9,Electronic Arts,126,2.03,1.56,0,0.17,3.76,79,21,8,29,Maxis,178,T,0,HIGH,3
Harry Potter and the Sorcerer's Stone,863,PS,8,2001,Action,1,Electronic Arts,126,1.37,2,0.14,0.22,3.73,64,11,7.5,41,Argonaut Games,504,E,1,HIGH,3
Super Paper Mario,1855,Wii,7,2007,Platform,6,Nintendo,156,1.95,0.86,0.59,0.31,3.71,85,56,7.9,417,Intelligent Systems,1024,E,1,HIGH,3
Spyro: Year of the Dragon,3668,PS,8,2000,Platform,6,Sony Computer Entertainment,34,1.93,1.58,0,0.19,3.71,91,15,8.8,207,Insomniac Games,567,E,1,HIGH,3
Assassin's Creed IV: Black Flag,2692,PS3,14,2013,Action,1,Ubisoft,168,1.33,1.68,0.13,0.57,3.71,88,36,8.1,840,Ubisoft,855,M,2,HIGH,3
FIFA Soccer 2005,1116,PS2,13,2004,Sports,2,Electronic Arts,126,0.58,2.48,0.04,0.59,3.7,81,27,7.6,56,EA Canada,538,E,1,HIGH,3
Tony Hawk's Pro Skater 4,1169,PS2,13,2002,Sports,2,Activision,176,2.13,1.18,0.01,0.35,3.67,94,27,8.5,128,Neversoft Entertainment,641,T,0,HIGH,3
MySims,1650,DS,11,2007,Simulation,9,Electronic Arts,126,1.58,1.59,0.08,0.41,3.66,67,15,7.3,13,TOSE,155,E,1,HIGH,3
Midnight Club 3: DUB Edition,3864,PSP,1,2005,Racing,5,Take Two Interactive,21,1.65,1.21,0,0.79,3.65,74,34,8.4,31,Rockstar Leeds,787,E10+,3,HIGH,3
SOCOM: U.S. Navy SEALs,431,PS2,13,2002,Shooter,3,Sony Computer Entertainment,34,2.53,0.81,0.06,0.24,3.65,82,42,7.9,82,Zipper Interactive,289,M,2,HIGH,3
Jak and Daxter: The Precursor Legacy,2907,PS2,13,2001,Platform,6,Sony Computer Entertainment,34,2.08,1.09,0.15,0.33,3.64,90,35,8.7,312,Naughty Dog,12,E,1,HIGH,3
Pro Evolution Soccer 2008,2920,PS2,13,2007,Sports,2,Konami Digital Entertainment,22,0.05,0,0.64,2.93,3.63,82,10,7.9,38,Konami,489,E,1,HIGH,3
Resident Evil 4,4014,PS2,13,2005,Action,1,Capcom,261,2.08,0.83,0.46,0.25,3.62,96,38,8.9,1013,Capcom,63,M,2,HIGH,3
Guitar Hero: World Tour,819,Wii,7,2008,Misc,7,Activision,176,2.32,0.96,0,0.34,3.62,86,18,7.6,71,Vicarious Visions,312,T,0,HIGH,3
FIFA Soccer 10,1045,PS3,14,2009,Sports,2,Electronic Arts,126,0.6,2.45,0.05,0.52,3.62,91,56,7.6,203,EA Sports,856,E,1,HIGH,3
Star Wars: Battlefront,3105,PS2,13,2004,Shooter,3,LucasArts,37,1.93,1.22,0.03,0.44,3.61,82,36,8.7,142,Pandemic Studios,517,T,0,HIGH,3
The Simpsons: Road Rage,2210,PS2,13,2001,Racing,5,Electronic Arts,126,2.02,1.17,0,0.42,3.61,64,23,7.7,32,Fox Interactive,1195,T,0,HIGH,3
Luigi's Mansion,867,GC,4,2001,Action,1,Nintendo,156,2.38,0.67,0.46,0.1,3.6,78,34,8.5,161,Nintendo,1264,E,1,HIGH,3
Battlefield 4,2423,PS4,3,2013,Shooter,3,Electronic Arts,126,1.35,1.55,0.17,0.51,3.59,85,18,6.9,1580,EA DICE,122,M,2,HIGH,3
Star Wars: Battlefront II,3707,PS2,13,2005,Shooter,3,LucasArts,37,2.18,1.02,0.03,0.37,3.59,84,30,9,268,Pandemic Studios,517,T,0,HIGH,3
Cooking Mama 2: Dinner With Friends,1954,DS,11,2007,Simulation,9,505 Games,25,1.6,1.49,0.1,0.39,3.58,70,39,8,9,Office Create,106,E,1,HIGH,3
Grand Theft Auto: Liberty City Stories,165,PS2,13,2006,Action,1,Take Two Interactive,21,1.56,1.4,0.07,0.5,3.54,78,49,7.8,112,Rockstar Leeds,787,M,2,HIGH,3
The Getaway,3440,PS2,13,2002,Action,1,Sony Computer Entertainment,34,1.23,1.77,0.05,0.49,3.54,72,49,6.8,88,Team Soho,377,M,2,HIGH,3
James Bond 007: Agent Under Fire,1307,PS2,13,2001,Shooter,3,Electronic Arts,126,1.9,1.13,0.1,0.41,3.53,72,27,7.9,48,EA Redwood Shores,839,T,0,HIGH,3
FIFA Soccer 11,3317,X360,15,2010,Sports,2,Electronic Arts,126,0.71,2.39,0.02,0.4,3.52,88,66,7.5,155,EA Sports,856,E,1,HIGH,3
Left 4 Dead,2268,X360,15,2008,Shooter,3,Electronic Arts,126,2.66,0.49,0.05,0.3,3.51,89,67,7.9,1309,Certain Affinity,771,M,2,HIGH,3
Assassin's Creed: Unity,3259,XOne,5,2014,Action,1,Ubisoft,168,2.27,0.9,0,0.33,3.5,72,59,4.1,1005,Ubisoft Ubisoft Montreal,774,M,2,HIGH,3
Resident Evil 5,3851,X360,15,2009,Action,1,Capcom,261,2.11,0.93,0.12,0.34,3.5,83,91,7.5,523,Capcom,63,M,2,HIGH,3
Assassin's Creed: Brotherhood,3493,X360,15,2010,Action,1,Ubisoft,168,2.85,0.38,0.03,0.24,3.49,89,81,8.3,693,Ubisoft Montreal,164,M,2,HIGH,3
FIFA Soccer 2004,2261,PS2,13,2004,Sports,2,Electronic Arts,126,0.59,2.36,0.04,0.51,3.49,84,20,6.4,76,EA Canada,538,E,1,HIGH,3
Battlefield 4,2423,PS3,14,2013,Shooter,3,Electronic Arts,126,1.3,1.42,0.27,0.5,3.49,80,14,5.8,579,EA DICE,122,M,2,HIGH,3
Batman: Arkham Asylum,4093,X360,15,2009,Action,1,Eidos Interactive,259,2.2,0.95,0.02,0.31,3.48,92,78,8.7,1080,Rocksteady Studios,380,T,0,HIGH,3
Battlefield 4,2423,X360,15,2013,Shooter,3,Electronic Arts,126,2.15,1.01,0.02,0.31,3.48,79,21,5.6,542,EA DICE,122,M,2,HIGH,3
Battlefield: Bad Company 2,2329,X360,15,2010,Shooter,3,Electronic Arts,126,2.1,1.01,0.04,0.32,3.47,88,75,8.6,869,EA DICE,122,M,2,HIGH,3
Guitar Hero: On Tour,2711,DS,11,2008,Misc,7,Activision,176,2.1,1.01,0.01,0.35,3.46,71,70,8.8,29,Vicarious Visions,312,E10+,3,HIGH,3
Clubhouse Games,2662,DS,11,2006,Misc,7,Nintendo,156,0.59,1.79,0.73,0.34,3.45,83,30,8.4,28,Agenda,1015,E,1,HIGH,3
Borderlands,3437,X360,15,2009,Shooter,3,Take Two Interactive,21,2.4,0.71,0.03,0.29,3.44,84,83,8.2,715,Gearbox Software,863,M,2,HIGH,3
Tekken 4,1088,PS2,13,2002,Fighting,8,Namco Bandai Games,0,1.55,1.27,0.33,0.29,3.44,79,23,8.3,126,Namco,1098,T,0,HIGH,3
Grand Theft Auto 2,1849,PS,8,1998,Action,1,Take Two Interactive,21,1.13,2.07,0,0.22,3.42,70,15,8,67,DMA Design,610,T,0,HIGH,3
Metal Gear Solid V: The Phantom Pain,1658,PS4,3,2015,Action,1,Konami Digital Entertainment,22,1.09,1.36,0.49,0.48,3.41,93,86,8.2,3943,Kojima Productions Moby Dick Studio,930,M,2,HIGH,3
Spider-Man 2,570,PS2,13,2004,Action,1,Activision,176,1.75,1.2,0.02,0.43,3.41,80,50,8.9,106,Treyarch,1245,T,0,HIGH,3
FIFA Soccer 2003,1518,PS2,13,2002,Sports,2,Electronic Arts,126,0.46,2.28,0.05,0.61,3.4,88,15,6.7,35,EA Canada,538,E,1,HIGH,3
LittleBigPlanet 2,3364,PS3,14,2011,Platform,6,Sony Computer Entertainment,34,1.83,1.05,0.06,0.46,3.39,91,86,8.4,657,Media Molecule,724,E,1,HIGH,3
Crash Bash,1639,PS,8,2000,Misc,7,Sony Computer Entertainment,34,1.56,1.47,0.19,0.17,3.39,68,12,8.2,99,Eurocom Entertainment Software,166,E,1,HIGH,3
Assassin's Creed Syndicate,128,PS4,3,2015,Action,1,Ubisoft,168,0.81,1.99,0.07,0.52,3.39,76,86,6.8,1319,Ubisoft Quebec,1213,M,2,HIGH,3
LEGO Batman: The Videogame,3046,X360,15,2008,Action,1,Warner Bros. Interactive Entertainment,69,2.04,1.02,0,0.32,3.38,76,49,7.9,75,Traveller's Tales,179,E10+,3,HIGH,3
Destiny,449,XOne,5,2014,Shooter,3,Activision,176,2.14,0.92,0,0.31,3.37,75,11,5.5,1735,Bungie Software Bungie,1250,T,0,HIGH,3
Far Cry 3,1388,PS3,14,2012,Shooter,3,Ubisoft,168,0.88,1.7,0.1,0.67,3.35,90,32,8.5,1041,Ubisoft Montreal,164,M,2,HIGH,3
James Bond 007: Nightfire,1963,PS2,13,2002,Shooter,3,Electronic Arts,126,1.45,1.29,0.12,0.46,3.33,77,20,8.5,66,Eurocom Entertainment Software,166,T,0,HIGH,3
Star Wars Episode III: Revenge of the Sith,2908,PS2,13,2005,Action,1,LucasArts,37,1.47,1.39,0.03,0.43,3.32,60,34,7.2,82,Double Helix Games,524,T,0,HIGH,3
The Legend of Zelda: Spirit Tracks,994,DS,11,2009,Action,1,Nintendo,156,1.4,0.91,0.74,0.26,3.31,87,75,7.8,228,Nintendo,1264,E10+,3,HIGH,3
Max Payne,1584,PS2,13,2001,Shooter,3,Take Two Interactive,21,1.99,1.05,0.05,0.22,3.31,80,21,8.5,86,Rockstar Toronto,720,M,2,HIGH,3
Assassin's Creed IV: Black Flag,2692,X360,15,2013,Action,1,Ubisoft,168,1.9,1.11,0.01,0.29,3.3,86,35,7.9,701,Ubisoft,855,M,2,HIGH,3
The Lord of the Rings: The Return of the King,4172,PS2,13,2003,Action,1,Electronic Arts,126,1.5,1.28,0.05,0.46,3.28,85,31,8.7,105,EA Games,527,T,0,HIGH,3
Gears of War: Ultimate Edition,4272,XOne,5,2015,Shooter,3,Microsoft Game Studios,14,2.61,0.33,0,0.34,3.28,82,74,7.5,563,Splash Damage The Coalition,193,M,2,HIGH,3
True Crime: Streets of LA,3796,PS2,13,2003,Action,1,Activision,176,1.89,1.05,0.02,0.31,3.27,77,39,8,94,Luxoflux Inc.,81,M,2,HIGH,3
Professor Layton and the Unwound Future,1690,DS,11,2008,Puzzle,12,Nintendo,156,0.6,1.57,0.82,0.27,3.26,86,62,9.2,111,Level 5,968,E10+,3,HIGH,3
FIFA 16,4226,XOne,5,2015,Sports,2,Electronic Arts,126,0.89,2.12,0,0.24,3.25,84,45,4.4,459,EA Sports,856,E,1,HIGH,3
Wii Music,3962,Wii,7,2008,Misc,7,Nintendo,156,1.35,1.11,0.46,0.32,3.25,63,43,4.6,116,Nintendo,1264,E,1,HIGH,3
Madden NFL 16,1441,PS4,3,2015,Sports,2,Electronic Arts,126,2.34,0.3,0,0.6,3.24,83,37,5.9,180,EA Sports,856,E,1,HIGH,3
Gran Turismo 6,1733,PS3,14,2013,Racing,5,Sony Computer Entertainment,34,0.72,1.67,0.4,0.44,3.23,81,81,7.7,758,Polyphony Digital,550,E,1,HIGH,3
Halo: The Master Chief Collection,1331,XOne,5,2014,Shooter,3,Microsoft Game Studios,14,1.91,1,0.03,0.29,3.23,85,69,7.2,1267,343 Industries,919,M,2,HIGH,3
Super Mario Maker,1645,WiiU,9,2015,Platform,6,Nintendo,156,1.18,0.89,0.94,0.2,3.21,88,85,8.7,691,Nintendo,1264,E,1,HIGH,3
God of War: Chains of Olympus,3498,PSP,1,2008,Action,1,Sony Computer Entertainment,34,1.48,1,0.04,0.66,3.18,91,79,8.6,565,Ready at Dawn,596,M,2,HIGH,3
Enter the Matrix,3269,PS2,13,2003,Action,1,Atari,229,1.78,1.12,0.09,0.19,3.18,62,30,8.1,137,Shiny Entertainment,133,T,0,HIGH,3
Crisis Core: Final Fantasy VII,3013,PSP,1,2007,Role-Playing,4,Square Enix,127,1.35,0.59,0.8,0.43,3.18,83,67,8,463,Square Enix,921,T,0,HIGH,3
Dance Central,2088,X360,15,2010,Misc,7,MTV Games,89,2.15,0.76,0.01,0.26,3.17,82,63,7.6,85,Harmonix Music Systems,1009,T,0,HIGH,3
L.A. Noire,2625,PS3,14,2011,Adventure,11,Take Two Interactive,21,1.27,1.29,0.12,0.49,3.17,89,78,7.7,1010,Team Bondi,1200,M,2,HIGH,3
Ace Combat 04: Shattered Skies,4248,PS2,13,2001,Simulation,9,Sony Computer Entertainment Europe,153,2.06,0.56,0.38,0.17,3.17,89,22,9.1,95,Namco,1098,E,1,HIGH,3
Animal Crossing,2939,GC,4,2001,Simulation,9,Nintendo,156,1.92,0.16,0.99,0.09,3.15,87,42,8.9,137,Nintendo,1264,E,1,HIGH,3
FIFA Soccer 08,299,PS2,13,2007,Sports,2,Electronic Arts,126,0.68,0,0,2.46,3.14,83,12,6.5,36,EA Canada,538,E,1,HIGH,3
Spider-Man,338,PS,8,2000,Action,1,Activision,176,1.7,1.25,0.02,0.16,3.13,87,19,9,107,Neversoft Entertainment,641,E,1,HIGH,3
Mario Party 9,679,Wii,7,2012,Misc,7,Nintendo,156,1.06,1.09,0.76,0.22,3.13,73,45,6.8,155,Nd Cube,510,E,1,HIGH,3
Sonic Rush,3049,DS,11,2005,Platform,6,Sega,147,1.21,1.56,0.06,0.29,3.12,82,43,8.5,101,Dimps Corporation Sonic Team,654,E,1,HIGH,3
Rhythm Heaven,1115,DS,11,2008,Misc,7,Nintendo,156,0.55,0.5,1.93,0.13,3.11,83,48,9,63,Nintendo,1264,E,1,HIGH,3
Fallout: New Vegas,3620,PS3,14,2010,Role-Playing,4,Bethesda Softworks,189,1.52,1.03,0.1,0.46,3.11,82,57,7.8,492,Obsidian Entertainment,693,M,2,HIGH,3
Personal Trainer: Cooking,2831,DS,11,2006,Misc,7,Nintendo,156,0.9,1,1.03,0.17,3.11,81,12,7.8,10,Indies Zero,151,E,1,HIGH,3
The Elder Scrolls IV: Oblivion,475,PS3,14,2007,Role-Playing,4,Ubisoft,168,1.69,0.85,0.14,0.43,3.1,93,45,8,604,4J Studios,572,M,2,HIGH,3
The Legend of Zelda: A Link Between Worlds,103,3DS,16,2013,Action,1,Nintendo,156,1.4,1.01,0.46,0.23,3.1,91,81,8.9,1057,Nintendo,1264,E,1,HIGH,3
Resident Evil 6,2498,PS3,14,2012,Shooter,3,Capcom,261,0.88,0.94,0.88,0.4,3.1,74,34,5.4,1304,Capcom,63,M,2,HIGH,3
Mass Effect 2,91,X360,15,2010,Role-Playing,4,Electronic Arts,126,1.99,0.81,0.03,0.27,3.1,96,98,8.9,3143,BioWare,1023,M,2,HIGH,3
Dragon Ball Z: Budokai,1602,PS2,13,2002,Fighting,8,Atari,229,2.17,0.28,0.55,0.08,3.09,67,28,7.9,71,Dimps Corporation,127,T,0,HIGH,3
Madden NFL 2002,4341,PS2,13,2001,Sports,2,Electronic Arts,126,2.5,0.16,0.01,0.42,3.08,94,23,7.9,46,EA Sports,856,E,1,HIGH,3
The Sims: Vacation,3193,PC,0,2002,Simulation,9,Electronic Arts,126,1.72,1.21,0,0.14,3.07,75,18,7.8,22,Maxis,178,T,0,HIGH,3
LEGO Batman: The Videogame,3046,Wii,7,2008,Action,1,Warner Bros. Interactive Entertainment,69,1.8,0.97,0,0.29,3.06,74,17,7.9,22,Traveller's Tales,179,E10+,3,HIGH,3
Animal Crossing: Happy Home Designer,1709,3DS,16,2015,Simulation,9,Nintendo,156,0.51,1.02,1.4,0.12,3.05,66,60,6.9,106,Nintendo,1264,E,1,HIGH,3
The Sims 4,2300,PC,0,2014,Simulation,9,Electronic Arts,126,1,1.82,0,0.23,3.05,70,74,3.9,2057,Maxis,178,T,0,HIGH,3
Borderlands 2,2178,X360,15,2012,Shooter,3,Take Two Interactive,21,1.89,0.88,0.04,0.25,3.05,89,59,8.2,892,Gearbox Software,863,M,2,HIGH,3
LEGO Batman: The Videogame,3046,DS,11,2008,Action,1,Warner Bros. Interactive Entertainment,69,1.75,1.01,0,0.29,3.05,72,16,8,16,TT Fusion,986,E10+,3,HIGH,3
Kung Fu Panda,3467,X360,15,2008,Action,1,Activision,176,1.91,0.84,0,0.29,3.04,75,42,7.4,32,Luxoflux Inc.,81,E10+,3,HIGH,3
Mass Effect 3,656,X360,15,2012,Role-Playing,4,Electronic Arts,126,1.94,0.84,0.03,0.24,3.04,93,74,5.8,3725,BioWare,1023,M,2,HIGH,3
Heavy Rain,1501,PS3,14,2010,Adventure,11,Sony Computer Entertainment,34,1.29,1.21,0.06,0.47,3.03,87,107,7.7,2759,Quantic Dream,107,M,2,HIGH,3
Saints Row 2,2857,X360,15,2008,Action,1,THQ,41,1.94,0.79,0.02,0.28,3.03,81,75,8.1,307,Volition Inc.,767,M,2,HIGH,3
Tom Clancy's Splinter Cell,3544,XB,2,2002,Action,1,Ubisoft,168,1.85,1.04,0,0.13,3.02,93,46,8.5,121,Ubisoft Montreal,164,T,0,HIGH,3
FIFA 14,3173,PS4,3,2013,Sports,2,Electronic Arts,126,0.61,1.85,0.11,0.44,3.01,87,26,6.3,616,EA Canada,538,E,1,HIGH,3
Killzone 2,3020,PS3,14,2009,Shooter,3,Sony Computer Entertainment,34,1.4,1.06,0.08,0.47,3.01,91,94,8.1,1505,Guerrilla,153,M,2,HIGH,3
Far Cry 3,1388,X360,15,2012,Shooter,3,Ubisoft,168,1.38,1.32,0.02,0.28,3,91,39,8.6,1247,Ubisoft Montreal,164,M,2,VERY HIGH,4
Epic Mickey,2863,Wii,7,2010,Platform,6,Disney Interactive Studios,124,2.04,0.63,0.12,0.22,3,73,78,7,131,Junction Point,827,E,1,VERY HIGH,4
NBA 2K13,1655,X360,15,2012,Sports,2,Take Two Interactive,21,2.6,0.2,0.01,0.19,3,88,41,7.2,131,Visual Concepts,261,E,1,VERY HIGH,4
Dragon Ball Z: Budokai Tenkaichi 3,51,PS2,13,2007,Fighting,8,Atari,229,1.15,0,0.76,1.09,3,73,24,9.2,173,Spike Namco Bandai Games,740,T,0,VERY HIGH,4
The Sims: Livin Large,4209,PC,0,2000,Misc,7,Electronic Arts,126,1.67,1.18,0,0.13,2.99,82,23,6.6,20,Maxis,178,T,0,MEDIUM,2
World Soccer Winning Eleven 6 International,2862,PS2,13,2002,Sports,2,Konami Digital Entertainment,22,0.12,1.26,1.16,0.45,2.99,93,24,9.1,65,KCET,256,E,1,MEDIUM,2
Devil May Cry,3986,PS2,13,2001,Action,1,Capcom,261,1.36,0.86,0.64,0.13,2.99,94,37,8.5,466,Capcom,63,M,2,MEDIUM,2
Star Wars: The Old Republic,1868,PC,0,2011,Role-Playing,4,Electronic Arts,126,1.58,1.01,0,0.38,2.96,85,73,5.9,2748,LucasArts BioWare,952,T,0,MEDIUM,2
Middle-Earth: Shadow of Mordor,1186,PS4,3,2014,Action,1,Warner Bros. Interactive Entertainment,69,1.01,1.43,0.05,0.47,2.96,84,85,8.1,1886,Monolith Productions,848,M,2,MEDIUM,2
Sonic Heroes,1601,PS2,13,2003,Platform,6,Sega,147,1.04,1.37,0.06,0.49,2.96,64,29,7.8,94,Sonic Team,737,E,1,MEDIUM,2
Hitman 2: Silent Assassin,2821,PS2,13,2002,Action,1,Eidos Interactive,259,1.36,1.15,0.04,0.41,2.96,85,19,7.8,78,Io Interactive,1083,M,2,MEDIUM,2
Titanfall,3835,XOne,5,2014,Shooter,3,Electronic Arts,126,1.84,0.8,0.04,0.27,2.95,86,68,6.4,2658,Respawn Entertainment,555,M,2,MEDIUM,2
Battlefield: Bad Company 2,2329,PS3,14,2010,Shooter,3,Electronic Arts,126,1.33,1.1,0.08,0.44,2.95,88,59,8.5,572,EA DICE,122,M,2,MEDIUM,2
SOCOM II: U.S. Navy SEALs,739,PS2,13,2003,Shooter,3,Sony Computer Entertainment,34,2.22,0.51,0.06,0.15,2.94,87,42,9,93,Zipper Interactive,289,M,2,MEDIUM,2
Pac-Man Collection,314,GBA,6,2001,Puzzle,12,Atari,229,2.07,0.77,0.05,0.05,2.94,79,13,7.8,4,Mass Media,1170,E,1,MEDIUM,2
Street Fighter IV,4162,X360,15,2009,Fighting,8,Capcom,261,1.82,0.7,0.15,0.26,2.94,93,77,7.3,292,Capcom,63,T,0,MEDIUM,2
inFAMOUS,418,PS3,14,2009,Action,1,Sony Computer Entertainment,34,1.76,0.68,0.12,0.37,2.93,85,98,8.3,1172,Sucker Punch,770,T,0,MEDIUM,2
Kirby Super Star Ultra,1488,DS,11,2008,Platform,6,Nintendo,156,1.55,0.04,1.19,0.15,2.92,76,40,8.8,76,HAL Labs,1289,E,1,MEDIUM,2
Call of Duty: Ghosts,1698,XOne,5,2013,Shooter,3,Activision,176,1.88,0.77,0,0.27,2.92,78,7,4.3,700,Infinity Ward,975,M,2,MEDIUM,2
Mass Effect,1153,X360,15,2007,Role-Playing,4,Microsoft Game Studios,14,1.83,0.79,0.03,0.27,2.91,91,74,8.7,1692,BioWare,1023,M,2,MEDIUM,2
Sonic Mega Collection Plus,2635,PS2,13,2004,Misc,7,Sega,147,1.54,1.14,0,0.22,2.9,73,21,8.6,30,Sonic Team,737,E,1,MEDIUM,2
World Soccer Winning Eleven 7 International,2760,PS2,13,2003,Sports,2,Konami Digital Entertainment,22,0.08,1.24,1.13,0.45,2.9,93,28,9,45,KCET,256,E,1,MEDIUM,2
Sega Superstars Tennis,895,X360,15,2008,Sports,2,Sega,147,1.75,0.86,0,0.28,2.89,67,45,6.8,18,Sumo Digital,502,E10+,3,MEDIUM,2
Hot Shots Golf 3,3425,PS2,13,2001,Sports,2,Sony Computer Entertainment,34,0.99,0.32,1.38,0.2,2.89,85,30,8.9,16,Clap Hanz,319,E,1,MEDIUM,2
Cooking Mama: Cook Off,2231,Wii,7,2007,Simulation,9,505 Games,25,1.41,1.12,0.05,0.3,2.89,61,37,5.3,23,OfficeCreate,679,E,1,MEDIUM,2
Call of Duty: Finest Hour,4381,PS2,13,2004,Shooter,3,Activision,176,1.51,1.12,0.01,0.24,2.89,76,49,7.7,69,Spark Unlimited,201,T,0,MEDIUM,2
WarioWare: Smooth Moves,4274,Wii,7,2006,Puzzle,12,Nintendo,156,0.86,1.04,0.73,0.26,2.89,83,61,7.4,179,Intelligent Systems,1024,E10+,3,MEDIUM,2
Madden NFL 13,1671,X360,15,2012,Sports,2,Electronic Arts,126,2.53,0.15,0,0.17,2.86,81,36,5.8,179,EA Tiburon,397,E,1,MEDIUM,2
The Elder Scrolls III: Morrowind,2403,XB,2,2002,Role-Playing,4,Ubisoft,168,2.09,0.63,0.03,0.11,2.86,87,34,8.7,111,Bethesda Softworks,307,T,0,MEDIUM,2
Assassin's Creed IV: Black Flag,2692,PS4,3,2013,Action,1,Ubisoft,168,1.07,1.31,0.06,0.42,2.85,83,29,7.8,1530,Ubisoft,855,M,2,MEDIUM,2
Mortal Kombat,207,PS3,14,2011,Fighting,8,Warner Bros. Interactive Entertainment,69,1.98,0.53,0,0.34,2.84,84,60,8.4,494,NetherRealm Studios,43,M,2,MEDIUM,2
Madden NFL 10,4154,X360,15,2009,Sports,2,Electronic Arts,126,2.52,0.09,0,0.22,2.83,85,58,6.1,90,EA Tiburon,397,E,1,MEDIUM,2
BioShock,1200,X360,15,2007,Shooter,3,Take Two Interactive,21,1.65,0.85,0.05,0.28,2.83,96,88,8.9,2249,Irrational Games 2K Marin,6,M,2,MEDIUM,2
Metroid Prime,3774,GC,4,2002,Shooter,3,Nintendo,156,1.96,0.67,0.1,0.09,2.82,97,70,9.3,747,Retro Studios,1167,T,0,MEDIUM,2
Assassin's Creed: Brotherhood,3493,PS3,14,2010,Action,1,Ubisoft,168,1.87,0.55,0.11,0.29,2.82,90,59,8.2,791,Ubisoft Montreal,164,M,2,MEDIUM,2
Medal of Honor,682,PS3,14,2010,Shooter,3,Electronic Arts,126,1.28,1.04,0.07,0.42,2.81,75,56,7.5,286,EA DICE Danger Close,535,M,2,MEDIUM,2
inFAMOUS: Second Son,1834,PS4,3,2014,Action,1,Sony Computer Entertainment,34,1.28,0.98,0.07,0.46,2.79,80,90,7.9,2944,Sucker Punch,770,T,0,MEDIUM,2
NBA Street,646,PS2,13,2001,Sports,2,Electronic Arts,126,2.19,0.22,0,0.38,2.79,89,22,8.6,39,NuFX,495,E,1,MEDIUM,2
Jak II,3854,PS2,13,2003,Platform,6,Sony Computer Entertainment,34,1.68,0.74,0,0.36,2.78,87,47,8.2,241,Naughty Dog,12,T,0,MEDIUM,2
Need for Speed: Hot Pursuit,218,PS3,14,2010,Racing,5,Electronic Arts,126,1.05,1.23,0.03,0.47,2.78,89,59,7.2,301,Criterion Games,280,E10+,3,MEDIUM,2
Skylanders: Spyro's Adventure,4310,Wii,7,2011,Action,1,Activision,176,1.35,1.13,0,0.3,2.78,81,11,5.6,31,Toys for Bob,1025,E10+,3,MEDIUM,2
Battlefield 3,905,PC,0,2011,Shooter,3,Electronic Arts,126,0.89,1.43,0,0.46,2.78,89,61,7.5,4926,EA DICE,122,M,2,MEDIUM,2
Mortal Kombat X,2039,PS4,3,2015,Fighting,8,Warner Bros. Interactive Entertainment,69,1.5,0.8,0,0.48,2.78,83,81,7.7,836,Warner Bros. Interactive Entertainment NetherRealm Studios,1220,M,2,MEDIUM,2
The Sims,1134,PS2,13,2003,Simulation,9,Electronic Arts,126,1.41,1.12,0,0.24,2.77,83,33,7.7,46,Edge of Reality,1177,T,0,MEDIUM,2
Killzone 3,1718,PS3,14,2011,Shooter,3,Sony Computer Entertainment,34,1.45,0.86,0.09,0.38,2.77,84,85,7.9,942,Guerrilla,153,M,2,MEDIUM,2
Star Wars: The Force Unleashed,3741,X360,15,2008,Action,1,LucasArts,37,1.74,0.77,0,0.26,2.77,73,74,6.7,389,LucasArts,888,T,0,MEDIUM,2
Yoshi's Island DS,3154,DS,11,2006,Platform,6,Nintendo,156,1.45,0.07,1.1,0.15,2.76,81,42,7.4,67,Artoon,822,E,1,MEDIUM,2
Saints Row: The Third,1168,X360,15,2011,Action,1,THQ,41,1.25,1.14,0.07,0.3,2.76,84,70,7.6,490,Volition Inc.,767,M,2,MEDIUM,2
Tekken 6,4361,PS3,14,2009,Fighting,8,Namco Bandai Games,0,1.2,0.97,0.17,0.42,2.75,79,63,7.4,211,Namco Bandai Games,65,T,0,MEDIUM,2
Sonic and the Secret Rings,3381,Wii,7,2007,Platform,6,Sega,147,1.21,1.19,0.04,0.29,2.73,69,44,6.6,174,Sonic Team,737,E,1,MEDIUM,2
The Legend of Zelda: A Link to the Past,2197,GBA,6,2002,Action,1,Nintendo,156,1.75,0.52,0.33,0.1,2.7,95,30,9.1,314,Capcom,63,E,1,MEDIUM,2
Onimusha: Warlords,1408,PS2,13,2001,Action,1,Virgin Interactive,30,0.99,0.48,1.09,0.14,2.7,86,23,8.2,56,Capcom,63,M,2,MEDIUM,2
L.A. Noire,2625,X360,15,2011,Adventure,11,Take Two Interactive,21,1.52,0.92,0.02,0.24,2.7,89,83,7.8,893,Team Bondi,1200,M,2,MEDIUM,2
Call of Duty 3,2111,X360,15,2006,Shooter,3,Activision,176,1.49,0.92,0.02,0.27,2.7,82,71,6.5,233,Treyarch,1245,T,0,MEDIUM,2
Madden NFL 12,1937,X360,15,2011,Sports,2,Electronic Arts,126,2.42,0.11,0,0.16,2.69,78,55,5.9,94,EA Tiburon,397,E,1,MEDIUM,2
LEGO Star Wars II: The Original Trilogy,834,PS2,13,2006,Action,1,LucasArts,37,1.85,0.64,0.01,0.19,2.69,84,32,9,41,Traveller's Tales,179,E10+,3,MEDIUM,2
Killzone: Shadow Fall,1366,PS4,3,2013,Shooter,3,Sony Computer Entertainment,34,0.89,1.33,0.08,0.39,2.69,73,88,6.8,2102,Guerrilla,153,M,2,MEDIUM,2
Madden NFL 11,3018,X360,15,2010,Sports,2,Electronic Arts,126,2.38,0.12,0,0.18,2.69,84,47,5.7,120,EA Tiburon,397,E,1,MEDIUM,2
Burnout 3: Takedown,3665,PS2,13,2004,Racing,5,Electronic Arts,126,1.23,1.11,0,0.34,2.68,93,52,9.1,271,Criterion Games,280,T,0,MEDIUM,2
Mario vs. Donkey Kong: Mini-Land Mayhem!,2609,DS,11,2010,Puzzle,12,Nintendo,156,1.63,0.51,0.35,0.18,2.67,79,51,7.7,18,Nintendo,1264,E,1,MEDIUM,2
Professor Layton and the Last Specter,904,DS,11,2009,Puzzle,12,Nintendo,156,0.28,1.39,0.68,0.32,2.67,83,58,8.7,52,Level 5,968,E10+,3,MEDIUM,2
Call Of Duty 2: Big Red One,4349,PS2,13,2005,Shooter,3,Activision,176,1.48,0.92,0.01,0.26,2.67,77,39,8.2,69,Treyarch,1245,T,0,MEDIUM,2
Medal of Honor,682,PS,8,1998,Shooter,3,Electronic Arts,126,1.44,1.09,0,0.14,2.67,92,17,8.6,80,Dreamworks Interactive,854,T,0,MEDIUM,2
Fable,1869,XB,2,2004,Role-Playing,4,Microsoft Game Studios,14,1.99,0.58,0,0.09,2.66,85,87,8.5,268,Big Blue Box,189,M,2,MEDIUM,2
Guitar Hero: World Tour,819,X360,15,2008,Misc,7,Activision,176,1.78,0.63,0,0.25,2.66,85,67,6.3,171,Neversoft Entertainment,641,T,0,MEDIUM,2
FIFA 17,622,XOne,5,2016,Sports,2,Electronic Arts,126,0.43,2.05,0,0.17,2.65,84,50,5.5,201,EA Sports EA Vancouver,418,E,1,MEDIUM,2
Tom Clancy's Splinter Cell,3544,PS2,13,2003,Action,1,Ubisoft,168,1.15,1.11,0,0.4,2.65,89,24,7.7,102,Ubisoft Shanghai,707,T,0,MEDIUM,2
Need for Speed: Shift,3268,PS3,14,2009,Racing,5,Electronic Arts,126,0.69,1.4,0.04,0.52,2.65,84,55,6.9,113,Slightly Mad Studios,266,E,1,MEDIUM,2
Medal of Honor Heroes,752,PSP,1,2006,Shooter,3,Electronic Arts,126,0.86,1.11,0.01,0.66,2.65,71,24,7.9,47,Team Fusion,77,T,0,MEDIUM,2
Final Fantasy XIII-2,3301,PS3,14,2011,Role-Playing,4,Square Enix,127,0.78,0.73,0.89,0.23,2.63,79,53,6.6,707,Square Enix,921,T,0,MEDIUM,2
Midnight Club: Street Racing,3027,PS2,13,2000,Racing,5,Take Two Interactive,21,2,0.47,0.02,0.14,2.63,78,18,7.8,21,Angel Studios,962,T,0,MEDIUM,2
Skate 3,4358,X360,15,2010,Sports,2,Electronic Arts,126,1.47,0.93,0,0.24,2.63,80,65,8,127,EA Black Box,452,T,0,MEDIUM,2
ESPN NFL 2K5,2402,PS2,13,2004,Sports,2,Sega,147,2.15,0.12,0,0.36,2.62,90,37,8.2,84,Visual Concepts,261,E,1,MEDIUM,2
Halo Wars,2240,X360,15,2009,Strategy,10,Microsoft Game Studios,14,1.54,0.8,0.04,0.24,2.62,82,92,7.2,454,Ensemble Studios,1139,T,0,MEDIUM,2
NBA 2K12,1896,X360,15,2011,Sports,2,Take Two Interactive,21,2.31,0.14,0.01,0.16,2.62,90,42,7.7,134,Visual Concepts,261,E,1,MEDIUM,2
FIFA Soccer 10,1045,X360,15,2009,Sports,2,Electronic Arts,126,0.59,1.79,0.01,0.23,2.62,90,63,7.5,133,EA Sports,856,E,1,MEDIUM,2
Medal of Honor,682,X360,15,2010,Shooter,3,Electronic Arts,126,1.56,0.8,0.04,0.21,2.61,74,71,6.7,288,Dice Danger Close,817,M,2,MEDIUM,2
Harry Potter and the Chamber of Secrets,1579,PS2,13,2002,Action,1,Electronic Arts,126,0.9,1.22,0.04,0.44,2.61,71,16,7.6,49,Electronic Arts,366,E,1,MEDIUM,2
God of War Collection,3790,PS3,14,2009,Action,1,Sony Computer Entertainment,34,1.7,0.44,0.06,0.4,2.6,91,50,8.7,529,Bluepoint Games,630,M,2,MEDIUM,2
NBA Live 2005,1381,PS2,13,2004,Sports,2,Electronic Arts,126,2.03,0.21,0,0.35,2.59,84,21,8.1,44,EA Canada,538,E,1,MEDIUM,2
Mario Strikers Charged,2568,Wii,7,2007,Sports,2,Nintendo,156,1.05,1.05,0.24,0.24,2.58,79,47,8,124,Next Level Games,299,E10+,3,MEDIUM,2
FIFA Soccer 09,638,PS3,14,2008,Sports,2,Electronic Arts,126,0.48,1.63,0.04,0.43,2.58,87,42,7.5,108,EA Canada,538,E,1,MEDIUM,2
Style Savvy,636,DS,11,2008,Simulation,9,Nintendo,156,0.62,0.82,0.96,0.18,2.58,73,4,7.7,7,syn Sophia,254,E,1,MEDIUM,2
WWE SmackDown vs. RAW 2007,920,PS2,13,2006,Fighting,8,THQ,41,1.4,0.88,0.03,0.26,2.58,80,27,8.6,57,Yuke's,487,T,0,MEDIUM,2
LEGO Star Wars: The Complete Saga,506,X360,15,2007,Action,1,LucasArts,37,1.53,0.81,0,0.24,2.57,80,24,7.4,114,Traveller's Tales,179,E10+,3,MEDIUM,2
Madden NFL 08,1067,PS2,13,2007,Sports,2,Electronic Arts,126,2.14,0.08,0,0.35,2.57,78,11,7.8,17,EA Tiburon,397,E,1,MEDIUM,2
Monster Hunter Freedom 2,1824,PSP,1,2007,Role-Playing,4,Capcom,261,0.37,0.27,1.75,0.18,2.57,72,38,8.7,83,Capcom,63,T,0,MEDIUM,2
Sonic Adventure 2 Battle,1632,GC,4,2001,Platform,6,Sega,147,1.7,0.59,0.21,0.07,2.56,73,28,8.3,179,Sonic Team,737,E,1,MEDIUM,2
Madden NFL 13,1671,PS3,14,2012,Sports,2,Electronic Arts,126,2.11,0.22,0,0.23,2.56,83,22,5.5,101,EA Tiburon,397,E,1,MEDIUM,2
Dragon Age: Origins,1764,X360,15,2009,Role-Playing,4,Electronic Arts,126,1.76,0.55,0.03,0.22,2.56,86,68,7.9,725,BioWare,1023,M,2,MEDIUM,2
Pokémon Colosseum,2544,GC,4,2003,Role-Playing,4,Nintendo,156,1.21,0.57,0.7,0.07,2.54,73,37,8,89,Genius Sonority Inc.,169,E,1,MEDIUM,2
LittleBigPlanet,1524,PSP,1,2009,Platform,6,Sony Computer Entertainment,34,0.64,1.22,0.01,0.67,2.54,87,68,7.8,98,SCE/WWS Media Molecule,665,E10+,3,MEDIUM,2
Madden NFL 09,1910,X360,15,2008,Sports,2,Electronic Arts,126,2.21,0.12,0,0.2,2.53,83,50,7,125,EA Tiburon,397,E,1,MEDIUM,2
Crazy Taxi,1778,PS2,13,2001,Racing,5,Acclaim Entertainment,43,1.13,1.12,0.06,0.22,2.52,80,15,7.9,46,Acclaim Studios Cheltenham,645,T,0,MEDIUM,2
Art Academy,3679,DS,11,2010,Misc,7,Nintendo,156,0.26,1.65,0.33,0.28,2.52,75,15,8,5,Headstrong Games,1232,E,1,MEDIUM,2
NBA 2K14,3653,X360,15,2013,Sports,2,Take Two Interactive,21,2.1,0.19,0,0.23,2.52,87,23,4.9,150,Visual Concepts,261,E,1,MEDIUM,2
Skylanders Giants,1468,Wii,7,2012,Action,1,Activision,176,1.48,0.83,0,0.21,2.52,78,8,7,20,Toys for Bob,1025,E10+,3,MEDIUM,2
Deca Sports,1194,Wii,7,2008,Sports,2,Konami Digital Entertainment,22,1.11,0.85,0.29,0.25,2.5,50,23,5.4,16,CAProduction,476,E,1,MEDIUM,2
Marvel: Ultimate Alliance,4311,X360,15,2006,Role-Playing,4,Activision,176,2.29,0.02,0,0.19,2.5,82,68,7.5,120,Raven Software,628,T,0,MEDIUM,2
Mortal Kombat: Deadly Alliance,1181,PS2,13,2002,Fighting,8,Midway Games,146,1.81,0.52,0,0.15,2.49,79,31,8.8,96,Midway,75,M,2,MEDIUM,2
Game Party,2229,Wii,7,2007,Misc,7,Midway Games,146,1.47,0.77,0,0.24,2.48,25,8,4.3,26,Midway,75,E,1,MEDIUM,2
Bloodborne,868,PS4,3,2015,Action,1,Sony Computer Entertainment,34,1.03,0.81,0.26,0.38,2.48,92,100,8.6,6383,From Software,573,M,2,MEDIUM,2
Mario Party 4,4130,GC,4,2002,Misc,7,Nintendo,156,1.13,0.36,0.92,0.07,2.47,70,26,7.4,74,Hudson,685,E,1,MEDIUM,2
Pure,1991,X360,15,2008,Racing,5,Disney Interactive Studios,124,1.38,0.84,0,0.25,2.47,85,55,7.7,83,Black Rock Studio,370,E,1,MEDIUM,2
Rock Band,1776,X360,15,2007,Misc,7,Electronic Arts,126,1.93,0.33,0,0.21,2.47,92,72,8.2,178,Harmonix Music Systems,1009,T,0,MEDIUM,2
NBA 2K13,1655,PS3,14,2012,Sports,2,Take Two Interactive,21,1.73,0.43,0.05,0.27,2.47,90,26,8,99,Visual Concepts,261,E,1,MEDIUM,2
Saints Row: The Third,1168,PS3,14,2011,Action,1,THQ,41,0.86,1.04,0.18,0.38,2.47,82,50,7.7,384,Volition Inc.,767,M,2,MEDIUM,2
Resistance 2,1407,PS3,14,2008,Shooter,3,Sony Computer Entertainment,34,1.15,0.84,0.1,0.38,2.46,87,79,6.1,1889,Insomniac Games,567,M,2,MEDIUM,2
NBA 2K15,1212,PS4,3,2014,Sports,2,Take Two Interactive,21,1.47,0.54,0.01,0.43,2.45,83,50,7,291,Visual Concepts,261,E,1,MEDIUM,2
Final Fantasy Tactics,266,PS,8,1997,Role-Playing,4,SquareSoft,246,0.93,0.12,1.34,0.06,2.45,83,12,8.2,190,SquareSoft,148,T,0,MEDIUM,2
Midnight Club: Los Angeles,2393,PS3,14,2008,Racing,5,Take Two Interactive,21,1.56,0.53,0.05,0.31,2.45,82,50,8.2,100,Rockstar San Diego,499,T,0,MEDIUM,2
The Sims: Bustin' Out,2786,PS2,13,2003,Simulation,9,Electronic Arts,126,1.07,1.19,0,0.18,2.43,81,26,8.4,42,Maxis,178,T,0,MEDIUM,2
LEGO Harry Potter: Years 1-4,4210,Wii,7,2010,Action,1,Warner Bros. Interactive Entertainment,69,1.28,0.93,0,0.22,2.43,79,13,8,34,Traveller's Tales,179,E10+,3,MEDIUM,2
Call of Duty: Infinite Warfare,672,XOne,5,2016,Shooter,3,Activision,176,1.46,0.74,0,0.22,2.42,78,17,3.1,290,Infinity Ward,975,M,2,MEDIUM,2
Madden NFL 16,1441,XOne,5,2015,Sports,2,Electronic Arts,126,2.08,0.08,0,0.26,2.42,84,23,6.1,124,EA Sports,856,E,1,MEDIUM,2
Tom Clancy's Rainbow Six: Vegas 2,488,X360,15,2008,Shooter,3,Ubisoft,168,1.56,0.6,0.02,0.23,2.42,82,66,7.8,176,Ubisoft Montreal,164,M,2,MEDIUM,2
Need for Speed Carbon: Own the City,1978,PSP,1,2006,Racing,5,Electronic Arts,126,0.87,0.97,0,0.58,2.42,73,14,7.9,39,EA Canada,538,E10+,3,MEDIUM,2
Dragon Ball Z: Budokai 2,4190,PS2,13,2003,Fighting,8,Atari,229,1.63,0.22,0.51,0.06,2.41,66,28,8.2,92,Dimps Corporation,127,T,0,MEDIUM,2
pro evolution soccer 2011,727,PS3,14,2010,Sports,2,Konami Digital Entertainment,22,0.29,1.17,0.54,0.41,2.41,77,40,6.8,85,Konami,489,E,1,MEDIUM,2
ATV Offroad Fury,3619,PS2,13,2001,Racing,5,Sony Computer Entertainment,34,2.07,0.26,0,0.08,2.41,82,16,8.4,53,Rainbow Studios,768,E,1,MEDIUM,2
Need for Speed: ProStreet,1551,PS2,13,2007,Racing,5,Electronic Arts,126,0.69,0,0.04,1.68,2.41,62,11,6.2,34,Black Box,1080,E10+,3,MEDIUM,2
Halo: Combat Evolved Anniversary,4081,X360,15,2011,Shooter,3,Microsoft Game Studios,14,1.44,0.7,0.04,0.22,2.4,82,73,8.1,487,343 Industries,919,M,2,MEDIUM,2
Guitar Hero,2725,PS2,13,2005,Misc,7,RedOctane,231,1.67,0.61,0.03,0.07,2.38,91,65,8.7,173,Harmonix Music Systems,1009,T,0,MEDIUM,2
Madden NFL 11,3018,PS3,14,2010,Sports,2,Electronic Arts,126,2.04,0.15,0,0.2,2.38,83,36,6.1,68,EA Tiburon,397,E,1,MEDIUM,2
Dead Island,2263,X360,15,2011,Action,1,Deep Silver,95,1.48,0.69,0,0.2,2.37,71,75,6.9,627,Techland,633,M,2,MEDIUM,2
Half-Life 2,3924,PC,0,2004,Shooter,3,Vivendi Games,245,2.28,0.02,0.08,0,2.37,96,81,9.1,8665,Valve Software,798,M,2,MEDIUM,2
The Incredibles,3040,PS2,13,2004,Action,1,THQ,41,0.96,1.08,0.04,0.3,2.37,62,36,7.6,22,Heavy Iron Studios,315,T,0,MEDIUM,2
Madden NFL 08,1067,X360,15,2007,Sports,2,Electronic Arts,126,2.18,0.01,0,0.18,2.37,85,46,6.4,108,EA Tiburon,397,E,1,MEDIUM,2
Tony Hawk's Underground 2,3566,PS2,13,2004,Sports,2,Activision,176,1.25,0.86,0.01,0.26,2.37,83,59,8.8,55,Neversoft Entertainment,641,T,0,MEDIUM,2
Zumba Fitness,2494,X360,15,2010,Sports,2,505 Games,25,1.74,0.45,0,0.18,2.37,42,10,5.5,16,Pipeworks Software Inc.,998,E,1,MEDIUM,2
Madden NFL 10,4154,PS3,14,2009,Sports,2,Electronic Arts,126,2.03,0.13,0,0.21,2.37,85,41,6.8,58,EA Tiburon,397,E,1,MEDIUM,2
Midnight Club: Los Angeles,2393,X360,15,2008,Racing,5,Take Two Interactive,21,1.68,0.45,0.01,0.21,2.35,81,66,8.5,142,Rockstar San Diego,499,T,0,MEDIUM,2
Kinect: Disneyland Adventures,1110,X360,15,2011,Misc,7,Microsoft Game Studios,14,1.73,0.43,0.02,0.17,2.35,73,33,2.9,67,Frontier Developments,643,E10+,3,MEDIUM,2
WWE SmackDown vs Raw 2008,3274,PS2,13,2007,Fighting,8,THQ,41,0.92,0,0.01,1.41,2.34,71,11,7.2,31,Yuke's,487,T,0,MEDIUM,2
The Legend of Zelda: Majora's Mask 3D,386,3DS,16,2015,Action,1,Nintendo,156,1.15,0.55,0.47,0.17,2.34,89,82,9,478,GREZZO,661,E10+,3,MEDIUM,2
LEGO Indiana Jones: The Original Adventures,3839,Wii,7,2008,Action,1,LucasArts,37,1.51,0.61,0,0.21,2.34,78,22,6.6,28,Traveller's Tales,179,E10+,3,MEDIUM,2
Resident Evil - Code: Veronica X,2341,PS2,13,2001,Action,1,Capcom,261,1.08,0.7,0.34,0.21,2.34,84,21,8.4,189,Capcom,63,M,2,MEDIUM,2
NBA 2K16,113,XOne,5,2015,Sports,2,Take Two Interactive,21,1.95,0.15,0,0.24,2.34,86,14,6.2,115,Visual Concepts,261,E10+,3,MEDIUM,2
Kinect Sports: Season Two,3094,X360,15,2011,Sports,2,Microsoft Game Studios,14,1.38,0.72,0.02,0.22,2.34,66,46,6.5,39,Rare Ltd. BigPark,945,E,1,MEDIUM,2
James Bond 007: Everything or Nothing,3093,PS2,13,2004,Shooter,3,Electronic Arts,126,0.85,1.06,0.09,0.32,2.31,84,42,9.1,51,EA Redwood Shores,839,T,0,MEDIUM,2
Need For Speed: High Stakes,2961,PS,8,1999,Racing,5,Electronic Arts,126,1.58,0.64,0,0.09,2.31,86,14,8.5,28,EA Canada,538,E,1,MEDIUM,2
Guild Wars 2,3031,PC,0,2012,Action,1,NCSoft,194,0.96,1.07,0,0.27,2.31,90,69,7.9,2954,ArenaNet,1252,T,0,MEDIUM,2
Paper Mario: Sticker Star,1703,3DS,16,2012,Role-Playing,4,Nintendo,156,1.12,0.41,0.64,0.14,2.3,75,69,5.6,382,Intelligent Systems,1024,E,1,MEDIUM,2
Batman: Arkham Origins,2475,PS3,14,2013,Action,1,Warner Bros. Interactive Entertainment,69,1.07,0.8,0.04,0.38,2.29,76,46,7.7,668,WB Games Montreal,984,T,0,MEDIUM,2
LEGO Star Wars: The Complete Saga,506,PS3,14,2007,Action,1,LucasArts,37,1.02,0.9,0,0.36,2.29,80,18,6.7,87,Traveller's Tales,179,E10+,3,MEDIUM,2
Need for Speed Underground 2,2153,XB,2,2004,Racing,5,Electronic Arts,126,1.38,0.8,0,0.1,2.28,77,35,8.7,27,EA Canada,538,E,1,MEDIUM,2
Pro Evolution Soccer 2010,95,PS3,14,2009,Sports,2,Konami Digital Entertainment,22,0.3,1.27,0.46,0.26,2.28,78,42,6.7,76,Konami,489,E,1,MEDIUM,2
FIFA Soccer 09,638,PS2,13,2008,Sports,2,Electronic Arts,126,0.38,0.07,0.01,1.82,2.28,82,8,6.9,20,EA Canada,538,E,1,MEDIUM,2
LEGO Harry Potter: Years 1-4,4210,DS,11,2010,Action,1,Warner Bros. Interactive Entertainment,69,1.07,0.99,0,0.22,2.28,72,7,7.2,6,TT Fusion,986,E10+,3,MEDIUM,2
The Sims 3,1454,X360,15,2010,Simulation,9,Electronic Arts,126,1.27,0.81,0,0.2,2.28,76,42,7.1,71,The Sims Studio,598,T,0,MEDIUM,2
Pokemon Ranger: Shadows of Almia,402,DS,11,2008,Role-Playing,4,Nintendo,156,0.94,0.53,0.62,0.18,2.28,68,24,8.2,27,HAL Labs Creatures Inc.,851,E,1,MEDIUM,2
Dead Island,2263,PS3,14,2011,Action,1,Deep Silver,95,1.08,0.73,0.15,0.31,2.27,71,41,6.6,405,Techland,633,M,2,MEDIUM,2
Kirby: Nightmare in Dream Land,1925,GBA,6,2002,Platform,6,Nintendo,156,1.22,0.1,0.91,0.04,2.27,81,24,8.9,54,HAL Labs,1289,E,1,MEDIUM,2
Wario Land 4,710,GBA,6,2001,Platform,6,Nintendo,156,0.9,0.73,0.54,0.09,2.26,88,17,8.9,42,Nintendo,1264,E,1,MEDIUM,2
Sonic's Ultimate Genesis Collection,1947,PS3,14,2009,Misc,7,Sega,147,1.34,0.6,0,0.31,2.26,80,35,8.6,43,Backbone Entertainment,1215,E10+,3,MEDIUM,2
Far Cry: Primal,1850,PS4,3,2016,Action,1,Ubisoft,168,0.6,1.25,0.06,0.35,2.26,76,91,6.3,635,Ubisoft Montreal,164,M,2,MEDIUM,2
Battlefield 1,2138,XOne,5,2016,Shooter,3,Electronic Arts,126,1.28,0.77,0,0.2,2.25,87,37,8.2,440,EA DICE,122,M,2,MEDIUM,2
Onimusha 2: Samurai's Destiny,2041,PS2,13,2002,Adventure,11,Capcom,261,0.62,0.44,1.06,0.13,2.25,84,31,9,52,Capcom,63,M,2,MEDIUM,2
Paper Mario: The Thousand-Year Door,3966,GC,4,2004,Role-Playing,4,Nintendo,156,1.48,0.25,0.46,0.06,2.25,87,55,9.4,306,Intelligent Systems,1024,E,1,MEDIUM,2
Madden NFL 12,1937,PS3,14,2011,Sports,2,Electronic Arts,126,1.93,0.15,0,0.17,2.25,79,31,5.5,56,EA Tiburon,397,E,1,MEDIUM,2
God of War: Ascension,3121,PS3,14,2013,Action,1,Sony Computer Entertainment,34,1.23,0.63,0.04,0.35,2.25,80,89,7.5,914,SCE Santa Monica,194,M,2,MEDIUM,2
Guitar Hero III: Legends of Rock,1102,PS3,14,2007,Misc,7,Activision,176,1.4,0.53,0.02,0.3,2.24,83,45,7.8,52,Neversoft Entertainment,641,T,0,MEDIUM,2
Sonic Advance,2694,GBA,6,2001,Platform,6,Sega,147,1.19,0.71,0.22,0.13,2.24,87,22,8.1,48,Sonic Team,737,E,1,MEDIUM,2
Super Monkey Ball: Banana Blitz,737,Wii,7,2006,Misc,7,Sega,147,1.05,0.91,0.04,0.24,2.24,74,53,5.7,72,Sega,1164,E,1,MEDIUM,2
Call of Duty 3,2111,Wii,7,2006,Shooter,3,Activision,176,1.17,0.84,0,0.23,2.24,69,42,6.7,61,Exakt,388,T,0,MEDIUM,2
New Super Luigi U,3260,WiiU,9,2013,Platform,6,Nintendo,156,1.25,0.62,0.18,0.18,2.24,77,59,7.9,288,Nintendo,1264,E,1,MEDIUM,2
Spyro: Season of Ice,3280,GBA,6,2001,Platform,6,Vivendi Games,245,1.29,0.83,0,0.11,2.23,74,16,8,13,Digital Eclipse,1118,E,1,MEDIUM,2
Dissidia: Final Fantasy,37,PSP,1,2008,Fighting,8,Square Enix,127,0.51,0.5,0.91,0.31,2.23,79,61,8,139,Square Enix,921,T,0,MEDIUM,2
Madden NFL 25,4316,X360,15,2013,Sports,2,Electronic Arts,126,1.98,0.06,0,0.19,2.23,80,32,5.6,136,EA Sports,856,E,1,MEDIUM,2
Borderlands 2,2178,PS3,14,2012,Shooter,3,Take Two Interactive,21,1.05,0.72,0.1,0.35,2.23,91,25,8.2,858,Gearbox Software,863,M,2,MEDIUM,2
Prince of Persia: The Sands of Time,2820,PS2,13,2003,Action,1,Ubisoft,168,0.88,1.03,0,0.31,2.22,92,44,8.8,204,Ubisoft,855,T,0,MEDIUM,2
Monster Hunter Tri,365,Wii,7,2009,Role-Playing,4,Nintendo,156,0.65,0.4,1.05,0.11,2.22,84,70,8.6,219,Capcom,63,T,0,MEDIUM,2
LEGO Marvel Super Heroes,3910,X360,15,2013,Action,1,Warner Bros. Interactive Entertainment,69,1.24,0.79,0,0.19,2.22,80,37,7.6,127,TT Games,828,E10+,3,MEDIUM,2
Tom Clancy's Rainbow Six: Siege,2480,PS4,3,2015,Shooter,3,Ubisoft,168,0.55,1.19,0.14,0.33,2.21,73,40,7.3,480,Ubisoft Montreal,164,M,2,MEDIUM,2
Star Wars: The Force Unleashed,3741,PS3,14,2008,Action,1,LucasArts,37,1.01,0.85,0,0.35,2.21,71,47,6.6,233,LucasArts,888,T,0,MEDIUM,2
Guitar Hero II,1569,X360,15,2007,Misc,7,Activision,176,2.01,0.02,0,0.17,2.2,92,55,8.1,220,Harmonix Music Systems,1009,T,0,MEDIUM,2
Forza Motorsport 5,463,XOne,5,2013,Racing,5,Microsoft Game Studios,14,1.21,0.79,0.01,0.19,2.2,79,76,5.9,1095,Turn 10,1008,E,1,MEDIUM,2
Rock Band 2,2407,X360,15,2008,Misc,7,Electronic Arts,126,1.78,0.24,0,0.18,2.2,92,69,8.3,156,Harmonix Music Systems,1009,T,0,MEDIUM,2
Need for Speed: Hot Pursuit,218,X360,15,2010,Racing,5,Electronic Arts,126,1.03,0.96,0,0.21,2.2,88,73,7,206,Criterion Games,280,E10+,3,MEDIUM,2
LEGO Indiana Jones: The Original Adventures,3839,DS,11,2008,Action,1,Activision,176,1.4,0.59,0,0.2,2.2,80,15,7.9,16,TT Fusion,986,E,1,MEDIUM,2
BioShock 2,587,X360,15,2010,Shooter,3,Take Two Interactive,21,1.45,0.54,0.02,0.19,2.2,88,93,8.2,573,2K Marin,1117,M,2,MEDIUM,2
Star Wars: Knights of the Old Republic,3596,XB,2,2003,Role-Playing,4,Activision,176,1.68,0.44,0,0.08,2.19,94,72,9.2,317,BioWare,1023,T,0,MEDIUM,2
Madden NFL 15,2128,PS4,3,2014,Sports,2,Electronic Arts,126,1.54,0.25,0,0.4,2.19,81,37,6.1,208,EA Sports,856,E,1,MEDIUM,2
Pro Evolution Soccer 2012,3659,PS3,14,2011,Action,1,Konami Digital Entertainment,22,0.34,0.96,0.55,0.33,2.19,80,41,6.6,132,Konami,489,E,1,MEDIUM,2
Saints Row,3890,X360,15,2006,Action,1,THQ,41,1.17,0.77,0.02,0.22,2.18,81,74,7.5,211,Volition Inc.,767,M,2,MEDIUM,2
ATV Offroad Fury 2,2221,PS2,13,2002,Racing,5,THQ,41,1.92,0.2,0,0.06,2.18,82,26,8.9,28,Rainbow Studios,768,E,1,MEDIUM,2
FIFA 15,1512,XOne,5,2014,Sports,2,Electronic Arts,126,0.6,1.42,0,0.16,2.18,82,33,5.4,347,EA Sports,856,E,1,MEDIUM,2
Tom Clancy's The Division,429,XOne,5,2016,Shooter,3,Ubisoft,168,1.29,0.68,0,0.2,2.16,80,33,6.9,614,Massive Entertainment,970,M,2,MEDIUM,2
Final Fantasy XIII,3090,X360,15,2010,Role-Playing,4,Square Enix,127,1.28,0.67,0.01,0.21,2.16,82,54,6.3,539,Square Enix,921,T,0,MEDIUM,2
The Sims: House Party,2791,PC,0,2001,Simulation,9,Electronic Arts,126,1.23,0.83,0,0.1,2.16,74,17,7.9,30,Maxis,178,T,0,MEDIUM,2
Scribblenauts,3831,DS,11,2009,Puzzle,12,Warner Bros. Interactive Entertainment,69,1.67,0.3,0.02,0.18,2.16,79,72,7.6,110,5TH Cell,608,E10+,3,MEDIUM,2
Sonic Unleashed,866,Wii,7,2008,Platform,6,Sega,147,1.26,0.67,0.02,0.21,2.16,66,30,7.3,136,Sonic Team,737,E10+,3,MEDIUM,2
Pokemon Ranger,3791,DS,11,2006,Role-Playing,4,Nintendo,156,1.28,0.03,0.73,0.12,2.15,69,21,7.6,50,HAL Labs,1289,E,1,MEDIUM,2
Overwatch,795,PS4,3,2016,Shooter,3,Activision,176,0.81,0.85,0.15,0.33,2.14,90,31,6.1,1358,Blizzard Entertainment,599,T,0,MEDIUM,2
Hitman: Absolution,2626,PS3,14,2012,Action,1,Square Enix,127,0.59,1.05,0.07,0.44,2.14,83,30,7.5,511,Io Interactive,1083,M,2,MEDIUM,2
Call of Duty: Roads to Victory,2031,PSP,1,2007,Shooter,3,Activision,176,0.52,1.02,0,0.59,2.13,64,45,7.5,30,Amaze Entertainment,561,T,0,MEDIUM,2
Dance Dance Revolution Extreme,4157,PS2,13,2004,Simulation,9,Konami Digital Entertainment,22,1.04,0.81,0,0.27,2.13,77,26,9,20,KCET,256,E,1,MEDIUM,2
Final Fantasy Tactics Advance,1708,GBA,6,2003,Role-Playing,4,SquareSoft,246,0.82,0.37,0.89,0.05,2.13,87,44,7.8,212,Square Enix,921,E,1,MEDIUM,2
Your Shape featuring Jenny McCarthy,1724,Wii,7,2009,Sports,2,Ubisoft,168,1.49,0.46,0,0.18,2.12,62,5,5.2,54,Ubisoft,855,E,1,MEDIUM,2
Project Gotham Racing,1998,XB,2,2001,Racing,5,Microsoft Game Studios,14,1.37,0.61,0.05,0.09,2.12,85,35,8.2,28,Bizarre Creations,62,E,1,MEDIUM,2
NBA 2K12,1896,PS3,14,2011,Sports,2,Take Two Interactive,21,1.62,0.26,0.05,0.18,2.11,90,38,6.7,127,Visual Concepts,261,E,1,MEDIUM,2
Need for Speed: Hot Pursuit 2,3705,PS2,13,2002,Racing,5,Electronic Arts,126,1.68,0.31,0.02,0.09,2.11,89,31,8.5,92,Black Box,1080,E,1,MEDIUM,2
Dynasty Warriors 4,1681,PS2,13,2003,Action,1,Tecmo Koei,155,0.63,0.21,1.13,0.13,2.11,78,24,9.3,201,Omega Force,1219,T,0,MEDIUM,2
NBA 2K14,3653,PS3,14,2013,Sports,2,Take Two Interactive,21,1.44,0.31,0.04,0.32,2.11,84,26,4.9,142,Visual Concepts,261,E,1,MEDIUM,2
Parasite Eve,1877,PS,8,1998,Role-Playing,4,SquareSoft,246,0.94,0.07,1.05,0.04,2.1,81,17,8.9,89,SquareSoft,148,M,2,MEDIUM,2
Tetris DS,2328,DS,11,2006,Puzzle,12,Nintendo,156,0.63,0.05,1.35,0.08,2.1,84,56,8.7,44,Nintendo,1264,E,1,MEDIUM,2
Battlefield: Hardline,3231,PS4,3,2015,Shooter,3,Electronic Arts,126,0.71,0.94,0.14,0.32,2.1,73,46,5,845,Visceral Games,1271,M,2,MEDIUM,2
Mortal Kombat,207,X360,15,2011,Fighting,8,Warner Bros. Interactive Entertainment,69,1.63,0.31,0,0.16,2.1,86,66,8.3,382,NetherRealm Studios,43,M,2,MEDIUM,2
Borderlands,3437,PS3,14,2009,Shooter,3,Take Two Interactive,21,1.2,0.6,0,0.29,2.09,83,58,7.9,427,Gearbox Software,863,M,2,MEDIUM,2
Devil May Cry 3: Dante's Awakening,4295,PS2,13,2005,Action,1,Capcom,261,0.99,0.63,0.29,0.19,2.09,84,60,9,212,Capcom,63,M,2,MEDIUM,2
NBA 2K11,3326,X360,15,2010,Action,1,Take Two Interactive,21,1.84,0.12,0.01,0.13,2.09,89,50,8.1,100,Visual Concepts,261,E,1,MEDIUM,2
Dying Light,2267,PS4,3,2015,Action,1,Warner Bros. Interactive Entertainment,69,0.96,0.67,0.12,0.34,2.09,74,58,7.9,1287,Techland,633,M,2,MEDIUM,2
Dead Rising,15,X360,15,2006,Action,1,Capcom,261,1.16,0.64,0.08,0.2,2.08,85,82,7.6,520,Capcom,63,M,2,MEDIUM,2
World of Warcraft: Cataclysm,487,PC,0,2010,Role-Playing,4,Activision,176,1.77,0.32,0,0,2.08,90,53,5.6,953,Blizzard Entertainment,599,T,0,MEDIUM,2
Tetris Worlds,476,PS2,13,2002,Puzzle,12,THQ,41,1.11,0.71,0,0.27,2.08,44,7,6.2,11,Blue Planet Software,1256,E,1,MEDIUM,2
Final Fantasy III,590,DS,11,2006,Role-Playing,4,Square Enix,127,0.89,0.04,1.07,0.09,2.08,77,45,7.1,136,Matrix Software,1173,E10+,3,MEDIUM,2
Mario Party 5,1531,GC,4,2003,Misc,7,Nintendo,156,0.97,0.33,0.73,0.06,2.08,69,33,8.2,57,Hudson,685,E,1,MEDIUM,2
Rock Band,1776,Wii,7,2007,Misc,7,MTV Games,89,1.33,0.56,0,0.2,2.08,80,21,6.3,37,Harmonix Music Systems,1009,T,0,MEDIUM,2
Portal 2,3666,X360,15,2011,Shooter,3,Valve Software,216,1.41,0.49,0.01,0.17,2.08,95,66,8.5,997,Valve Software,798,E10+,3,MEDIUM,2
Mario Sports Mix,4373,Wii,7,2010,Sports,2,Nintendo,156,0.88,0.44,0.63,0.12,2.08,64,54,7.1,34,Square Enix,921,E,1,MEDIUM,2
Need for Speed: Most Wanted 5-1-0,1875,PSP,1,2005,Racing,5,Electronic Arts,126,1.77,0.12,0.02,0.17,2.07,72,21,7.8,54,EA Canada,538,E10+,3,MEDIUM,2
The Sims 2: Pets,3213,DS,11,2006,Simulation,9,Electronic Arts,126,0.92,0.93,0,0.22,2.07,49,5,5.2,24,Full Fat,1203,E,1,MEDIUM,2
Dance Dance Revolution: Hottest Party,192,Wii,7,2007,Simulation,9,Konami Digital Entertainment,22,1.35,0.52,0,0.19,2.07,73,16,7.1,27,Konami,489,E10+,3,MEDIUM,2
DriveClub,127,PS4,3,2014,Racing,5,Sony Computer Entertainment,34,0.36,1.38,0.02,0.31,2.07,71,85,6.1,1571,Evolution Studios,634,E,1,MEDIUM,2
UFC 2009 Undisputed,2915,X360,15,2009,Fighting,8,THQ,41,1.48,0.39,0,0.19,2.06,83,68,7.9,51,Yuke's,487,T,0,MEDIUM,2
Metal Gear Solid: Peace Walker,2186,PSP,1,2010,Action,1,Konami Digital Entertainment,22,0.46,0.41,0.96,0.24,2.06,89,66,8.9,443,Kojima Productions,1070,T,0,MEDIUM,2
Kingdom Hearts: Birth by Sleep,1672,PSP,1,2010,Role-Playing,4,Square Enix,127,0.63,0.41,0.75,0.26,2.06,82,62,8.6,208,Square Enix,921,E10+,3,MEDIUM,2
SoulCalibur II,2137,PS2,13,2003,Fighting,8,Namco Bandai Games,0,1.06,0.62,0.13,0.25,2.06,92,41,8.8,120,Namco,1098,T,0,MEDIUM,2
Need for Speed: ProStreet,1551,X360,15,2007,Racing,5,Electronic Arts,126,1.04,0.79,0.01,0.21,2.05,72,42,7.1,78,EA Black Box,452,E10+,3,MEDIUM,2
Sonic Mega Collection,1613,GC,4,2002,Misc,7,Infogrames,116,1.47,0.48,0.05,0.06,2.05,75,26,8.8,41,Sonic Team,737,E,1,MEDIUM,2
Need For Speed: Undercover,1236,PS3,14,2008,Racing,5,Electronic Arts,126,0.63,1,0.05,0.38,2.05,59,40,5.9,71,EA Vancouver,1275,T,0,MEDIUM,2
SOCOM: U.S. Navy SEALs: Combined Assault,4053,PS2,13,2006,Shooter,3,Sony Computer Entertainment,34,1.74,0.02,0,0.28,2.04,72,38,9,34,Zipper Interactive,289,T,0,MEDIUM,2
Peter Jackson's King Kong: The Official Game of the Movie,296,PS2,13,2005,Action,1,Ubisoft,168,0.71,1.02,0,0.31,2.04,82,41,8.2,68,Ubisoft Montpellier,470,T,0,MEDIUM,2
Need for Speed: ProStreet,1551,PS3,14,2007,Racing,5,Electronic Arts,126,0.73,0.91,0.04,0.36,2.04,73,26,6,43,EA Black Box,452,E10+,3,MEDIUM,2
Donkey Kong Country,3862,GBA,6,2003,Platform,6,Nintendo,156,1.2,0.48,0.29,0.07,2.04,78,26,8.9,53,Rare Ltd.,1004,E,1,MEDIUM,2
Dance Central 2,1369,X360,15,2011,Misc,7,Microsoft Game Studios,14,1.45,0.41,0.01,0.16,2.04,86,56,8.2,63,Harmonix Music Systems,1009,T,0,MEDIUM,2
Carnival Games,1760,DS,11,2008,Misc,7,Take Two Interactive,21,1.21,0.63,0,0.19,2.03,48,11,3.3,4,Cat Daddy Games,1105,E,1,MEDIUM,2
NBA Live 2004,970,PS2,13,2003,Sports,2,Electronic Arts,126,1.57,0.18,0,0.27,2.03,86,19,7.7,41,EA Sports,856,E,1,MEDIUM,2
Call of Duty 2,4072,X360,15,2005,Shooter,3,Activision,176,1.82,0.04,0.01,0.16,2.03,89,65,8.1,307,Infinity Ward,975,T,0,MEDIUM,2
Rayman Raving Rabbids: TV Party,3084,Wii,7,2008,Misc,7,Ubisoft,168,0.72,1.08,0,0.23,2.03,73,24,7.7,29,Ubisoft Paris Ubisoft Montpellier,381,E10+,3,MEDIUM,2
Pokémon Mystery Dungeon: Blue Rescue Team,1880,DS,11,2005,Role-Playing,4,Nintendo,156,1.15,0.04,0.83,0,2.02,62,34,8.1,97,ChunSoft,498,E,1,MEDIUM,2
Dark Souls,3907,PS3,14,2011,Role-Playing,4,Namco Bandai Games,0,0.75,0.51,0.54,0.22,2.02,89,54,8.7,1397,From Software,573,M,2,MEDIUM,2
Just Dance 3,689,X360,15,2011,Misc,7,Ubisoft,168,1.47,0.39,0,0.16,2.02,70,34,7.7,17,Ubisoft,855,E10+,3,MEDIUM,2
Battlefield 4,2423,XOne,5,2013,Shooter,3,Electronic Arts,126,1.25,0.58,0,0.19,2.02,81,5,6.6,480,EA DICE,122,M,2,MEDIUM,2
Fire Emblem: Awakening,3869,3DS,16,2012,Role-Playing,4,Nintendo,156,0.9,0.45,0.54,0.13,2.01,92,72,9.1,1130,Intelligent Systems,1024,T,0,MEDIUM,2
Need for Speed: The Run,3892,PS3,14,2011,Action,1,Electronic Arts,126,0.58,1.04,0.03,0.36,2.01,64,48,6.4,182,Black Box,1080,T,0,MEDIUM,2
Dragon Age: Inquisition,3367,PS4,3,2014,Role-Playing,4,Electronic Arts,126,0.73,0.88,0.08,0.32,2.01,89,43,7.4,1984,BioWare,1023,M,2,MEDIUM,2
Dead Space,963,PS3,14,2008,Action,1,Electronic Arts,126,1.05,0.66,0,0.29,2,88,67,8.8,545,EA Redwood Shores,839,M,2,MEDIUM,2
Mortal Kombat vs. DC Universe,782,PS3,14,2008,Fighting,8,Midway Games,146,1.48,0.28,0,0.23,2,76,44,7.1,107,Midway,75,T,0,MEDIUM,2
TouchMaster,4143,DS,11,2007,Puzzle,12,Midway Games,146,0.48,1.27,0,0.24,2,71,19,5.7,9,Midway Studios San Diego,961,E10+,3,MEDIUM,2
Tenchu: Stealth Assassins,4312,PS,8,1997,Action,1,Activision,176,0.95,0.64,0.27,0.13,1.99,87,14,8.8,45,Acquire,393,M,2,MEDIUM,2
Harry Potter and the Chamber of Secrets,1579,GBA,6,2002,Action,1,Electronic Arts,126,1.21,0.64,0.05,0.09,1.99,76,11,7.9,14,Eurocom Entertainment Software,166,E,1,MEDIUM,2
Kingdom Hearts 358/2 Days,2005,DS,11,2009,Role-Playing,4,Square Enix,127,1.06,0.26,0.53,0.13,1.98,75,53,7.8,162,h.a.n.d. Inc.,1039,E10+,3,MEDIUM,2
Skate 3,4358,PS3,14,2010,Sports,2,Electronic Arts,126,0.79,0.88,0,0.32,1.98,80,46,7.6,82,EA Black Box,452,T,0,MEDIUM,2
Need for Speed Rivals,4278,PS4,3,2013,Racing,5,Electronic Arts,126,0.73,0.92,0.03,0.3,1.98,80,53,6.2,667,Ghost Games,546,E10+,3,MEDIUM,2
Spyro: Enter the Dragonfly,205,PS2,13,2002,Platform,6,Universal Interactive,31,0.74,0.95,0,0.28,1.97,56,20,4.1,95,Check Six Games,699,E,1,MEDIUM,2
Devil May Cry 2,1319,PS2,13,2003,Action,1,Capcom,261,0.71,0.58,0.51,0.17,1.97,68,40,6.6,167,Capcom,63,M,2,MEDIUM,2
Hot Shots Golf: Open Tee,776,PSP,1,2004,Sports,2,Sony Computer Entertainment,34,0.5,0.5,0.63,0.33,1.96,81,57,8.7,34,Clap Hanz,319,E10+,3,MEDIUM,2
Forza Horizon,1767,X360,15,2012,Racing,5,Microsoft Game Studios,14,0.82,0.93,0.04,0.18,1.96,85,83,8.4,431,PLAYGROUND Playground Games,1019,T,0,MEDIUM,2
Tom Clancy's Rainbow Six: Vegas,1943,X360,15,2006,Shooter,3,Ubisoft,168,1.09,0.65,0.02,0.2,1.95,88,69,8.3,225,Ubisoft Montreal,164,M,2,MEDIUM,2
Crash Nitro Kart,2071,PS2,13,2003,Racing,5,Vivendi Games,245,0.74,1.01,0,0.2,1.95,69,24,7.7,59,Vicarious Visions,312,E,1,MEDIUM,2
Resident Evil 6,2498,X360,15,2012,Shooter,3,Capcom,261,1.12,0.6,0.07,0.16,1.95,67,71,5,1407,Capcom,63,M,2,MEDIUM,2
Grand Theft Auto: San Andreas,2967,XB,2,2005,Action,1,Take Two Interactive,21,1.26,0.61,0,0.09,1.95,93,58,8.6,118,Rockstar North,1197,AO,4,MEDIUM,2
NBA Street Vol. 2,1127,PS2,13,2003,Sports,2,Electronic Arts,126,1.69,0.2,0,0.06,1.95,90,31,8.8,70,Electronic Arts,366,E,1,MEDIUM,2
Def Jam Vendetta,1399,PS2,13,2003,Fighting,8,Electronic Arts,126,0.95,0.74,0,0.25,1.94,80,33,8.9,41,Aki Corp.,669,T,0,MEDIUM,2
Kirby Squeak Squad,683,DS,11,2006,Platform,6,Nintendo,156,0.78,0.02,1.05,0.08,1.94,71,29,8.1,41,Flagship HAL Labs,980,E,1,MEDIUM,2
Burnout Paradise,4371,PS3,14,2008,Racing,5,Electronic Arts,126,1.01,0.62,0.02,0.29,1.94,87,55,7.7,455,Criterion Games,280,E10+,3,MEDIUM,2
The Sims 3,1454,PS3,14,2010,Simulation,9,Electronic Arts,126,0.73,0.89,0.02,0.3,1.94,78,39,6.4,55,The Sims Studio,598,T,0,MEDIUM,2
FIFA Soccer 09,638,X360,15,2008,Sports,2,Electronic Arts,126,0.49,1.26,0.01,0.18,1.94,87,51,8,106,EA Canada,538,E,1,MEDIUM,2
Dragon Ball Z: Budokai 3,3251,PS2,13,2004,Fighting,8,Atari,229,1.09,0.15,0.65,0.04,1.94,77,32,8.9,137,Dimps Corporation,127,T,0,MEDIUM,2
Call of Duty: World at War,3202,Wii,7,2008,Shooter,3,Activision,176,1.17,0.58,0,0.18,1.94,83,19,7.6,78,Exakt,388,M,2,MEDIUM,2
Tom Clancy's Ghost Recon,1103,PS2,13,2002,Shooter,3,Ubisoft,168,1.42,0.4,0,0.12,1.94,63,18,8.3,22,Ubisoft,855,M,2,MEDIUM,2
BioShock Infinite,3457,X360,15,2013,Shooter,3,Take Two Interactive,21,1.22,0.54,0.02,0.16,1.93,93,33,8.5,1647,Irrational Games,1160,M,2,MEDIUM,2
X-Men Legends,680,PS2,13,2004,Role-Playing,4,Activision,176,1,0.72,0,0.21,1.93,79,48,8.5,69,Raven Software,628,T,0,MEDIUM,2
Mortal Kombat vs. DC Universe,782,X360,15,2008,Fighting,8,Midway Games,146,1.53,0.23,0,0.16,1.93,72,61,7.5,87,Midway,75,T,0,MEDIUM,2
Destiny: The Taken King,478,PS4,3,2015,Shooter,3,Activision,176,0.78,0.79,0.04,0.31,1.93,86,81,6,1079,Bungie,836,T,0,MEDIUM,2
Red Faction,3834,PS2,13,2001,Shooter,3,THQ,41,0.76,0.96,0,0.2,1.92,88,25,8,69,Volition Inc.,767,M,2,MEDIUM,2
The Sims: Makin' Magic,1666,PC,0,2003,Simulation,9,Electronic Arts,126,1.03,0.8,0,0.09,1.92,80,22,8.6,31,Maxis,178,T,0,MEDIUM,2
Mario Party: Island Tour,1166,3DS,16,2013,Misc,7,Nintendo,156,0.62,0.64,0.55,0.11,1.92,57,47,6.3,117,Nintendo Nd Cube,124,E,1,MEDIUM,2
MX Unleashed,2611,PS2,13,2004,Racing,5,THQ,41,0.94,0.73,0,0.25,1.92,80,18,9.2,46,Rainbow Studios,768,E,1,MEDIUM,2
PaRappa The Rapper,3132,PS,8,1996,Misc,7,Sony Computer Entertainment,34,0.26,0.16,1.46,0.03,1.92,92,15,7.4,48,NanaOnSha,772,K-A,5,MEDIUM,2
Guitar Hero: World Tour,819,PS3,14,2008,Misc,7,Activision,176,1.1,0.55,0,0.27,1.92,84,43,7.5,80,Neversoft Entertainment,641,T,0,MEDIUM,2
Need for Speed: Shift,3268,X360,15,2009,Racing,5,Electronic Arts,126,0.73,0.96,0.01,0.22,1.91,83,75,6.5,134,Slightly Mad Studios,266,E,1,MEDIUM,2
Diablo III,961,PS3,14,2013,Role-Playing,4,Activision,176,0.72,0.75,0.15,0.29,1.91,86,43,6.4,557,Blizzard Entertainment,599,M,2,MEDIUM,2
LittleBigPlanet 3,4006,PS4,3,2014,Platform,6,Sony Computer Entertainment,34,0.66,0.93,0.01,0.31,1.91,79,78,7.1,506,Sumo Digital,502,E,1,MEDIUM,2
Star Wars Rogue Leader: Rogue Squadron II,2799,GC,4,2001,Simulation,9,LucasArts,37,1.03,0.75,0.03,0.09,1.9,90,45,8.6,80,Factor 5,17,T,0,MEDIUM,2
Mario Super Sluggers,47,Wii,7,2008,Sports,2,Nintendo,156,1.48,0,0.29,0.12,1.89,69,31,7.8,58,Namco Bandai Games,65,E,1,MEDIUM,2
Monopoly,4153,Wii,7,2008,Misc,7,Electronic Arts,126,0.86,0.83,0,0.2,1.89,70,11,7.8,17,Electronic Arts,366,E,1,MEDIUM,2
Madden NFL 09,1910,PS3,14,2008,Sports,2,Electronic Arts,126,1.56,0.14,0,0.18,1.88,85,38,4.4,132,EA Tiburon,397,E,1,MEDIUM,2
Batman: Arkham Origins,2475,X360,15,2013,Action,1,Warner Bros. Interactive Entertainment,69,1.15,0.56,0,0.17,1.88,74,46,7.5,685,WB Games Montreal,984,T,0,MEDIUM,2
Game Party 2,939,Wii,7,2008,Misc,7,Midway Games,146,1.28,0.43,0,0.17,1.88,29,7,4.6,7,Midway,75,E,1,MEDIUM,2
Mortal Kombat: Deception,3786,PS2,13,2004,Fighting,8,Midway Games,146,0.92,0.72,0,0.24,1.88,81,43,8.5,90,Midway,75,M,2,MEDIUM,2
NBA 2K17,1616,PS4,3,2016,Sports,2,Take Two Interactive,21,1.25,0.27,0.02,0.34,1.88,88,47,6.7,162,Visual Concepts,261,E,1,MEDIUM,2
Toy Story Mania!,4237,Wii,7,2009,Misc,7,Disney Interactive Studios,124,1.04,0.66,0,0.18,1.88,49,15,6.6,13,Papaya Studios,1218,E,1,MEDIUM,2
Star Fox Adventures,0,GC,4,2002,Adventure,11,Nintendo,156,0.96,0.53,0.3,0.09,1.87,82,39,7.7,145,Rare Ltd.,1004,T,0,MEDIUM,2
Madden NFL 25,4316,PS3,14,2013,Sports,2,Electronic Arts,126,1.6,0.03,0,0.24,1.87,76,19,4.1,91,EA Sports,856,E,1,MEDIUM,2
Dynasty Warriors 3,2078,PS2,13,2001,Action,1,THQ,41,0.53,0.16,1.07,0.1,1.87,78,17,9.1,90,Omega Force,1219,T,0,MEDIUM,2
Madden NFL 06,2702,XB,2,2005,Sports,2,Electronic Arts,126,1.75,0.03,0,0.08,1.86,86,39,6.7,41,EA Sports,856,E,1,MEDIUM,2
Shrek 2,1167,PS2,13,2004,Platform,6,Activision,176,1.12,0.69,0.03,0.02,1.86,71,32,8.5,24,Luxoflux Inc.,81,E,1,MEDIUM,2
The Legend of Dragoon,3528,PS,8,1999,Role-Playing,4,Sony Computer Entertainment,34,0.94,0.44,0.39,0.1,1.86,74,12,8.4,248,SCEI,821,T,0,MEDIUM,2
Star Wars: The Force Unleashed,3741,Wii,7,2008,Action,1,LucasArts,37,1.11,0.56,0,0.18,1.86,71,18,7.9,75,Krome Studios,904,T,0,MEDIUM,2
NBA Live 2002,1215,PS2,13,2001,Sports,2,Electronic Arts,126,0.91,0.71,0,0.24,1.86,70,16,7.4,8,Electronic Arts,366,E,1,MEDIUM,2
Just Cause 3,2830,PS4,3,2015,Action,1,Square Enix,127,0.47,1.03,0.07,0.28,1.86,73,42,6.5,403,Avalanche Studios,1113,M,2,MEDIUM,2
Chrono Cross,3000,PS,8,1999,Role-Playing,4,SquareSoft,246,0.62,0.42,0.69,0.12,1.86,94,16,8.1,297,SquareSoft,148,T,0,MEDIUM,2
Jak 3,3622,PS2,13,2004,Platform,6,Sony Computer Entertainment,34,1.33,0.49,0,0.03,1.85,84,55,8.6,246,Naughty Dog,12,T,0,MEDIUM,2
Kingdom Hearts: Chain of Memories,29,GBA,6,2004,Role-Playing,4,Square Enix,127,1.26,0.18,0.35,0.06,1.85,76,37,7.9,84,Jupiter Corporation,493,E,1,MEDIUM,2
Max Payne 3,639,PS3,14,2012,Shooter,3,Take Two Interactive,21,0.59,0.89,0.06,0.3,1.85,87,31,7.8,790,Rockstar Studios,1046,M,2,MEDIUM,2
LEGO Marvel Super Heroes,3910,PS3,14,2013,Action,1,Warner Bros. Interactive Entertainment,69,0.77,0.76,0.01,0.29,1.84,82,22,7.9,76,TT Games,828,E10+,3,MEDIUM,2
Phineas and Ferb,1548,DS,11,2009,Action,1,Disney Interactive Studios,124,1.32,0.37,0,0.15,1.84,80,4,4.5,8,Altron,345,E,1,MEDIUM,2
NCAA Football 06,4178,PS2,13,2005,Sports,2,Electronic Arts,126,1.53,0.05,0,0.25,1.84,87,25,8.5,36,EA Sports,856,E,1,MEDIUM,2
Rayman Raving Rabbids 2,1353,Wii,7,2007,Misc,7,Ubisoft,168,0.82,0.82,0,0.2,1.83,67,25,8.3,66,Ubisoft Montpellier,470,E10+,3,MEDIUM,2
Kirby: Triple Deluxe,4240,3DS,16,2014,Platform,6,Nintendo,156,0.61,0.34,0.79,0.09,1.83,80,68,8.8,206,HAL Labs,1289,E,1,MEDIUM,2
Sonic Classic Collection,1682,DS,11,2010,Platform,6,Sega,147,0.92,0.73,0,0.17,1.83,70,24,7.5,28,Creative Assembly,1068,E,1,MEDIUM,2
inFAMOUS 2,797,PS3,14,2011,Action,1,Sony Computer Entertainment,34,1.05,0.47,0.08,0.22,1.82,83,90,8.4,932,Sucker Punch,770,T,0,MEDIUM,2
World of Warcraft: Mists of Pandaria,4013,PC,0,2012,Role-Playing,4,Activision,176,0.84,0.76,0,0.22,1.82,82,42,4.8,1265,Blizzard Entertainment,599,T,0,MEDIUM,2
Namco Museum,2546,PS2,13,2001,Misc,7,Namco Bandai Games,0,1.73,0.07,0,0.02,1.82,72,9,6,5,Mass Media,1170,E,1,MEDIUM,2
The Sims: Hot Date,714,PC,0,2001,Simulation,9,Electronic Arts,126,1.81,0,0,0,1.82,85,17,7.9,70,Maxis,178,T,0,MEDIUM,2
Demon's Souls,1058,PS3,14,2009,Role-Playing,4,Namco Bandai Games,0,0.97,0.33,0.35,0.17,1.82,89,81,8.9,1441,From Software,573,M,2,MEDIUM,2
The Orange Box,1451,X360,15,2007,Shooter,3,Electronic Arts,126,1.09,0.53,0.02,0.17,1.82,96,54,8.9,797,Valve Software,798,M,2,MEDIUM,2
DDRMAX2: Dance Dance Revolution,1540,PS2,13,2003,Simulation,9,Konami Digital Entertainment,22,1.05,0.59,0,0.18,1.81,82,27,8.2,11,Konami,489,E,1,MEDIUM,2
Virtua Fighter 4,4121,PS2,13,2002,Fighting,8,Sega,147,0.78,0.44,0.56,0.04,1.81,94,36,8,84,Sega AM2,583,T,0,MEDIUM,2
Mafia III,626,PS4,3,2016,Action,1,Take Two Interactive,21,0.42,1.08,0.03,0.28,1.81,68,66,5.1,1147,Hangar 13,926,M,2,MEDIUM,2
Sly 2: Band of Thieves,1765,PS2,13,2004,Platform,6,Sony Computer Entertainment,34,0.88,0.69,0,0.23,1.81,88,64,9,178,Sucker Punch,770,E,1,MEDIUM,2
Sonic Advance 2,1693,GBA,6,2002,Platform,6,Sega,147,0.93,0.59,0.21,0.07,1.8,83,23,8.3,46,Dimps Corporation,127,E,1,MEDIUM,2
Madden NFL 07,4101,X360,15,2006,Sports,2,Electronic Arts,126,1.66,0,0.01,0.13,1.8,80,54,6,148,EA Tiburon,397,E,1,MEDIUM,2
NBA 2K11,3326,PS3,14,2010,Action,1,Take Two Interactive,21,1.41,0.2,0.03,0.16,1.8,89,46,7.6,105,Visual Concepts,261,E,1,MEDIUM,2
Forza Motorsport 6,1783,XOne,5,2015,Racing,5,Microsoft Game Studios,14,0.73,0.9,0.03,0.14,1.8,87,85,7.9,863,Turn 10,1008,E,1,MEDIUM,2
The Evil Within,4105,PS4,3,2014,Action,1,Bethesda Softworks,189,0.55,0.86,0.11,0.27,1.79,75,65,7.3,1223,Tango Gameworks,991,M,2,MEDIUM,2
Metroid Prime 3: Corruption,2910,Wii,7,2007,Shooter,3,Nintendo,156,0.89,0.74,0.07,0.09,1.79,90,62,8.9,491,Retro Studios,1167,T,0,MEDIUM,2
Midnight Club II,4159,PS2,13,2003,Racing,5,Take Two Interactive,21,1.25,0.29,0,0.24,1.78,85,41,8.5,47,Rockstar San Diego,499,T,0,MEDIUM,2
The Getaway: Black Monday,640,PS2,13,2004,Action,1,Sony Computer Entertainment,34,0.39,1.01,0.02,0.36,1.78,57,53,7.6,47,SCEE London Studio,807,M,2,MEDIUM,2
50 Cent: Bulletproof,4041,PS2,13,2005,Action,1,Vivendi Games,245,0.85,0.76,0,0.16,1.77,47,21,6.6,129,Genuine Games,389,M,2,MEDIUM,2
Dead or Alive 3,2777,XB,2,2001,Fighting,8,Microsoft Game Studios,14,1.19,0.29,0.24,0.06,1.77,87,35,8.6,44,Team Ninja,353,T,0,MEDIUM,2
Dragon Quest Monsters: Joker,3053,DS,11,2006,Role-Playing,4,Square Enix,127,0.23,0.02,1.49,0.02,1.76,75,30,7.4,27,TOSE,155,E10+,3,MEDIUM,2
LEGO Star Wars III: The Clone Wars,2852,Wii,7,2011,Action,1,LucasArts,37,1.01,0.6,0,0.15,1.76,76,7,7.7,10,Traveller's Tales,179,E10+,3,MEDIUM,2
UFC 2009 Undisputed,2915,PS3,14,2009,Fighting,8,THQ,41,1.07,0.44,0.01,0.24,1.76,84,58,8.1,47,THQ,1216,T,0,MEDIUM,2
The SpongeBob SquarePants Movie,4166,PS2,13,2004,Platform,6,THQ,41,1.06,0.54,0,0.16,1.76,75,5,9,54,Heavy Iron Studios,315,E,1,MEDIUM,2
Golden Sun,2854,GBA,6,2001,Role-Playing,4,Nintendo,156,0.93,0.38,0.4,0.06,1.76,91,29,9.3,198,Camelot Software Planning,1266,E,1,MEDIUM,2
Def Jam: Fight for NY,2298,PS2,13,2004,Fighting,8,Electronic Arts,126,0.86,0.67,0,0.22,1.76,83,46,8.9,73,Aki Corp.,669,M,2,MEDIUM,2
Tom Clancy's Ghost Recon,1103,XB,2,2002,Shooter,3,Ubisoft,168,1.23,0.46,0,0.07,1.76,84,29,6.1,27,Red Storm Entertainment,942,M,2,MEDIUM,2
State of Emergency,297,PS2,13,2002,Action,1,Take Two Interactive,21,0.86,0.67,0,0.22,1.76,71,34,5.7,33,VIS Entertainment,1081,M,2,MEDIUM,2
The Urbz: Sims in the City,2580,PS2,13,2004,Simulation,9,Electronic Arts,126,0.52,0.95,0,0.29,1.76,70,25,8.2,24,Maxis,178,T,0,MEDIUM,2
Star Wars: Starfighter,593,PS2,13,2001,Simulation,9,Activision,176,0.61,0.87,0.02,0.26,1.76,84,25,8,21,LucasArts,888,T,0,MEDIUM,2
Star Wars: Battlefront,3105,XB,2,2004,Shooter,3,Activision,176,1.24,0.45,0,0.07,1.75,80,55,9.1,57,Pandemic Studios,517,T,0,MEDIUM,2
Madden NFL 17,2581,PS4,3,2016,Sports,2,Electronic Arts,126,1.25,0.17,0,0.32,1.75,82,35,4.9,83,EA Sports,856,E,1,MEDIUM,2
Just Cause 2,1099,PS3,14,2010,Action,1,Square Enix,127,0.45,0.92,0.06,0.32,1.75,83,66,8,291,Avalanche Studios,1113,M,2,MEDIUM,2
FIFA Soccer 08,299,PS3,14,2007,Sports,2,Electronic Arts,126,0.35,1.06,0.02,0.31,1.75,81,28,7.1,47,EA Canada,538,E,1,MEDIUM,2
Crackdown,2008,X360,15,2007,Shooter,3,Microsoft Game Studios,14,1,0.53,0.03,0.18,1.75,83,75,8,340,Realtime Worlds,1084,M,2,MEDIUM,2
Wii Party U,2301,WiiU,9,2013,Misc,7,Nintendo,156,0.3,0.56,0.84,0.05,1.75,65,38,6.8,135,Nd Cube,510,E,1,MEDIUM,2
Dance Dance Revolution X,3499,PS2,13,2008,Simulation,9,Konami Digital Entertainment,22,0.85,0.66,0.01,0.22,1.75,55,6,6.2,6,Konami,489,E10+,3,MEDIUM,2
Xenosaga Episode I: Der Wille zur Macht,1217,PS2,13,2002,Role-Playing,4,Namco Bandai Games,0,0.63,0.49,0.45,0.17,1.74,83,35,8.7,99,Monolith Soft,1003,T,0,MEDIUM,2
Kinect Star Wars,4288,X360,15,2012,Action,1,Microsoft Game Studios,14,1.05,0.52,0.03,0.14,1.74,55,61,3.5,145,Terminal Reality,369,T,0,MEDIUM,2
Dragon's Dogma,3327,PS3,14,2012,Role-Playing,4,Capcom,261,0.41,0.44,0.72,0.17,1.74,78,38,8.3,444,Capcom,63,M,2,MEDIUM,2
The Order: 1886,3868,PS4,3,2015,Shooter,3,Sony Computer Entertainment,34,0.61,0.78,0.06,0.27,1.74,63,94,6.6,3172,Ready at Dawn SCE Santa Monica,914,M,2,MEDIUM,2
SSX Tricky,3515,PS2,13,2001,Sports,2,Electronic Arts,126,0.85,0.66,0,0.22,1.73,92,33,8.9,71,EA Canada,538,E,1,MEDIUM,2
Knack,482,PS4,3,2013,Platform,6,Sony Computer Entertainment Europe,153,0.43,0.68,0.42,0.2,1.73,54,83,6.5,1074,SCE Japan Studio,41,E10+,3,MEDIUM,2
Dragon Quest VI: Realms of Revelation,530,DS,11,2010,Role-Playing,4,Nintendo,156,0.2,0.14,1.35,0.03,1.73,78,41,8.1,31,ArtePiazza,1133,T,0,MEDIUM,2
Crash Bandicoot: The Huge Adventure,2716,GBA,6,2002,Platform,6,Universal Interactive,31,0.95,0.7,0,0.08,1.73,78,18,7.9,27,Vicarious Visions,312,E,1,MEDIUM,2
Hitman: Absolution,2626,X360,15,2012,Action,1,Square Enix,127,0.68,0.88,0.01,0.17,1.73,79,51,7.1,453,Io Interactive,1083,M,2,MEDIUM,2
The Crew,2895,PS4,3,2014,Racing,5,Ubisoft,168,0.35,1.08,0.03,0.26,1.72,61,60,5.4,575,Ubisoft Reflections Ivory Tower,663,T,0,MEDIUM,2
NBA 2K15,1212,XOne,5,2014,Sports,2,Take Two Interactive,21,1.37,0.18,0,0.18,1.72,82,9,6.3,101,Visual Concepts,261,E,1,MEDIUM,2
Madden NFL 2005,308,XB,2,2004,Sports,2,Electronic Arts,126,1.61,0.03,0,0.08,1.72,91,39,7.6,26,EA Tiburon,397,E,1,MEDIUM,2
Star Ocean: Till The End of Time,2241,PS2,13,2003,Role-Playing,4,Ubisoft,168,0.8,0.21,0.55,0.15,1.72,80,55,7.7,134,TriAce,48,T,0,MEDIUM,2
Call of Duty: Modern Warfare 3,2364,PC,0,2011,Shooter,3,Activision,176,0.41,0.98,0,0.32,1.72,78,26,2.5,5664,Infinity Ward Sledgehammer Games,802,M,2,MEDIUM,2
Dishonored,3405,X360,15,2012,Action,1,Bethesda Softworks,189,1.06,0.5,0.01,0.14,1.71,88,56,7.9,815,Arkane Studios,49,M,2,MEDIUM,2
The Beatles: Rock Band,2069,Wii,7,2009,Misc,7,MTV Games,89,1.17,0.39,0,0.15,1.71,89,25,8.9,43,Harmonix Music Systems,1009,T,0,MEDIUM,2
Ace Combat 5: The Unsung War,653,PS2,13,2004,Simulation,9,Sony Computer Entertainment Europe,153,0.88,0.34,0.32,0.18,1.71,84,57,9.1,81,Namco,1098,T,0,MEDIUM,2
Need for Speed Underground,3167,XB,2,2003,Racing,5,Electronic Arts,126,1.09,0.55,0,0.07,1.71,83,25,8.7,35,Electronic Arts,366,E,1,MEDIUM,2
Deal or No Deal,3908,DS,11,2007,Misc,7,Mindscape,7,1.15,0.4,0,0.15,1.7,20,13,1.9,41,Artefacts Studio,111,E,1,MEDIUM,2
Portal 2,3666,PS3,14,2011,Shooter,3,Valve,93,0.83,0.6,0.02,0.24,1.7,95,54,8.4,937,Valve Software,798,E10+,3,MEDIUM,2
NCAA Football 07,1637,PS2,13,2006,Sports,2,Electronic Arts,126,1.41,0.05,0,0.23,1.7,87,18,8.6,23,EA Sports,856,E,1,MEDIUM,2
The Sims 3: Late Night Expansion Pack,3625,PC,0,2010,Simulation,9,Electronic Arts,126,0.59,0.87,0,0.23,1.7,74,17,5.3,77,The Sims Studio,598,T,0,MEDIUM,2
No Man's Sky,1274,PS4,3,2016,Action,1,Hello Games,80,0.63,0.76,0.03,0.27,1.7,71,94,4.5,5096,Hello Games,1234,T,0,MEDIUM,2
SOCOM 3: U.S. Navy SEALs,3846,PS2,13,2005,Shooter,3,Sony Computer Entertainment,34,1.22,0.34,0.04,0.1,1.69,82,59,8.8,64,Zipper Interactive,289,M,2,MEDIUM,2
BioShock Infinite,3457,PS3,14,2013,Shooter,3,Take Two Interactive,21,0.72,0.65,0.04,0.28,1.69,94,27,8.5,1863,Irrational Games,1160,M,2,MEDIUM,2
Harry Potter and the Sorcerer's Stone,863,GBA,6,2001,Action,1,Electronic Arts,126,0.87,0.66,0.08,0.08,1.69,64,8,7.1,7,Griptonite Games,425,E,1,MEDIUM,2
Dragon Ball Z: The Legacy of Goku,2482,GBA,6,2002,Role-Playing,4,Infogrames,116,1.52,0.12,0,0.05,1.69,53,15,6.9,28,Webfoot Technologies,571,E,1,MEDIUM,2
Resident Evil 4,4014,GC,4,2005,Action,1,Capcom,261,0.98,0.42,0.22,0.06,1.69,96,82,9.4,767,Capcom,63,M,2,MEDIUM,2
Need For Speed: Undercover,1236,X360,15,2008,Racing,5,Electronic Arts,126,0.79,0.7,0.01,0.18,1.68,64,62,5.9,104,EA Vancouver,1275,T,0,MEDIUM,2
Sonic Colors,552,Wii,7,2010,Platform,6,Sega,147,0.92,0.6,0.01,0.15,1.68,78,58,8.5,301,Sonic Team,737,E,1,MEDIUM,2
Saints Row 2,2857,PS3,14,2008,Action,1,THQ,41,0.88,0.54,0.02,0.25,1.68,82,50,7.9,135,Volition Inc.,767,M,2,MEDIUM,2
Sid Meier's Civilization V,2517,PC,0,2010,Strategy,10,Take Two Interactive,21,0.98,0.52,0,0.17,1.68,90,70,7.9,2280,Firaxis Games,941,E10+,3,MEDIUM,2
The Sims: Superstar,2656,PC,0,2003,Simulation,9,Electronic Arts,126,1.67,0,0,0,1.68,79,20,8.2,25,Maxis,178,T,0,MEDIUM,2
Metroid Fusion,2347,GBA,6,2002,Action,1,Nintendo,156,1.18,0.27,0.17,0.06,1.68,92,44,9.1,200,Nintendo,1264,E,1,MEDIUM,2
We Ski,3843,Wii,7,2008,Sports,2,Namco Bandai Games,0,0.97,0.4,0.14,0.15,1.67,67,32,8.5,12,Bandai Namco Games,52,E,1,MEDIUM,2
Star Wars Battlefront: Renegade Squadron,3916,PSP,1,2007,Shooter,3,LucasArts,37,0.9,0.46,0,0.32,1.67,73,35,7.9,46,Rebellion,1269,T,0,MEDIUM,2
SSX 3,1566,PS2,13,2003,Sports,2,Electronic Arts,126,0.93,0.52,0,0.22,1.67,93,41,9.1,125,EA Canada,538,E,1,MEDIUM,2
Madden NFL 2001,2617,PS,8,2000,Sports,2,Electronic Arts,126,1.58,0.05,0,0.04,1.67,90,14,6.8,4,EA Sports,856,E,1,MEDIUM,2
Star Wars: Battlefront II,3707,XB,2,2005,Shooter,3,Activision,176,1.22,0.39,0,0.06,1.67,83,40,8.9,106,Pandemic Studios,517,T,0,MEDIUM,2
Tony Hawk's Pro Skater 3,2043,PS,8,2001,Sports,2,Activision,176,1.09,0.49,0.02,0.07,1.67,87,10,8.3,36,Shaba Games,1124,E,1,MEDIUM,2
Dragon Age: Origins,1764,PS3,14,2009,Role-Playing,4,Electronic Arts,126,0.96,0.42,0.08,0.21,1.67,87,41,7.9,597,BioWare,1023,M,2,MEDIUM,2
Spy Hunter,903,PS2,13,2001,Racing,5,Midway Games,146,1.13,0.32,0,0.22,1.67,84,28,7.8,13,Paradigm Entertainment,529,T,0,MEDIUM,2
NCAA Football 2004,4196,PS2,13,2003,Sports,2,Electronic Arts,126,1.35,0.09,0,0.23,1.67,94,15,8.8,81,EA Sports,856,E,1,MEDIUM,2
Fight Night Round 3,280,PS3,14,2006,Fighting,8,Electronic Arts,126,0.81,0.58,0.01,0.26,1.67,83,37,7.9,24,EA Chicago,1248,T,0,MEDIUM,2
StarCraft II: Heart of the Swarm,2046,PC,0,2013,Strategy,10,Activision,176,0.83,0.66,0,0.18,1.67,86,68,7.9,1346,Blizzard Entertainment,599,T,0,MEDIUM,2
SpongeBob SquarePants: Battle for Bikini Bottom,3887,PS2,13,2003,Platform,6,THQ,41,1.08,0.45,0,0.14,1.67,71,9,9,85,Heavy Iron Studios,315,E,1,MEDIUM,2
Until Dawn,2601,PS4,3,2015,Adventure,11,Sony Computer Entertainment Europe,153,0.45,0.9,0.05,0.26,1.66,79,103,8.2,2161,SuperMassive Games,514,M,2,MEDIUM,2
Big Beach Sports,2980,Wii,7,2008,Sports,2,THQ,41,0.45,1.02,0,0.2,1.66,44,17,8,41,HB Studios Multimedia,205,E,1,MEDIUM,2
SSX,1667,PS2,13,2000,Sports,2,Electronic Arts,126,0.78,0.61,0.06,0.2,1.66,93,35,8.3,33,EA Sports Big,61,E,1,MEDIUM,2
Shaun White Snowboarding: Road Trip,2559,Wii,7,2008,Sports,2,Ubisoft,168,0.93,0.56,0,0.16,1.66,78,28,8.7,22,Ubisoft,855,E10+,3,MEDIUM,2
NBA Ballers,2564,PS2,13,2004,Sports,2,Midway Games,146,0.81,0.63,0,0.21,1.66,83,44,9.2,19,Midway,75,E,1,MEDIUM,2
Saints Row IV,625,X360,15,2013,Action,1,Deep Silver,95,1.01,0.5,0.01,0.13,1.66,81,42,6.5,325,Volition Inc.,767,M,2,MEDIUM,2
NBA Live 2003,3555,PS2,13,2002,Sports,2,Electronic Arts,126,1.25,0.15,0.03,0.22,1.66,83,22,8.3,28,EA Canada,538,E,1,MEDIUM,2
LEGO Batman 2: DC Super Heroes,3147,X360,15,2012,Action,1,Warner Bros. Interactive Entertainment,69,0.9,0.61,0,0.15,1.66,79,59,7.2,114,TT Games,828,E10+,3,MEDIUM,2
Dragon Ball Z: Budokai Tenkaichi,4181,PS2,13,2005,Fighting,8,Atari,229,0.96,0.12,0.54,0.04,1.66,72,29,8.4,71,Spike,1131,T,0,MEDIUM,2
Dark Souls III,3314,PS4,3,2016,Role-Playing,4,Namco Bandai Games,0,0.65,0.45,0.34,0.22,1.65,89,69,8.8,1940,From Software,573,M,2,MEDIUM,2
Kirby's Return to Dreamland,1891,Wii,7,2011,Platform,6,Nintendo,156,0.58,0.21,0.79,0.07,1.65,77,49,8.5,156,HAL Labs,1289,E10+,3,MEDIUM,2
Mario Party 6,2894,GC,4,2004,Misc,7,Nintendo,156,0.9,0.11,0.6,0.05,1.65,71,33,7.9,51,Hudson Soft,304,E,1,MEDIUM,2
Star Wars The Clone Wars: Lightsaber Duels,4015,Wii,7,2008,Action,1,LucasArts,37,1.21,0.3,0,0.14,1.65,56,24,6.7,18,Krome Studios,904,T,0,MEDIUM,2
Need for Speed Carbon,3860,X360,15,2006,Racing,5,Electronic Arts,126,0.76,0.69,0.02,0.18,1.65,77,52,6.3,82,EA Canada,538,E10+,3,MEDIUM,2
Heavenly Sword,3266,PS3,14,2007,Action,1,Sony Computer Entertainment,34,0.57,0.72,0.06,0.29,1.65,79,64,8.3,544,Ninja Theory,676,T,0,MEDIUM,2
MySims,1650,Wii,7,2007,Simulation,9,Electronic Arts,126,0.9,0.54,0.04,0.17,1.65,68,38,7.2,56,EA Redwood Shores,839,E,1,MEDIUM,2
Army of Two,3569,X360,15,2008,Shooter,3,Electronic Arts,126,1.09,0.37,0.02,0.16,1.64,72,76,7.6,233,EA Montreal,607,M,2,MEDIUM,2
Tiger Woods PGA Tour 2003,2172,PS2,13,2002,Sports,2,Electronic Arts,126,0.8,0.63,0,0.21,1.64,88,18,8.9,18,EA Sports,856,E,1,MEDIUM,2
Prince of Persia: Warrior Within,2090,PS2,13,2004,Action,1,Ubisoft,168,0.54,0.88,0,0.22,1.64,83,51,8.5,120,Ubisoft Montreal,164,M,2,MEDIUM,2
Far Cry 4,846,XOne,5,2014,Shooter,3,Ubisoft,168,0.8,0.69,0.01,0.14,1.63,82,15,7.5,383,Ubisoft Montreal,164,M,2,MEDIUM,2
ESPN NFL 2K5,2402,XB,2,2004,Sports,2,Sega,147,1.54,0.02,0,0.07,1.63,92,42,9.1,93,Visual Concepts,261,E,1,MEDIUM,2
Beyond: Two Souls,1016,PS3,14,2013,Adventure,11,Sony Computer Entertainment,34,0.52,0.8,0.06,0.26,1.63,70,98,8.1,2652,Quantic Dream,107,M,2,MEDIUM,2
Pikmin,3006,GC,4,2001,Strategy,10,Nintendo,156,0.78,0.25,0.56,0.04,1.63,89,39,8.7,121,Nintendo,1264,E,1,MEDIUM,2
Tiger Woods PGA Tour 2004,2398,PS2,13,2003,Sports,2,Electronic Arts,126,1.18,0.34,0,0.1,1.63,89,23,8.8,40,EA Sports,856,E,1,MEDIUM,2
Call of Duty: Black Ops,2219,PC,0,2010,Shooter,3,Activision,176,0.58,0.81,0,0.23,1.63,81,29,5.2,1651,Treyarch,1245,M,2,MEDIUM,2
Ape Escape,448,PS,8,1999,Platform,6,Sony Computer Entertainment,34,0.71,0.48,0.32,0.11,1.63,90,19,8.8,53,SCEI,821,E,1,MEDIUM,2
NCAA Football 2005,1246,PS2,13,2004,Sports,2,Electronic Arts,126,1.32,0.09,0,0.22,1.62,88,29,8.8,35,EA Tiburon,397,E,1,MEDIUM,2
Max Payne 3,639,X360,15,2012,Shooter,3,Take Two Interactive,21,0.86,0.62,0.01,0.13,1.62,86,80,7.8,869,Rockstar Studios,1046,M,2,MEDIUM,2
Viva Pinata,2604,X360,15,2006,Simulation,9,Microsoft Game Studios,14,0.45,0.95,0.02,0.2,1.62,84,65,8,131,Rare Ltd.,1004,E,1,MEDIUM,2
Kinectimals,421,X360,15,2010,Simulation,9,Microsoft Game Studios,14,1.02,0.46,0,0.13,1.62,74,50,3.1,69,Frontier Developments,643,E,1,MEDIUM,2
Kirby Air Ride,1427,GC,4,2003,Racing,5,Nintendo,156,1.01,0.11,0.45,0.04,1.62,61,28,7.9,69,HAL Labs,1289,E,1,MEDIUM,2
LEGO Marvel Super Heroes,3910,PS4,3,2013,Action,1,Warner Bros. Interactive Entertainment,69,0.59,0.76,0.01,0.26,1.62,83,22,7.7,262,TT Games,828,E10+,3,MEDIUM,2
Rock Band,1776,PS3,14,2007,Misc,7,Electronic Arts,126,0.99,0.41,0,0.22,1.62,92,35,8.4,107,Harmonix Music Systems,1009,T,0,MEDIUM,2
Dragon Quest IV: Chapters of the Chosen,4108,DS,11,2007,Role-Playing,4,Square Enix,127,0.3,0.02,1.27,0.03,1.62,80,44,7.9,50,ArtePiazza,1133,E10+,3,MEDIUM,2
NFL Street 2,1272,PS2,13,2004,Sports,2,Electronic Arts,126,0.79,0.62,0,0.21,1.61,77,33,8.7,20,EA Tiburon,397,E,1,MEDIUM,2
Super Mario Strikers,3959,GC,4,2005,Sports,2,Nintendo,156,0.98,0.38,0.2,0.04,1.61,76,39,8.7,55,Next Level Games,299,E,1,MEDIUM,2
Rage,1327,X360,15,2011,Shooter,3,Bethesda Softworks,189,0.82,0.6,0.03,0.15,1.6,81,77,6.7,559,id Software,417,M,2,MEDIUM,2
Mario Hoops 3 on 3,3654,DS,11,2006,Sports,2,Nintendo,156,0.98,0.04,0.49,0.09,1.6,69,40,8,37,Square Enix,921,E,1,MEDIUM,2
Just Cause 2,1099,X360,15,2010,Action,1,Square Enix,127,0.59,0.83,0.02,0.17,1.6,81,74,8,267,Avalanche Studios,1113,M,2,MEDIUM,2
Silent Hill,882,PS,8,1999,Action,1,Konami Digital Entertainment,22,0.71,0.48,0.3,0.1,1.6,86,17,9.2,326,KCET,256,M,2,MEDIUM,2
Sonic Heroes,1601,GC,4,2003,Platform,6,Sega,147,1.05,0.44,0.06,0.04,1.6,72,49,7.8,125,Sonic Team,737,E,1,MEDIUM,2
ESPN NBA 2K5,2434,PS2,13,2004,Sports,2,Global Star,74,1.26,0.12,0,0.21,1.59,83,24,7.5,36,Visual Concepts,261,E,1,MEDIUM,2
Diablo,610,PC,0,1996,Role-Playing,4,Activision,176,0.01,1.58,0,0,1.59,94,12,8.7,850,Blizzard Entertainment,599,M,2,MEDIUM,2
Far Cry 2,2399,X360,15,2008,Action,1,Ubisoft,168,0.71,0.69,0.02,0.18,1.59,85,75,6.7,288,Ubisoft Montreal,164,M,2,MEDIUM,2
The Legend of Zelda: Twilight Princess,4326,GC,4,2006,Action,1,Nintendo,156,1.15,0.36,0.04,0.04,1.59,96,16,9.2,568,Nintendo,1264,T,0,MEDIUM,2
Pro Evolution Soccer 2008,2920,PS3,14,2007,Sports,2,Konami Digital Entertainment,22,0.04,1.1,0.32,0.13,1.59,74,19,6.1,47,Konami,489,E,1,MEDIUM,2
Pokemon Battle Revolution,260,Wii,7,2006,Role-Playing,4,Nintendo,156,0.78,0.37,0.3,0.13,1.58,53,34,6.7,106,Genius Sonority Inc.,169,E,1,MEDIUM,2
Kingdom Hearts 3D: Dream Drop Distance,2175,3DS,16,2012,Action,1,Square Enix,127,0.88,0.26,0.34,0.1,1.58,75,54,8.2,267,Square Enix,921,E10+,3,MEDIUM,2
Dance Dance Revolution: Hottest Party 2,3721,Wii,7,2008,Simulation,9,Konami Digital Entertainment,22,0.94,0.48,0.01,0.15,1.58,69,8,6.8,6,Konami,489,E10+,3,MEDIUM,2
SoulCalibur IV,3434,X360,15,2008,Fighting,8,Ubisoft,168,0.92,0.43,0.07,0.15,1.58,85,62,7.9,157,Namco,1098,T,0,MEDIUM,2
Sonic Generations,1552,PS3,14,2011,Platform,6,Sega,147,0.6,0.69,0.02,0.26,1.58,76,38,8.2,253,Sega,1164,E,1,MEDIUM,2
Spyro 2: Season of Flame,2460,GBA,6,2002,Platform,6,Vivendi Games,245,0.85,0.65,0,0.08,1.58,76,18,7.6,13,Digital Eclipse,1118,E,1,MEDIUM,2
Mario Party 10,2379,WiiU,9,2015,Misc,7,Nintendo,156,0.69,0.53,0.24,0.12,1.58,66,66,6.5,279,Nintendo Nd Cube,124,E,1,MEDIUM,2
Devil May Cry 4,2140,PS3,14,2008,Action,1,Capcom,261,0.58,0.45,0.34,0.2,1.57,84,63,8.2,311,Capcom,63,M,2,MEDIUM,2
Dead Rising 3,2832,XOne,5,2013,Action,1,Microsoft Game Studios,14,1.06,0.35,0.01,0.15,1.57,78,69,6.8,908,Capcom Vancouver,359,M,2,MEDIUM,2
NCAA Football 2002,916,PS2,13,2001,Sports,2,Electronic Arts,126,0.77,0.6,0,0.2,1.57,90,18,8.7,24,EA Sports,856,E,1,MEDIUM,2
Gears of War: Judgment,1905,X360,15,2013,Shooter,3,Microsoft Game Studios,14,0.92,0.5,0.03,0.12,1.57,79,81,5.4,779,Epic Games,578,M,2,MEDIUM,2
Watch Dogs,1281,XOne,5,2014,Action,1,Ubisoft,168,0.9,0.53,0,0.14,1.57,78,15,5.8,712,Ubisoft Montreal,164,M,2,MEDIUM,2
Guitar Hero: On Tour Decades,224,DS,11,2008,Misc,7,Activision,176,0.84,0.57,0,0.16,1.57,72,40,8,5,Vicarious Visions,312,E10+,3,MEDIUM,2
Madden NFL 15,2128,XOne,5,2014,Sports,2,Electronic Arts,126,1.31,0.09,0,0.16,1.57,80,19,6.4,138,EA Sports,856,E,1,MEDIUM,2
Conflict: Desert Storm,2501,PS2,13,2002,Shooter,3,Gotham Games,196,0.98,0.53,0,0.06,1.57,55,10,8.6,45,Pivotal Games,864,T,0,MEDIUM,2
Mario Party 7,373,GC,4,2005,Misc,7,Nintendo,156,0.95,0.11,0.46,0.04,1.57,64,25,7.9,53,Hudson,685,E,1,MEDIUM,2
Dragon Quest V: Hand of the Heavenly Bride,6,DS,11,2008,Role-Playing,4,Square Enix,127,0.17,0.02,1.36,0.02,1.57,84,46,8.5,57,ArtePiazza,1133,E10+,3,MEDIUM,2
Smuggler's Run,3033,PS2,13,2000,Racing,5,Take Two Interactive,21,0.77,0.6,0,0.2,1.56,79,21,6.8,18,Rockstar San Diego,499,T,0,MEDIUM,2
Fight Night Round 3,280,PS2,13,2006,Fighting,8,Electronic Arts,126,1.07,0.4,0,0.1,1.56,84,32,8.1,41,EA Chicago,1248,T,0,MEDIUM,2
Need for Speed: Most Wanted,1728,X360,15,2012,Racing,5,Electronic Arts,126,0.62,0.78,0.01,0.15,1.56,83,54,8.5,134,EA Canada,538,T,0,MEDIUM,2
Carnival Games: Mini Golf,1491,Wii,7,2008,Sports,2,Take Two Interactive,21,0.86,0.54,0,0.15,1.56,38,10,5.7,7,Cat Daddy Games,1105,E,1,MEDIUM,2
Pokemon Mystery Dungeon: Explorers of Sky,289,DS,11,2009,Role-Playing,4,Nintendo,156,0.57,0.43,0.44,0.12,1.56,54,26,9,133,ChunSoft,498,E,1,MEDIUM,2
LEGO Pirates of the Caribbean: The Video Game,3703,Wii,7,2011,Action,1,Disney Interactive Studios,124,0.73,0.67,0,0.15,1.55,73,14,7,13,Traveller's Tales,179,E10+,3,MEDIUM,2
Stuntman,2879,PS2,13,2002,Racing,5,Atari,229,0.76,0.59,0,0.2,1.55,71,37,5.7,36,Reflections Interactive,800,T,0,MEDIUM,2
Tom Clancy's Rainbow Six 3,3216,XB,2,2003,Shooter,3,Ubisoft,168,0.91,0.57,0,0.07,1.55,86,39,8.5,31,Ubisoft,855,M,2,MEDIUM,2
LEGO Harry Potter: Years 1-4,4210,X360,15,2010,Action,1,Warner Bros. Interactive Entertainment,69,0.95,0.46,0,0.14,1.55,79,58,8,62,Traveller's Tales,179,E10+,3,MEDIUM,2
Spider-Man 2: Enter: Electro,4382,PS,8,2001,Action,1,Activision,176,0.57,0.87,0.02,0.09,1.55,74,15,8.7,35,Vicarious Visions,312,E,1,MEDIUM,2
Guitar Hero 5,645,Wii,7,2009,Misc,7,Activision,176,0.92,0.48,0,0.15,1.55,89,25,6.9,49,Vicarious Visions,312,T,0,MEDIUM,2
Wolfenstein: The New Order,2093,PS4,3,2014,Shooter,3,Bethesda Softworks,189,0.47,0.8,0.03,0.24,1.55,79,73,8.1,1116,MachineGames,862,M,2,MEDIUM,2
Mafia II,1278,X360,15,2010,Action,1,Take Two Interactive,21,0.85,0.55,0,0.15,1.55,74,79,7.8,458,2K Czech,840,M,2,MEDIUM,2
BioShock 2,587,PS3,14,2010,Shooter,3,Take Two Interactive,21,0.85,0.46,0.02,0.22,1.54,88,62,8.2,492,2K Marin,1117,M,2,MEDIUM,2
Dark Cloud,2572,PS2,13,2000,Role-Playing,4,Sony Computer Entertainment,34,0.83,0.44,0.08,0.19,1.54,80,27,8.2,99,Level 5,968,T,0,MEDIUM,2
Warcraft III: The Frozen Throne,2155,PC,0,2003,Strategy,10,Activision,176,0.58,0.87,0,0.09,1.54,88,23,9,713,Blizzard Entertainment,599,T,0,MEDIUM,2
Active Life: Outdoor Challenge,716,Wii,7,2008,Sports,2,Atari,229,0.78,0.43,0.19,0.14,1.54,69,6,8.1,14,h.a.n.d. Inc.,1039,E,1,MEDIUM,2
Tom Clancy's Ghost Recon Advanced Warfighter,2495,X360,15,2006,Shooter,3,Ubisoft,168,1.4,0.02,0.02,0.1,1.54,90,78,8,215,Ubisoft Paris,706,T,0,MEDIUM,2
MVP Baseball 2005,4256,PS2,13,2005,Sports,2,Electronic Arts,126,1.26,0.07,0,0.21,1.54,87,25,8.6,47,EA Sports,856,E,1,MEDIUM,2
Uncharted: Golden Abyss,1038,PSV,10,2011,Shooter,3,Sony Computer Entertainment,34,0.53,0.66,0.13,0.22,1.53,80,80,7.4,770,Naughty Dog Sony Bend,799,T,0,MEDIUM,2
Go Vacation,1846,Wii,7,2011,Misc,7,Namco Bandai Games,0,0.42,0.65,0.33,0.14,1.53,64,28,7.8,13,Namco Bandai Games,65,E10+,3,MEDIUM,2
Pro Evolution Soccer 2013,3729,PS3,14,2012,Sports,2,Konami Digital Entertainment,22,0.18,0.63,0.49,0.24,1.53,82,37,6.7,146,Konami,489,E,1,MEDIUM,2
Dishonored,3405,PS3,14,2012,Action,1,Bethesda Softworks,189,0.72,0.52,0.04,0.25,1.53,89,35,7.9,781,Arkane Studios,49,M,2,MEDIUM,2
Mario Golf: Toadstool Tour,1299,GC,4,2003,Sports,2,Nintendo,156,1.09,0.15,0.25,0.04,1.53,81,49,8,56,Camelot Software Planning,1266,E,1,MEDIUM,2
Call of Duty: Black Ops II,1206,PC,0,2012,Shooter,3,Activision,176,0.64,0.69,0,0.19,1.53,74,11,4.2,1635,Treyarch,1245,M,2,MEDIUM,2
Resident Evil: The Umbrella Chronicles,18,Wii,7,2007,Action,1,Capcom,261,0.67,0.43,0.29,0.14,1.52,75,47,7.6,122,Cavia Inc.,1272,M,2,MEDIUM,2
The Simpsons Skateboarding,135,PS2,13,2002,Sports,2,Electronic Arts,126,0.36,0.9,0,0.27,1.52,38,21,5,26,The Code Monkeys,112,T,0,MEDIUM,2
Donkey Kong Country: Tropical Freeze,1895,WiiU,9,2014,Platform,6,Nintendo,156,0.7,0.55,0.16,0.12,1.52,83,77,8.9,712,Retro Studios,1167,E,1,MEDIUM,2
Fight Night Round 4,236,PS3,14,2009,Fighting,8,Electronic Arts,126,0.92,0.4,0,0.2,1.52,88,46,7.6,95,EA Canada,538,T,0,MEDIUM,2
Super Monkey Ball 2,3205,GC,4,2002,Puzzle,12,Atari,229,1.11,0.31,0.06,0.04,1.52,87,34,8.5,51,Amusement Vision,861,E,1,MEDIUM,2
Pac-Man World 2,1265,PS2,13,2002,Action,1,Namco Bandai Games,0,1.26,0.05,0,0.21,1.51,73,19,7.8,26,Namco,1098,E,1,MEDIUM,2
MySims Kingdom,2693,Wii,7,2008,Simulation,9,Electronic Arts,126,0.7,0.64,0.01,0.16,1.51,76,19,8.1,24,EA Redwood Shores,839,E,1,MEDIUM,2
Dead Space 2,3736,X360,15,2011,Shooter,3,Electronic Arts,126,0.94,0.44,0,0.13,1.51,90,83,8.6,679,Visceral Games,1271,M,2,MEDIUM,2
The Simpsons Game,3848,PS2,13,2007,Action,1,Electronic Arts,126,0.35,0.03,0,1.13,1.51,68,10,8.2,27,Electronic Arts,366,T,0,MEDIUM,2
The Simpsons Game,3848,DS,11,2007,Action,1,Electronic Arts,126,0.56,0.77,0,0.17,1.51,69,17,7.3,18,Griptonite Games,425,T,0,MEDIUM,2
Football Manager 2012,1061,PC,0,2011,Sports,2,Sega,147,0.02,1.16,0,0.33,1.51,84,45,8,172,Sports Interactive,190,E,1,MEDIUM,2
Ni no Kuni: Wrath of the White Witch,4160,PS3,14,2011,Role-Playing,4,Namco Bandai Games,0,0.6,0.47,0.21,0.23,1.51,85,89,8.6,984,Level 5,968,E10+,3,MEDIUM,2
SoulCalibur II,2137,GC,4,2003,Fighting,8,Namco Bandai Games,0,0.99,0.32,0.11,0.08,1.5,93,45,9.1,135,Namco,1098,T,0,MEDIUM,2
Call of Duty 3,2111,PS3,14,2006,Shooter,3,Activision,176,0.6,0.62,0.03,0.26,1.5,80,43,6.9,92,Treyarch,1245,T,0,MEDIUM,2
Tokyo Xtreme Racer Zero,2394,PS2,13,2000,Racing,5,Crave Entertainment,121,0.66,0.52,0.15,0.17,1.5,76,15,8.9,64,Genki,1122,E,1,MEDIUM,2
Red Faction II,3408,PS2,13,2002,Shooter,3,THQ,41,0.49,0.78,0,0.23,1.5,84,30,8.3,35,Volition Inc.,767,M,2,MEDIUM,2
Madden NFL 2001,2617,PS2,13,2000,Sports,2,Electronic Arts,126,1.19,0.07,0.05,0.2,1.5,91,25,7.7,7,EA Sports,856,E,1,MEDIUM,2
Star Wars: The Force Unleashed II,3225,PS3,14,2010,Action,1,LucasArts,37,0.8,0.49,0,0.21,1.5,63,41,6.8,121,LucasArts,888,T,0,MEDIUM,2
Rock Band 2,2407,PS3,14,2008,Misc,7,MTV Games,89,1.13,0.2,0,0.16,1.49,91,24,7.9,88,Harmonix Music Systems,1009,T,0,MEDIUM,2
Final Fantasy: Crystal Chronicles,3388,GC,4,2003,Role-Playing,4,Nintendo,156,0.72,0.38,0.36,0.04,1.49,80,55,8.1,94,Square Enix,921,T,0,MEDIUM,2
Medal of Honor: Frontline,728,XB,2,2002,Shooter,3,Electronic Arts,126,1,0.43,0,0.06,1.49,81,18,6.9,23,EA LA,1104,T,0,MEDIUM,2
Madden NFL 09,1910,PS2,13,2008,Sports,2,Electronic Arts,126,1.22,0,0,0.27,1.49,67,4,7,24,EA Tiburon,397,E,1,MEDIUM,2
Dead Rising 2,1734,X360,15,2010,Action,1,Capcom,261,0.75,0.52,0.09,0.12,1.49,79,76,6.9,216,Blue Castle Games,618,M,2,MEDIUM,2
Mafia II,1278,PS3,14,2010,Action,1,Take Two Interactive,21,0.5,0.69,0.04,0.26,1.49,75,61,7.7,297,2K Czech,840,M,2,MEDIUM,2
Batman: Arkham Knight,4250,XOne,5,2015,Action,1,Warner Bros. Interactive Entertainment,69,0.88,0.47,0,0.14,1.49,85,16,6.6,694,Rocksteady Studios,380,M,2,MEDIUM,2
Dirge of Cerberus: Final Fantasy VII,3954,PS2,13,2006,Shooter,3,Square Enix,127,0.47,0.37,0.52,0.12,1.48,57,51,6.9,103,Square Enix,921,T,0,MEDIUM,2
Sonic Rivals 2,4037,PSP,1,2007,Racing,5,Sega,147,0.44,0.67,0,0.37,1.48,60,24,7.8,35,Backbone Entertainment,1215,E,1,MEDIUM,2
Resistance 3,2484,PS3,14,2011,Shooter,3,Sony Computer Entertainment,34,0.64,0.57,0.05,0.22,1.48,83,91,7.8,543,Insomniac Games,567,M,2,MEDIUM,2
Drawn To Life: SpongeBob SquarePants Edition,4246,DS,11,2008,Adventure,11,THQ,41,0.99,0.35,0,0.13,1.48,68,12,5.5,4,Altron,345,E,1,MEDIUM,2
007: Quantum of Solace,745,X360,15,2008,Action,1,Activision,176,0.82,0.51,0.01,0.14,1.48,65,69,7.1,71,Treyarch,1245,T,0,MEDIUM,2
Major League Baseball 2K5,3412,PS2,13,2005,Sports,2,Take Two Interactive,21,0.72,0.56,0,0.19,1.48,82,19,7.4,20,Kush Games,668,E,1,MEDIUM,2
Fight Night 2004,1597,PS2,13,2004,Fighting,8,Electronic Arts,126,1.08,0.2,0,0.2,1.48,85,43,9,25,EA Sports,856,T,0,MEDIUM,2
LEGO Star Wars III: The Clone Wars,2852,X360,15,2011,Action,1,LucasArts,37,0.84,0.51,0,0.13,1.48,75,43,7.8,42,Traveller's Tales,179,E10+,3,MEDIUM,2
Tom Clancy's Splinter Cell: Pandora Tomorrow,1384,XB,2,2004,Action,1,Ubisoft,168,0.82,0.59,0,0.07,1.48,93,74,8.6,68,Ubisoft Shanghai,707,T,0,MEDIUM,2
Call of Duty Black Ops: Declassified,3264,PSV,10,2012,Action,1,Activision,176,0.71,0.43,0.07,0.26,1.47,33,58,4.8,479,Nihilistic,76,M,2,MEDIUM,2
Tom Clancy's Ghost Recon: Future Soldier,485,X360,15,2012,Shooter,3,Ubisoft,168,0.93,0.4,0.02,0.12,1.47,79,75,7.2,334,Ubisoft Paris,706,M,2,MEDIUM,2
Fight Night Round 3,280,X360,15,2006,Fighting,8,Electronic Arts,126,1.33,0.03,0.01,0.1,1.47,86,67,8.8,264,EA Chicago,1248,T,0,MEDIUM,2
Xenogears,3253,PS,8,1998,Role-Playing,4,SquareSoft,246,0.29,0.19,0.89,0.1,1.46,84,15,8.4,204,SquareSoft,148,T,0,MEDIUM,2
Super Scribblenauts,824,DS,11,2010,Puzzle,12,Warner Bros. Interactive Entertainment,69,1.06,0.29,0,0.11,1.46,81,53,8.2,46,5TH Cell,608,E10+,3,MEDIUM,2
Super Monkey Ball,3649,GC,4,2001,Puzzle,12,Atari,229,0.95,0.37,0.1,0.04,1.46,87,28,7.9,46,Amusement Vision,861,E,1,MEDIUM,2
SoulCalibur IV,3434,PS3,14,2008,Fighting,8,Ubisoft,168,0.72,0.4,0.14,0.2,1.46,85,65,7.9,129,Namco,1098,T,0,MEDIUM,2
Mario Superstar Baseball,2135,GC,4,2005,Sports,2,Nintendo,156,0.93,0.24,0.25,0.04,1.46,76,38,8.6,41,Namco,1098,E,1,MEDIUM,2
Battlefield: Bad Company,825,X360,15,2008,Shooter,3,Electronic Arts,126,0.81,0.46,0.04,0.15,1.46,83,70,7.7,263,EA DICE,122,T,0,MEDIUM,2
Homefront,3344,X360,15,2011,Shooter,3,THQ,41,0.83,0.48,0.02,0.12,1.45,70,85,6,399,Kaos Studios,376,M,2,MEDIUM,2
Onimusha 3: Demon Siege,462,PS2,13,2004,Action,1,Capcom,261,0.37,0.47,0.54,0.07,1.45,85,53,8.6,73,Capcom,63,M,2,MEDIUM,2
Red Dead Revolver,1758,PS2,13,2004,Shooter,3,Take Two Interactive,21,0.71,0.55,0,0.19,1.45,73,42,7.8,70,Rockstar San Diego,499,M,2,MEDIUM,2
Resident Evil: Outbreak,2335,PS2,13,2003,Action,1,Capcom,261,0.54,0.35,0.46,0.1,1.45,71,40,8.3,94,Capcom,63,M,2,MEDIUM,2
Mass Effect 2,91,PS3,14,2011,Role-Playing,4,Electronic Arts,126,0.78,0.45,0.03,0.19,1.45,94,62,8.5,1081,BioWare,1023,M,2,MEDIUM,2
LEGO Battles: Ninjago,96,DS,11,2011,Strategy,10,Warner Bros. Interactive Entertainment,69,1.02,0.32,0,0.11,1.45,59,14,6.9,11,Hellbent Games,1286,E,1,MEDIUM,2
NBA 2K14,3653,PS4,3,2013,Sports,2,Take Two Interactive,21,0.89,0.31,0.01,0.23,1.45,85,20,6.5,368,Visual Concepts,261,E,1,MEDIUM,2
SingStar Pop,264,PS2,13,2007,Misc,7,Sony Computer Entertainment,34,0.04,1.08,0,0.32,1.44,73,13,7.5,8,SCEE London Studio,807,E10+,3,MEDIUM,2
Disney Infinity,1924,X360,15,2013,Action,1,Disney Interactive Studios,124,0.97,0.34,0,0.13,1.44,74,38,6.5,79,Avalanche Software,338,E10+,3,MEDIUM,2
My Word Coach,1420,DS,11,2007,Misc,7,Ubisoft,168,0.37,0.89,0,0.18,1.44,71,7,6.8,5,Ubisoft,855,E,1,MEDIUM,2
Tiger Woods PGA Tour 2005,1807,PS2,13,2004,Sports,2,Electronic Arts,126,1.03,0.32,0,0.09,1.44,88,30,8.2,20,EA Sports,856,E,1,MEDIUM,2
NCAA Football 2003,1164,PS2,13,2002,Sports,2,Electronic Arts,126,1.16,0.08,0,0.19,1.44,91,19,8.6,27,EA Sports,856,E,1,MEDIUM,2
Star Wars: The Force Unleashed II,3225,X360,15,2010,Action,1,LucasArts,37,0.95,0.37,0,0.11,1.43,61,59,5.7,180,LucasArts,888,T,0,MEDIUM,2
Frogger 2: Swampy's Revenge,2842,PS,8,1999,Action,1,Hasbro Interactive,256,0.8,0.54,0,0.09,1.43,77,4,7.9,8,Blitz Games,401,E,1,MEDIUM,2
WWE SmackDown vs Raw 2008,3274,X360,15,2007,Fighting,8,THQ,41,0.92,0.38,0,0.13,1.43,71,41,6.8,48,Yuke's,487,T,0,MEDIUM,2
Kinect Joy Ride,1324,X360,15,2010,Racing,5,Microsoft Game Studios,14,0.92,0.39,0,0.12,1.43,52,46,5,20,BigPark,1102,E,1,MEDIUM,2
Smarty Pants,2417,Wii,7,2007,Misc,7,Electronic Arts,126,0.52,0.75,0,0.16,1.43,65,26,7.6,10,Planet Moon Studios,428,E,1,MEDIUM,2
Classic NES Series: Super Mario Bros.,393,GBA,6,2004,Platform,6,Nintendo,156,0,0,1.39,0.03,1.43,84,14,8.6,44,Nintendo,1264,E,1,MEDIUM,2
Anno 2070,3411,PC,0,2011,Strategy,10,Ubisoft,168,0,1.13,0,0.29,1.43,83,33,7,493,Blue Byte Related Designs,409,T,0,MEDIUM,2
Hasbro Family Game Night,2547,Wii,7,2008,Puzzle,12,Electronic Arts,126,0.96,0.33,0,0.13,1.43,63,12,7.5,11,EA Bright Light,1201,E,1,MEDIUM,2
Sonic Rivals,2065,PSP,1,2006,Racing,5,Sega,147,0.73,0.42,0,0.27,1.42,64,25,7.8,38,Backbone Entertainment,1215,E,1,MEDIUM,2
BioShock,1200,PS3,14,2008,Shooter,3,Take Two Interactive,21,0.75,0.46,0.01,0.2,1.42,94,51,8.7,881,Digital Extremes 2K Marin,988,M,2,MEDIUM,2
Mass Effect 3,656,PS3,14,2012,Role-Playing,4,Electronic Arts,126,0.63,0.56,0.03,0.2,1.42,93,30,5.5,1849,BioWare,1023,M,2,MEDIUM,2
Cabela's Big Game Hunter,783,PS2,13,2002,Sports,2,Activision,176,0.7,0.54,0,0.18,1.42,59,7,7.8,12,Sand Grain Studios,461,T,0,MEDIUM,2
SimCity (2013),3518,PC,0,2013,Simulation,9,Electronic Arts,126,0.48,0.77,0,0.17,1.42,64,75,2.2,4572,Maxis,178,E10+,3,MEDIUM,2
The Legend of Zelda: The Minish Cap,3656,GBA,6,2004,Action,1,Nintendo,156,0.89,0.22,0.22,0.1,1.42,89,56,9,203,Flagship,562,E,1,MEDIUM,2
NFL Street,3897,PS2,13,2004,Sports,2,Electronic Arts,126,1.15,0.08,0,0.19,1.42,80,36,8.9,45,EA Tiburon,397,E,1,MEDIUM,2
Dead Space 2,3736,PS3,14,2011,Shooter,3,Electronic Arts,126,0.73,0.48,0,0.21,1.42,89,78,8.4,535,Visceral Games,1271,M,2,MEDIUM,2
Tiger Woods PGA Tour 09 All-Play,3459,Wii,7,2008,Sports,2,Electronic Arts,126,0.8,0.47,0,0.14,1.42,81,18,8.7,34,EA Tiburon,397,E,1,MEDIUM,2
Metal Gear Rising: Revengeance,543,PS3,14,2013,Action,1,Konami Digital Entertainment,22,0.45,0.37,0.44,0.16,1.42,80,61,7.9,746,PlatinumGames,1228,M,2,MEDIUM,2
Rayman Raving Rabbids,2134,Wii,7,2006,Misc,7,Ubisoft,168,1.22,0.06,0.02,0.11,1.42,76,54,7.9,116,Ubisoft Montpellier,470,E,1,MEDIUM,2
Dragon Quest Monsters: Joker 2,2720,DS,11,2010,Role-Playing,4,Square Enix,127,0.09,0.07,1.24,0.02,1.41,77,33,7.3,15,TOSE,155,E,1,MEDIUM,2
UFC Undisputed 2010,3304,PS3,14,2010,Fighting,8,THQ,41,0.8,0.4,0.02,0.18,1.41,85,54,7.2,48,Yuke's,487,T,0,MEDIUM,2
Medal of Honor: Warfighter,2792,PS3,14,2012,Action,1,Electronic Arts,126,0.48,0.62,0.06,0.26,1.41,55,22,6,250,Danger Close,402,M,2,MEDIUM,2
Sonic's Ultimate Genesis Collection,1947,X360,15,2009,Misc,7,Sega,147,0.85,0.43,0,0.13,1.41,79,45,8.5,40,Backbone Entertainment,1215,E10+,3,MEDIUM,2
Diablo III,961,X360,15,2013,Role-Playing,4,Activision,176,0.9,0.39,0,0.12,1.41,87,42,6.6,384,Blizzard Entertainment,599,M,2,MEDIUM,2
Twisted Metal: Black,2824,PS2,13,2001,Racing,5,Sony Computer Entertainment,34,1.19,0.17,0,0.05,1.41,91,15,8.4,98,Incognito Inc.,832,M,2,MEDIUM,2
NASCAR 2005: Chase for the Cup,2819,PS2,13,2004,Racing,5,Electronic Arts,126,0.69,0.54,0,0.18,1.41,87,19,8.4,15,EA Tiburon,397,E,1,MEDIUM,2
Fight Night Round 4,236,X360,15,2009,Fighting,8,Electronic Arts,126,0.95,0.33,0,0.13,1.4,87,76,8.1,86,EA Canada,538,T,0,MEDIUM,2
Spider-Man: The Movie,757,XB,2,2002,Action,1,Activision,176,1.07,0.28,0,0.05,1.4,79,29,7.5,11,Treyarch,1245,E,1,MEDIUM,2
LEGO Star Wars II: The Original Trilogy,834,PSP,1,2006,Action,1,LucasArts,37,0.58,0.5,0,0.32,1.4,83,11,8.6,26,Traveller's Tales,179,E10+,3,MEDIUM,2
Dead Space,963,X360,15,2008,Action,1,Electronic Arts,126,0.89,0.39,0,0.13,1.4,89,79,8.7,768,EA Redwood Shores,839,M,2,MEDIUM,2
LEGO Indiana Jones 2: The Adventure Continues,3096,Wii,7,2009,Action,1,Activision,176,0.9,0.38,0,0.12,1.4,72,13,6.1,14,Traveller's Tales,179,E10+,3,MEDIUM,2
Ridge Racer,2889,PSP,1,2004,Racing,5,Sony Computer Entertainment,34,0.36,0.44,0.32,0.27,1.4,88,58,8.2,65,Namco,1098,E,1,MEDIUM,2
Sonic Advance 3,201,GBA,6,2004,Platform,6,THQ,41,0.74,0.52,0.08,0.06,1.4,79,30,8.4,34,Dimps Corporation,127,E,1,MEDIUM,2
Colin McRae Rally 3,810,PS2,13,2002,Racing,5,Codemasters,143,0.03,1.05,0.02,0.3,1.4,86,25,7.7,24,Codemasters,609,E,1,MEDIUM,2
Forza Horizon 2,600,XOne,5,2014,Racing,5,Microsoft Game Studios,14,0.5,0.78,0.01,0.11,1.4,86,85,8.2,977,Playground Games,30,E10+,3,MEDIUM,2
Madden NFL 2002,4341,PS,8,2001,Sports,2,Electronic Arts,126,0.78,0.53,0,0.09,1.39,88,9,8,7,EA Sports,856,E,1,MEDIUM,2
Dynasty Warriors 5,1683,PS2,13,2005,Action,1,Tecmo Koei,155,0.24,0.18,0.91,0.06,1.39,69,29,8.8,68,Omega Force,1219,T,0,MEDIUM,2
Injustice: Gods Among Us,896,X360,15,2013,Fighting,8,Warner Bros. Interactive Entertainment,69,0.97,0.3,0,0.11,1.38,81,63,7.9,362,NetherRealm Studios,43,T,0,MEDIUM,2
Far Cry 2,2399,PS3,14,2008,Action,1,Ubisoft,168,0.43,0.69,0.01,0.26,1.38,85,49,6.4,241,Ubisoft Montreal,164,M,2,MEDIUM,2
Yoshi's New Island,180,3DS,16,2014,Platform,6,Nintendo,156,0.48,0.53,0.28,0.09,1.38,64,71,6.1,155,Arzest,534,E,1,MEDIUM,2
True Crime: Streets of LA,3796,XB,2,2003,Action,1,Activision,176,0.96,0.37,0,0.05,1.38,77,39,7.8,28,Luxoflux Inc.,81,M,2,MEDIUM,2
Ryse: Son of Rome,2387,XOne,5,2013,Action,1,Microsoft Game Studios,14,0.83,0.43,0,0.13,1.38,60,77,6.1,1409,Crytek,876,M,2,MEDIUM,2
Mortal Kombat X,2039,XOne,5,2015,Fighting,8,Warner Bros. Interactive Entertainment,69,1.03,0.21,0,0.14,1.38,86,21,7.3,279,Warner Bros. Interactive Entertainment NetherRealm Studios,1220,M,2,MEDIUM,2
Rise of the Tomb Raider,1355,XOne,5,2015,Adventure,11,Square Enix,127,0.55,0.7,0.02,0.11,1.38,86,102,8,1288,Crystal Dynamics,875,M,2,MEDIUM,2
Sonic Generations,1552,X360,15,2011,Platform,6,Sega,147,0.71,0.53,0,0.13,1.38,77,49,8.3,340,Sega Sonic Team,721,E,1,MEDIUM,2
Dave Mirra Freestyle BMX 2,3984,PS2,13,2001,Sports,2,Acclaim Entertainment,43,0.67,0.53,0,0.18,1.38,81,21,8.1,18,ZAxis Ltd.,146,T,0,MEDIUM,2
Bakugan: Battle Brawlers,1961,DS,11,2009,Action,1,Activision,176,1.26,0.02,0,0.1,1.38,60,6,6.7,7,Now Production,13,E,1,MEDIUM,2
LEGO Indiana Jones: The Original Adventures,3839,PS2,13,2008,Action,1,LucasArts,37,0.6,0.01,0,0.76,1.37,77,12,8.4,16,Traveller's Tales,179,E10+,3,MEDIUM,2
Deus Ex: Human Revolution,2279,X360,15,2011,Shooter,3,Square Enix,127,0.76,0.47,0.02,0.12,1.37,89,70,8.3,684,Eidos Montreal,1065,M,2,MEDIUM,2
Final Fantasy XII: Revenant Wings,562,DS,11,2007,Role-Playing,4,Square Enix,127,0.33,0.41,0.54,0.1,1.37,81,44,6.1,60,Square Enix Think and Feel,371,E10+,3,MEDIUM,2
Call of Duty: Black Ops,2219,Wii,7,2010,Shooter,3,Activision,176,0.8,0.45,0,0.12,1.37,80,25,5.8,87,Treyarch,1245,M,2,MEDIUM,2
Deus Ex: Human Revolution,2279,PS3,14,2011,Shooter,3,Square Enix,127,0.5,0.59,0.07,0.22,1.37,89,50,8.2,682,Eidos Montreal,1065,M,2,MEDIUM,2
Star Wars Knights of the Old Republic II: The Sith Lords,1023,XB,2,2004,Role-Playing,4,Activision,176,0.99,0.33,0,0.05,1.37,86,67,8.6,140,Obsidian Entertainment,693,T,0,MEDIUM,2
The Sims 2,2981,PSP,1,2005,Simulation,9,Electronic Arts,126,0.49,0.55,0,0.33,1.37,65,17,6.9,32,Maxis,178,T,0,MEDIUM,2
Dead Rising 2,1734,PS3,14,2010,Action,1,Capcom,261,0.43,0.56,0.15,0.21,1.36,80,54,6.7,178,Blue Castle Games,618,M,2,MEDIUM,2
Ridge Racer 7,389,PS3,14,2006,Racing,5,Namco Bandai Games,0,0.24,0.7,0.16,0.26,1.36,78,45,7.1,52,Namco Bandai Games,65,E,1,MEDIUM,2
Tom Clancy's Ghost Recon 2,3295,XB,2,2004,Shooter,3,Ubisoft,168,0.86,0.45,0,0.06,1.36,80,53,8.9,58,Red Storm Entertainment,942,T,0,MEDIUM,2
Need for Speed: The Run,3892,X360,15,2011,Action,1,Electronic Arts,126,0.63,0.57,0,0.15,1.36,68,65,6,160,Black Box,1080,T,0,MEDIUM,2
Crash Bandicoot 2: N-Tranced,3661,GBA,6,2003,Platform,6,Vivendi Games,245,0.63,0.66,0,0.07,1.36,75,21,7.8,30,Vicarious Visions,312,E,1,MEDIUM,2
Titanfall,3835,X360,15,2014,Shooter,3,Electronic Arts,126,0.87,0.34,0.02,0.13,1.36,83,21,5.9,371,Bluepoint Games,630,M,2,MEDIUM,2
Dead to Rights,3911,PS2,13,2002,Shooter,3,Electronic Arts,126,0.67,0.52,0,0.17,1.36,73,20,8.9,36,Namco,1098,M,2,MEDIUM,2
WWE '13,1560,PS3,14,2012,Action,1,THQ,41,0.51,0.6,0,0.25,1.35,76,24,8.1,99,THQ,1216,T,0,MEDIUM,2
Hasbro Family Game Night 2,1290,Wii,7,2009,Misc,7,Electronic Arts,126,0.7,0.52,0,0.13,1.35,63,16,6.3,6,Electronic Arts,366,E,1,MEDIUM,2
Gardening Mama,231,DS,11,2009,Puzzle,12,505 Games,25,0.79,0.42,0.01,0.13,1.35,60,17,9.3,4,Taito Corporation,540,E,1,MEDIUM,2
Burnout Paradise,4371,X360,15,2008,Racing,5,Electronic Arts,126,0.63,0.57,0.01,0.14,1.35,88,68,6.9,279,Criterion Games,280,E10+,3,MEDIUM,2
Middle-Earth: Shadow of Mordor,1186,XOne,5,2014,Action,1,Warner Bros. Interactive Entertainment,69,0.73,0.5,0.01,0.12,1.35,87,12,8,585,Monolith Productions,848,M,2,MEDIUM,2
MotorStorm: Pacific Rift,2525,PS3,14,2008,Racing,5,Sony Computer Entertainment,34,0.43,0.65,0.02,0.25,1.35,82,63,8,318,Evolution Studios,634,T,0,MEDIUM,2
Samurai Warriors,3686,PS2,13,2004,Action,1,Electronic Arts,126,0.22,0.05,1.06,0.02,1.35,73,37,8.7,23,Omega Force,1219,T,0,MEDIUM,2
Battlefield 4,2423,PC,0,2013,Shooter,3,Electronic Arts,126,0.39,0.87,0,0.1,1.35,81,52,6,3517,EA DICE,122,M,2,MEDIUM,2
Gears of War 4,3922,XOne,5,2016,Shooter,3,Microsoft Game Studios,14,0.78,0.44,0,0.12,1.35,84,96,6.2,815,The Coalition,801,M,2,MEDIUM,2
FIFA Soccer 08,299,PSP,1,2007,Sports,2,Electronic Arts,126,0.2,0.76,0,0.39,1.35,79,7,7.4,15,EA Canada,538,E,1,MEDIUM,2
FIFA Soccer 09,638,PSP,1,2008,Sports,2,Electronic Arts,126,0.23,0.73,0.02,0.37,1.35,84,8,8.9,21,EA Canada,538,E,1,MEDIUM,2
FIFA Soccer 08,299,X360,15,2007,Sports,2,Electronic Arts,126,0.31,0.89,0.01,0.14,1.35,82,43,7.9,57,EA Canada,538,E,1,MEDIUM,2
Test Drive,2631,PS2,13,2002,Racing,5,Atari,229,0.95,0.21,0.01,0.18,1.34,73,19,7.4,23,Pitbull Syndicate,547,T,0,MEDIUM,2
Devil May Cry 4,2140,X360,15,2008,Action,1,Capcom,261,0.79,0.34,0.08,0.13,1.34,84,61,8,248,Capcom,63,M,2,MEDIUM,2
Tom Clancy's Rainbow Six: Vegas 2,488,PS3,14,2008,Shooter,3,Ubisoft,168,0.66,0.44,0.04,0.21,1.34,81,32,7.9,93,Ubisoft Montreal,164,M,2,MEDIUM,2
Metroid: Other M,2975,Wii,7,2010,Action,1,Nintendo,156,0.85,0.27,0.13,0.1,1.34,79,71,6.5,482,Team Ninja,353,T,0,MEDIUM,2
Crysis 2,2428,X360,15,2011,Action,1,Electronic Arts,126,0.71,0.49,0.02,0.12,1.34,84,72,7.5,533,Crytek,876,M,2,MEDIUM,2
Chrono Trigger,1520,DS,11,2008,Role-Playing,4,Square Enix,127,0.61,0.16,0.49,0.08,1.34,92,57,8.9,440,TOSE,155,E10+,3,MEDIUM,2
Marvel vs. Capcom 3: Fate of Two Worlds,2287,PS3,14,2011,Fighting,8,Capcom,261,0.81,0.28,0.11,0.14,1.34,84,56,7.3,147,Capcom,63,T,0,MEDIUM,2
Doom 3,1847,XB,2,2005,Shooter,3,Activision,176,0.85,0.43,0,0.06,1.34,88,71,7.4,116,Vicarious Visions,312,M,2,MEDIUM,2
Tom Clancy's Rainbow Six: Siege,2480,XOne,5,2015,Shooter,3,Ubisoft,168,0.77,0.45,0,0.12,1.34,74,24,6.9,252,Ubisoft Montreal,164,M,2,MEDIUM,2
F1 2010,2067,PS3,14,2010,Racing,5,Codemasters,143,0.25,0.75,0.08,0.26,1.34,84,46,7.8,83,Codemasters Birmingham,437,E,1,MEDIUM,2
Monster Hunter Freedom,4173,PSP,1,2005,Role-Playing,4,Capcom,261,0.24,0.03,1.03,0.04,1.34,71,34,8.6,78,Capcom,63,T,0,MEDIUM,2
Donkey Kong Jungle Beat,3872,GC,4,2004,Platform,6,Nintendo,156,0.84,0.22,0.24,0.04,1.34,80,49,8.3,30,Nintendo,1264,E10+,3,MEDIUM,2
Need for Speed Carbon,3860,PS2,13,2006,Racing,5,Electronic Arts,126,1.22,0.05,0.05,0.01,1.34,74,26,8.4,60,EA Canada,538,E10+,3,MEDIUM,2
Lost Planet: Extreme Condition,3512,X360,15,2006,Shooter,3,Capcom,261,1.09,0.04,0.1,0.1,1.34,79,76,7.1,187,Capcom,63,T,0,MEDIUM,2
Max Payne 2: The Fall of Max Payne,2896,PS2,13,2003,Shooter,3,Take Two Interactive,21,0.65,0.51,0,0.17,1.34,73,27,8.2,63,Rockstar Vienna,615,M,2,MEDIUM,2
Battlefield: Bad Company,825,PS3,14,2008,Shooter,3,Electronic Arts,126,0.76,0.35,0.05,0.18,1.34,84,50,8.1,203,EA DICE,122,T,0,MEDIUM,2
MVP Baseball 2004,652,PS2,13,2004,Sports,2,Electronic Arts,126,1.1,0.06,0,0.18,1.34,90,28,8.6,51,EA Sports,856,E,1,MEDIUM,2
Alan Wake,1055,X360,15,2010,Action,1,Microsoft Game Studios,14,0.66,0.5,0.05,0.13,1.33,83,100,8.1,1156,Remedy Entertainment,684,T,0,MEDIUM,2
Metroid Prime 2: Echoes,40,GC,4,2004,Shooter,3,Nintendo,156,0.87,0.35,0.07,0.04,1.33,92,60,8.8,279,Retro Studios,1167,T,0,MEDIUM,2
Corvette,160,PS2,13,2004,Racing,5,TDK Mediactive,16,0.65,0.51,0,0.17,1.33,57,15,6.5,21,Steel Monkeys,56,E,1,MEDIUM,2
WWE SmackDown vs Raw 2008,3274,PS3,14,2007,Fighting,8,THQ,41,0.62,0.49,0.01,0.2,1.33,74,27,7.3,41,Yuke's,487,T,0,MEDIUM,2
Skylanders SWAP Force,2530,X360,15,2013,Platform,6,Activision,176,0.86,0.34,0,0.12,1.32,83,37,5.7,45,Vicarious Visions,312,E10+,3,MEDIUM,2
Grand Theft Auto: Chinatown Wars,3787,DS,11,2009,Action,1,Take Two Interactive,21,0.58,0.56,0.05,0.14,1.32,93,85,8.3,280,Rockstar Leeds,787,M,2,MEDIUM,2
UFC Undisputed 2010,3304,X360,15,2010,Fighting,8,THQ,41,0.9,0.31,0,0.11,1.32,84,70,6.7,80,Yuke's,487,T,0,MEDIUM,2
World of Warcraft: Wrath of the Lich King,1419,PC,0,2008,Role-Playing,4,Activision,176,0.01,0.13,0,1.18,1.32,91,47,7.5,930,Blizzard Entertainment,599,T,0,MEDIUM,2
NFL 2K3,3636,PS2,13,2002,Sports,2,Atari,229,1.06,0.08,0,0.18,1.32,93,20,7.4,25,Visual Concepts,261,E,1,MEDIUM,2
Assassin's Creed III: Liberation,3875,PSV,10,2012,Action,1,Ubisoft,168,0.53,0.48,0.06,0.24,1.32,70,71,7.2,318,Ubisoft,855,M,2,MEDIUM,2
Your Shape: Fitness Evolved,3491,X360,15,2010,Sports,2,Ubisoft,168,0.79,0.41,0,0.11,1.32,73,32,7.5,25,Ubisoft Montreal,164,E,1,MEDIUM,2
Need for Speed Underground Rivals,4306,PSP,1,2005,Racing,5,Electronic Arts,126,0.69,0.37,0.02,0.24,1.32,74,36,8.5,38,Team Fusion,77,E,1,MEDIUM,2
Rage,1327,PS3,14,2011,Shooter,3,Bethesda Softworks,189,0.47,0.58,0.06,0.2,1.31,81,37,6.2,353,id Software,417,M,2,MEDIUM,2
LEGO Harry Potter: Years 1-4,4210,PS3,14,2010,Action,1,Warner Bros. Interactive Entertainment,69,0.55,0.55,0,0.21,1.31,79,42,8,52,Traveller's Tales,179,E10+,3,MEDIUM,2
Madagascar,282,PS2,13,2005,Platform,6,Activision,176,0.78,0.45,0,0.07,1.31,69,25,7.4,25,Toys for Bob,1025,E10+,3,MEDIUM,2
The Witcher 3: Wild Hunt,1310,XOne,5,2015,Role-Playing,4,Namco Bandai Games,0,0.69,0.5,0,0.11,1.31,91,13,9.2,3963,CD Projekt Red Studio,763,M,2,MEDIUM,2
Turok: Evolution,2103,PS2,13,2002,Shooter,3,Acclaim Entertainment,43,0.64,0.5,0,0.17,1.31,61,20,7.3,27,Acclaim,1198,M,2,MEDIUM,2
[Prototype],363,X360,15,2009,Action,1,Activision,176,0.84,0.35,0,0.12,1.31,78,83,7.8,356,Radical Entertainment,944,M,2,MEDIUM,2
Burnout 3: Takedown,3665,XB,2,2004,Racing,5,Electronic Arts,126,0.84,0.43,0,0.04,1.31,94,76,7.2,139,Criterion Games,280,T,0,MEDIUM,2
The Beatles: Rock Band,2069,X360,15,2009,Misc,7,MTV Games,89,0.97,0.23,0,0.11,1.3,89,76,8.6,127,Harmonix Music Systems,1009,T,0,MEDIUM,2
NBA Live 07,455,PS2,13,2006,Sports,2,Electronic Arts,126,1.07,0.04,0.02,0.17,1.3,63,12,6,39,EA Sports,856,E,1,MEDIUM,2
Yoshi's Woolly World,194,WiiU,9,2015,Platform,6,Nintendo,156,0.62,0.47,0.11,0.1,1.3,78,83,8.5,376,GoodFeel,1088,E,1,MEDIUM,2
Skylanders Giants,1468,X360,15,2012,Action,1,Activision,176,0.75,0.44,0,0.11,1.3,80,35,6.6,38,Toys for Bob,1025,E10+,3,MEDIUM,2
SingStar '80s,4075,PS2,13,2005,Misc,7,Sony Computer Entertainment,34,0.27,0.02,0,1.02,1.3,78,22,8.3,6,SCEA,708,T,0,MEDIUM,2
Tekken 6,4361,X360,15,2009,Fighting,8,Namco Bandai Games,0,0.71,0.41,0.05,0.12,1.3,80,59,7,132,Namco Bandai Games America Namco Bandai Games,138,T,0,MEDIUM,2
Assassin's Creed Syndicate,128,XOne,5,2015,Action,1,Ubisoft,168,0.62,0.56,0,0.11,1.3,78,22,6.1,402,Ubisoft Quebec,1213,M,2,MEDIUM,2
Pokemon Ranger: Guardian Signs,2035,DS,11,2010,Role-Playing,4,Nintendo,156,0.5,0.16,0.58,0.05,1.29,68,25,8.2,25,Creatures Inc.,1048,E,1,MEDIUM,2
LEGO Batman: The Videogame,3046,PS3,14,2008,Action,1,Warner Bros. Interactive Entertainment,69,0.72,0.39,0,0.19,1.29,75,24,7.7,33,Traveller's Tales,179,E10+,3,MEDIUM,2
Crysis 2,2428,PS3,14,2011,Action,1,Electronic Arts,126,0.46,0.56,0.06,0.21,1.29,85,54,7.2,406,Crytek,876,M,2,MEDIUM,2
Pirates of the Caribbean: The Curse of the Black Pearl,1258,GBA,6,2003,Platform,6,TDK Mediactive,16,0.93,0.34,0,0.02,1.29,49,10,6.2,5,Pocket Studios,90,E,1,MEDIUM,2
Namco Museum DS,64,DS,11,2007,Misc,7,Atari,229,1.13,0.01,0.06,0.09,1.29,67,19,5.9,8,M2,996,E,1,MEDIUM,2
Deal or No Deal,3908,Wii,7,2009,Misc,7,Zoo Games,175,1.2,0,0,0.09,1.29,56,4,5,5,Artefacts Studio,111,E,1,MEDIUM,2
Transformers,2597,PS2,13,2004,Shooter,3,Atari,229,0.63,0.49,0,0.16,1.29,75,51,8.6,27,Melbourne House,1031,T,0,MEDIUM,2
Dying Light,2267,XOne,5,2015,Action,1,Warner Bros. Interactive Entertainment,69,0.86,0.3,0.01,0.12,1.29,74,26,7.8,387,Techland,633,M,2,MEDIUM,2
Fallout 4,616,PC,0,2015,Role-Playing,4,Bethesda Softworks,189,0.51,0.67,0,0.1,1.29,84,38,5.4,7512,Bethesda Game Studios,121,M,2,MEDIUM,2
Sonic Colors,552,DS,11,2010,Platform,6,Sega,147,0.69,0.47,0.01,0.12,1.29,79,26,7.9,66,Dimps Corporation,127,E,1,MEDIUM,2
Assassin's Creed: Rogue,1340,PS3,14,2014,Action,1,Ubisoft,168,0.46,0.56,0.06,0.2,1.29,72,53,7.5,292,Ubisoft Sofia,793,M,2,MEDIUM,2
EA Playground,2176,Wii,7,2007,Sports,2,Electronic Arts,126,0.68,0.47,0,0.13,1.29,66,32,7.6,30,EA Canada,538,E,1,MEDIUM,2
The Elder Scrolls Online,3811,XOne,5,2015,Role-Playing,4,Bethesda Softworks,189,0.78,0.38,0,0.12,1.28,77,11,8.4,613,ZeniMax Media,394,M,2,MEDIUM,2
Champions of Norrath,3165,PS2,13,2004,Role-Playing,4,Sony Online Entertainment,164,0.63,0.49,0,0.16,1.28,85,51,8.4,57,Snowblind Studios,617,T,0,MEDIUM,2
LEGO Batman: The Videogame,3046,PSP,1,2008,Action,1,Warner Bros. Interactive Entertainment,69,0.57,0.44,0,0.27,1.28,73,5,7.4,10,Traveller's Tales,179,E10+,3,MEDIUM,2
Manhunt,1515,PS2,13,2003,Action,1,Take Two Interactive,21,0.63,0.49,0,0.16,1.28,76,47,8.3,136,Rockstar North,1197,M,2,MEDIUM,2
Need for Speed Carbon,3860,Wii,7,2006,Racing,5,Electronic Arts,126,0.45,0.66,0.02,0.15,1.28,67,21,7.3,26,EA Canada,538,E10+,3,MEDIUM,2
Silent Hill 2,193,PS2,13,2001,Action,1,Konami Digital Entertainment,22,0.62,0.49,0,0.16,1.28,89,34,8.9,557,KCET,256,M,2,MEDIUM,2
Castlevania: Symphony of the Night,1844,PS,8,1997,Platform,6,Konami Digital Entertainment,22,0.58,0.4,0.21,0.08,1.27,93,12,9.4,358,Konami,489,T,0,MEDIUM,2
Guitar Hero: Aerosmith,1467,Wii,7,2008,Misc,7,Activision,176,1.03,0.14,0,0.1,1.27,73,16,7.2,19,Vicarious Visions,312,T,0,MEDIUM,2
The LEGO Movie Videogame,3582,X360,15,2014,Action,1,Warner Bros. Interactive Entertainment,69,0.69,0.47,0,0.11,1.27,69,8,7.2,26,TT Games,828,E10+,3,MEDIUM,2
The Sims 2: Nightlife,1741,PC,0,2005,Simulation,9,Electronic Arts,126,1.22,0.05,0,0,1.27,76,31,6.6,71,Maxis,178,T,0,MEDIUM,2