-
Notifications
You must be signed in to change notification settings - Fork 0
/
vgsales.csv
We can't make this file beautiful and searchable because it's too large.
10001 lines (10001 loc) · 798 KB
/
vgsales.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
Rank,Name,Platform,Year,Genre,Publisher,NA_Sales,EU_Sales,JP_Sales,Other_Sales,Global_Sales
1,Wii Sports,Wii,2006,Sports,Nintendo,41.36,28.96,3.77,8.45,82.54
2,Super Mario Bros.,NES,1985,Platform,Nintendo,29.08,3.58,6.81,0.77,40.24
3,Mario Kart Wii,Wii,2008,Racing,Nintendo,15.69,12.84,3.8,3.29,35.62
4,Wii Sports Resort,Wii,2009,Sports,Nintendo,15.61,10.94,3.29,2.95,32.79
5,Pokemon Red/Pokemon Blue,GB,1996,Role-Playing,Nintendo,11.27,8.89,10.22,1,31.37
6,Tetris,GB,1989,Puzzle,Nintendo,23.2,2.26,4.22,0.58,30.26
7,New Super Mario Bros.,DS,2006,Platform,Nintendo,11.28,9.15,6.5,2.88,29.81
8,Wii Play,Wii,2006,Misc,Nintendo,13.96,9.18,2.93,2.84,28.92
9,New Super Mario Bros. Wii,Wii,2009,Platform,Nintendo,14.5,6.95,4.7,2.25,28.4
10,Duck Hunt,NES,1984,Shooter,Nintendo,26.93,0.63,0.28,0.47,28.31
11,Nintendogs,DS,2005,Simulation,Nintendo,9.05,10.95,1.93,2.74,24.67
12,Mario Kart DS,DS,2005,Racing,Nintendo,9.71,7.48,4.13,1.9,23.23
13,Pokemon Gold/Pokemon Silver,GB,1999,Role-Playing,Nintendo,9,6.18,7.2,0.71,23.1
14,Wii Fit,Wii,2007,Sports,Nintendo,8.92,8.03,3.6,2.15,22.7
15,Kinect Adventures!,X360,2010,Misc,Microsoft Game Studios,15.05,4.93,0.24,1.7,21.91
16,Wii Fit Plus,Wii,2009,Sports,Nintendo,9.01,8.49,2.53,1.77,21.79
17,Grand Theft Auto V,PS3,2013,Action,Take-Two Interactive,7.04,9.2,0.99,3.99,21.21
18,Grand Theft Auto: San Andreas,PS2,2004,Action,Take-Two Interactive,9.43,0.4,0.41,10.57,20.81
19,Super Mario World,SNES,1990,Platform,Nintendo,12.78,3.75,3.54,0.55,20.61
20,Brain Age: Train Your Brain in Minutes a Day,DS,2005,Misc,Nintendo,4.74,9.2,4.16,2.04,20.15
21,Pokemon Diamond/Pokemon Pearl,DS,2006,Role-Playing,Nintendo,6.38,4.46,6.04,1.36,18.25
22,Super Mario Land,GB,1989,Platform,Nintendo,10.83,2.71,4.18,0.42,18.14
23,Super Mario Bros. 3,NES,1988,Platform,Nintendo,9.54,3.44,3.84,0.46,17.28
24,Grand Theft Auto V,X360,2013,Action,Take-Two Interactive,9.7,5.19,0.06,1.42,16.37
25,Grand Theft Auto: Vice City,PS2,2002,Action,Take-Two Interactive,8.41,5.49,0.47,1.78,16.15
26,Pokemon Ruby/Pokemon Sapphire,GBA,2002,Role-Playing,Nintendo,6.06,3.9,5.38,0.5,15.85
27,Brain Age 2: More Training in Minutes a Day,DS,2005,Puzzle,Nintendo,3.43,5.35,5.32,1.18,15.29
28,Pokemon X/Pokemon Y,3DS,2013,Role-Playing,Nintendo,5.49,4.57,4.38,0.82,15.25
29,Grand Theft Auto V,PS4,2014,Action,Take-Two Interactive,4.62,7.74,0.49,2.36,15.22
30,Pokemon Black/Pokemon White,DS,2010,Role-Playing,Nintendo,5.51,3.18,5.66,0.8,15.15
31,Gran Turismo 3: A-Spec,PS2,2001,Racing,Sony Computer Entertainment,6.85,5.09,1.87,1.16,14.98
32,Call of Duty: Black Ops 3,PS4,2015,Shooter,Activision,5.98,6.08,0.37,2.4,14.84
33,Call of Duty: Modern Warfare 3,X360,2011,Shooter,Activision,9.07,4.27,0.13,1.33,14.8
34,Call of Duty: Black Ops,X360,2010,Shooter,Activision,9.76,3.71,0.11,1.14,14.71
35,Pokemon Yellow: Special Pikachu Edition,GB,1998,Role-Playing,Nintendo,5.89,5.04,3.12,0.59,14.64
36,Call of Duty: Black Ops II,PS3,2012,Shooter,Activision,4.99,5.73,0.65,2.42,13.8
37,Call of Duty: Black Ops II,X360,2012,Shooter,Activision,8.26,4.27,0.07,1.12,13.71
38,Pokemon Sun/Moon,3DS,2016,Role-Playing,Nintendo,5.34,3.77,3.63,0.87,13.61
39,Mario Kart 7,3DS,2011,Racing,Nintendo,5.39,4.38,2.79,0.97,13.53
40,Call of Duty: Modern Warfare 2,X360,2009,Shooter,Activision,8.52,3.62,0.08,1.28,13.5
41,Call of Duty: Modern Warfare 3,PS3,2011,Shooter,Activision,5.54,5.73,0.49,1.57,13.32
42,Grand Theft Auto III,PS2,2001,Action,Take-Two Interactive,6.99,4.51,0.3,1.3,13.1
43,Super Smash Bros. Brawl,Wii,2008,Fighting,Nintendo,6.64,2.55,2.67,1.01,12.88
44,Call of Duty: Black Ops,PS3,2010,Shooter,Activision,6.01,4.37,0.48,1.8,12.65
45,Pokemon Omega Ruby/Pokemon Alpha Sapphire,3DS,2014,Role-Playing,Nintendo,4.59,3.83,3.12,0.78,12.32
46,Animal Crossing: Wild World,DS,2005,Simulation,Nintendo,2.5,3.45,5.33,0.86,12.13
47,Halo 3,X360,2007,Shooter,Microsoft Game Studios,7.97,2.81,0.13,1.21,12.12
48,Super Mario 64,N64,1996,Platform,Nintendo,6.91,2.85,1.91,0.23,11.89
49,Pokemon HeartGold/Pokemon SoulSilver,DS,2009,Action,Nintendo,4.34,2.71,3.96,0.76,11.77
50,Gran Turismo 4,PS2,2004,Racing,Sony Computer Entertainment,3.01,0.01,1.1,7.53,11.66
51,Super Mario Galaxy,Wii,2007,Platform,Nintendo,6.06,3.35,1.2,0.74,11.36
52,Super Mario Land 2: 6 Golden Coins,GB,1992,Adventure,Nintendo,6.16,2.04,2.69,0.29,11.18
53,Grand Theft Auto IV,X360,2008,Action,Take-Two Interactive,6.79,3.08,0.14,1.04,11.03
54,Gran Turismo,PS,1997,Racing,Sony Computer Entertainment,4.02,3.87,2.54,0.52,10.95
55,Super Mario 3D Land,3DS,2011,Platform,Nintendo,4.9,3.09,2.15,0.79,10.92
56,FIFA 17,PS4,2016,Sports,Electronic Arts,1.17,7.92,0.12,1.59,10.8
57,Gran Turismo 5,PS3,2010,Racing,Sony Computer Entertainment,2.96,4.82,0.81,2.11,10.7
58,Call of Duty: Modern Warfare 2,PS3,2009,Shooter,Activision,4.99,3.64,0.38,1.6,10.6
59,Super Mario All-Stars,SNES,1993,Platform,Nintendo,5.99,2.15,2.12,0.29,10.55
60,Grand Theft Auto IV,PS3,2008,Action,Take-Two Interactive,4.78,3.7,0.44,1.61,10.52
61,Pokemon FireRed/Pokemon LeafGreen,GBA,2004,Role-Playing,Nintendo,4.34,2.65,3.15,0.35,10.49
62,Super Mario 64,DS,2004,Platform,Nintendo,5.01,3.07,1.25,0.97,10.3
63,New Super Mario Bros. 2,3DS,2012,Platform,Nintendo,3.66,3.45,2.55,0.64,10.3
64,Call of Duty: Ghosts,X360,2013,Shooter,Activision,6.76,2.59,0.04,0.92,10.3
65,Just Dance 3,Wii,2011,Misc,Ubisoft,5.95,3.11,0,1.06,10.12
66,Halo: Reach,X360,2010,Shooter,Microsoft Game Studios,7.07,1.99,0.08,0.79,9.93
67,Mario Kart 64,N64,1996,Racing,Nintendo,5.55,1.94,2.23,0.15,9.87
68,Halo 4,X360,2012,Shooter,Microsoft Game Studios,6.7,2.32,0.04,0.74,9.81
69,Final Fantasy VII,PS,1997,Role-Playing,Sony Computer Entertainment,3.01,2.47,3.28,0.96,9.72
70,Animal Crossing: New Leaf,3DS,2012,Simulation,Nintendo,2.17,2.53,4.56,0.41,9.67
71,Gran Turismo 2,PS,1999,Racing,Sony Computer Entertainment,3.88,3.42,1.69,0.5,9.49
72,Minecraft,X360,2013,Misc,Microsoft Game Studios,5.83,2.77,0.02,0.83,9.46
73,Just Dance 2,Wii,2010,Misc,Ubisoft,5.8,2.85,0.01,0.78,9.44
74,Call of Duty 4: Modern Warfare,X360,2007,Shooter,Activision,5.96,2.39,0.13,0.91,9.38
75,Call of Duty: Ghosts,PS3,2013,Shooter,Activision,4.11,3.63,0.39,1.26,9.38
76,Donkey Kong Country,SNES,1994,Platform,Nintendo,4.36,1.71,3,0.23,9.3
77,Uncharted 4: A Thief's End,PS4,2016,Shooter,Sony Computer Entertainment,3.95,3.41,0.2,1.49,9.04
78,Mario Party DS,DS,2007,Misc,Nintendo,4.4,1.85,1.98,0.68,8.91
79,The Elder Scrolls V: Skyrim,X360,2011,Role-Playing,Bethesda Softworks,5.09,2.81,0.1,0.86,8.86
80,Super Mario Kart,SNES,1992,Racing,Nintendo,3.54,1.24,3.81,0.18,8.76
81,FIFA 16,PS4,2015,Sports,Electronic Arts,1.14,6.15,0.07,1.29,8.64
82,Halo 2,XB,2004,Shooter,Microsoft Game Studios,6.82,1.53,0.05,0.08,8.49
83,Star Wars Battlefront (2015),PS4,2015,Shooter,Electronic Arts,3.23,3.65,0.23,1.36,8.48
84,Wii Party,Wii,2010,Misc,Nintendo,1.75,3.48,2.49,0.67,8.39
85,Mario Party 8,Wii,2007,Misc,Nintendo,3.74,2.25,1.58,0.71,8.28
86,FIFA Soccer 13,PS3,2012,Action,Electronic Arts,1.07,5.01,0.13,1.97,8.17
87,GoldenEye 007,N64,1997,Shooter,Nintendo,5.8,2.01,0.13,0.15,8.09
88,Pokemon Black 2/Pokemon White 2,DS,2012,Role-Playing,Nintendo,2.79,1.72,3.16,0.41,8.08
89,Final Fantasy X,PS2,2001,Role-Playing,Sony Computer Entertainment,2.91,2.07,2.73,0.33,8.05
90,The Sims 3,PC,2009,Simulation,Electronic Arts,1,6.43,0,0.6,8.02
91,Mario & Sonic at the Olympic Games,Wii,2007,Sports,Sega,2.57,3.86,0.66,0.91,7.99
92,Final Fantasy VIII,PS,1999,Role-Playing,SquareSoft,2.28,1.72,3.63,0.23,7.86
93,Pac-Man,2600,1982,Puzzle,Atari,7.28,0.45,0,0.08,7.81
94,Super Smash Bros. for Wii U and 3DS,3DS,2014,Fighting,Nintendo,3.36,1.45,2.47,0.49,7.78
95,Pokemon Platinum Version,DS,2008,Role-Playing,Nintendo,2.76,1.72,2.69,0.54,7.72
96,Call of Duty: Advanced Warfare,PS4,2014,Shooter,Activision,2.84,3.48,0.14,1.24,7.7
97,Grand Theft Auto: Liberty City Stories,PSP,2005,Action,Take-Two Interactive,2.9,2.81,0.24,1.73,7.69
98,The Legend of Zelda: Ocarina of Time,N64,1998,Action,Nintendo,4.1,1.89,1.45,0.16,7.6
99,Fallout 4,PS4,2015,Role-Playing,Bethesda Softworks,2.64,3.5,0.25,1.2,7.59
100,Crash Bandicoot 2: Cortex Strikes Back,PS,1997,Platform,Sony Computer Entertainment,3.78,2.17,1.31,0.31,7.58
101,Super Mario Galaxy 2,Wii,2010,Platform,Nintendo,3.59,2.36,0.98,0.62,7.55
102,Super Mario Bros. 2,NES,1988,Platform,Nintendo,5.39,1.18,0.7,0.19,7.46
103,Call of Duty: World at War,X360,2008,Shooter,Activision,4.85,1.91,0,0.7,7.46
104,Mario Kart 8,WiiU,2014,Racing,Nintendo,3.18,2.35,1.33,0.53,7.38
105,Battlefield 3,X360,2011,Shooter,Electronic Arts,4.47,2.11,0.06,0.69,7.34
106,Call of Duty: Black Ops 3,XOne,2015,Shooter,Activision,4.47,2.13,0.02,0.67,7.29
107,Need for Speed Underground,PS2,2003,Racing,Electronic Arts,3.27,2.83,0.08,1.02,7.2
108,Just Dance,Wii,2009,Misc,Ubisoft,3.48,2.99,0,0.73,7.2
109,Battlefield 3,PS3,2011,Shooter,Electronic Arts,2.86,2.89,0.35,1.09,7.18
110,Tekken 3,PS,1998,Fighting,Sony Computer Entertainment,3.27,2.22,1.4,0.29,7.16
111,The Legend of Zelda: Twilight Princess,Wii,2006,Action,Nintendo,3.74,2.14,0.6,0.68,7.16
112,Call of Duty: Infinite Warfare,PS4,2016,Shooter,Activision,2.71,3.11,0.19,1.15,7.15
113,Crash Bandicoot 3: Warped,PS,1998,Platform,Sony Computer Entertainment,3.68,1.75,1.42,0.28,7.13
114,Super Smash Bros. Melee,GC,2001,Fighting,Nintendo,4.41,1.04,1.39,0.22,7.07
115,Mario Kart: Double Dash!!,GC,2003,Racing,Nintendo,4.12,1.77,0.87,0.19,6.95
116,Need for Speed Underground 2,PS2,2004,Racing,Electronic Arts,2.71,3.02,0.08,1.09,6.9
117,Battlefield 1,PS4,2016,Shooter,Electronic Arts,1.96,3.58,0.28,1.05,6.87
118,Medal of Honor: Frontline,PS2,2002,Shooter,Electronic Arts,2.93,2.75,0.17,0.99,6.83
119,Crash Bandicoot,PS,1996,Platform,Sony Computer Entertainment,3.23,2.35,0.94,0.3,6.82
120,Just Dance 4,Wii,2012,Misc,Ubisoft,4.05,2.16,0,0.55,6.77
121,Gears of War 2,X360,2008,Shooter,Microsoft Game Studios,4.15,1.9,0.06,0.64,6.75
122,Uncharted 3: Drake's Deception,PS3,2011,Action,Sony Computer Entertainment,2.77,2.75,0.19,1.03,6.74
123,Zumba Fitness,Wii,2010,Sports,505 Games,3.46,2.6,0,0.66,6.72
124,Call of Duty 4: Modern Warfare,PS3,2007,Shooter,Activision,3.12,2.26,0.28,1.03,6.69
125,Uncharted 2: Among Thieves,PS3,2009,Action,Sony Computer Entertainment,3.28,2.2,0.21,0.98,6.67
126,FIFA 12,PS3,2011,Sports,Electronic Arts,0.84,4.3,0.11,1.4,6.65
127,Big Brain Academy,DS,2005,Misc,Nintendo,1.66,2.75,1.6,0.62,6.63
128,Red Dead Redemption,PS3,2010,Action,Take-Two Interactive,2.81,2.53,0.17,1,6.51
129,The Legend of Zelda,NES,1986,Action,Nintendo,3.74,0.93,1.69,0.14,6.51
130,Grand Theft Auto V,XOne,2014,Action,Take-Two Interactive,3.33,2.6,0.01,0.56,6.49
131,FIFA 14,PS3,2013,Sports,Electronic Arts,0.79,4.24,0.07,1.38,6.48
132,Donkey Kong Country Returns,Wii,2010,Platform,Nintendo,3.19,1.79,1.03,0.46,6.48
133,Assassin's Creed III,PS3,2012,Action,Ubisoft,2.65,2.52,0.16,1.12,6.46
134,Halo: Combat Evolved,XB,2001,Shooter,Microsoft Game Studios,4.98,1.3,0.08,0.07,6.43
135,The Elder Scrolls V: Skyrim,PS3,2011,Role-Playing,Bethesda Softworks,2.56,2.61,0.25,1,6.42
136,Pokemon Emerald Version,GBA,2004,Role-Playing,Nintendo,2.57,1.58,2.06,0.21,6.41
137,Kingdom Hearts,PS2,2002,Role-Playing,Sony Computer Entertainment,3.64,1.2,1.49,0.07,6.4
138,Pokemon Crystal Version,GB,2000,Role-Playing,Nintendo,2.55,1.56,1.29,0.99,6.39
139,Red Dead Redemption,X360,2010,Action,Take-Two Interactive,3.71,1.99,0.09,0.58,6.37
140,Halo 3: ODST,X360,2009,Shooter,Microsoft Game Studios,4.34,1.34,0.06,0.61,6.34
141,World of Warcraft,PC,2004,Role-Playing,Activision,0.1,6.22,0,0,6.32
142,Super Mario Sunshine,GC,2002,Platform,Nintendo,4.01,1.26,0.87,0.17,6.31
143,Street Fighter II: The World Warrior,SNES,1992,Fighting,Capcom,2.47,0.83,2.87,0.12,6.3
144,Driver,PS,1999,Action,GT Interactive,3.11,2.8,0.02,0.33,6.27
145,Gears of War 3,X360,2011,Shooter,Microsoft Game Studios,4.05,1.59,0.07,0.5,6.21
146,Kinect Sports,X360,2010,Sports,Microsoft Game Studios,3.92,1.73,0.03,0.51,6.19
147,Gears of War,X360,2006,Shooter,Microsoft Game Studios,3.54,1.88,0.07,0.6,6.09
148,FIFA 15,PS4,2014,Sports,Electronic Arts,0.81,4.33,0.05,0.91,6.09
149,Metal Gear Solid 2: Sons of Liberty,PS2,2001,Action,Konami Digital Entertainment,2.45,2.01,0.87,0.72,6.05
150,Sonic the Hedgehog 2,GEN,1992,Platform,Sega,4.47,1.2,0.16,0.19,6.03
151,Metal Gear Solid,PS,1998,Action,Konami Digital Entertainment,3.18,1.83,0.78,0.24,6.03
152,Metal Gear Solid 4: Guns of the Patriots,PS3,2008,Action,Konami Digital Entertainment,2.63,1.71,0.83,0.82,5.99
153,Final Fantasy XII,PS2,2006,Role-Playing,Square Enix,1.88,0,2.33,1.74,5.95
154,The Last of Us,PS3,2013,Action,Sony Computer Entertainment Europe,2.41,2.2,0.29,0.99,5.9
155,LittleBigPlanet,PS3,2008,Platform,Sony Computer Entertainment,2.8,1.98,0.17,0.87,5.82
156,Resident Evil 2,PS,1998,Action,Virgin Interactive,1.88,1.47,2.02,0.45,5.82
157,Dragon Quest IX: Sentinels of the Starry Skies,DS,2009,Role-Playing,Nintendo,0.63,0.67,4.35,0.15,5.79
158,Tekken 2,PS,1996,Fighting,Sony Computer Entertainment,2.26,1.89,1.36,0.23,5.74
159,Destiny,PS4,2014,Shooter,Activision,2.51,2.07,0.16,0.93,5.67
160,Cooking Mama,DS,2006,Simulation,505 Games,3.08,1.91,0.07,0.58,5.64
161,LEGO Star Wars: The Complete Saga,Wii,2007,Action,LucasArts,3.57,1.56,0,0.51,5.64
162,Tetris,NES,1988,Puzzle,Nintendo,2.97,0.69,1.81,0.11,5.58
163,Super Smash Bros.,N64,1999,Fighting,Nintendo,2.95,0.6,1.97,0.04,5.55
164,Assassin's Creed II,PS3,2009,Action,Ubisoft,2.54,1.93,0.21,0.86,5.55
165,Tomodachi Life,3DS,2013,Simulation,Nintendo,1.01,2.33,1.94,0.26,5.55
166,Assassin's Creed,X360,2007,Adventure,Ubisoft,3.28,1.64,0.07,0.56,5.54
167,Minecraft,PS3,2014,Misc,Sony Computer Entertainment,2.13,2.5,0,0.91,5.53
168,Forza Motorsport 3,X360,2009,Racing,Microsoft Game Studios,2.99,1.9,0.1,0.5,5.49
169,Super Mario Advance,GBA,2001,Platform,Nintendo,3.14,1.24,0.91,0.2,5.49
170,Batman: Arkham City,PS3,2011,Action,Warner Bros. Interactive Entertainment,2.72,1.85,0.11,0.81,5.49
171,Monster Hunter Freedom Unite,PSP,2008,Role-Playing,Capcom,0.47,0.55,4.13,0.34,5.48
172,Mario Kart: Super Circuit,GBA,2001,Racing,Nintendo,2.62,1.64,0.99,0.23,5.47
173,The Last of Us,PS4,2014,Action,Sony Computer Entertainment,2.23,2.26,0.08,0.9,5.47
174,Super Mario World,GBA,2001,Platform,Nintendo,3.21,1.11,0.95,0.2,5.46
175,Pokemon Stadium,N64,1999,Strategy,Nintendo,3.18,1.24,0.94,0.09,5.45
176,Crash Bandicoot: The Wrath of Cortex,PS2,2001,Platform,Universal Interactive,2.07,2.29,0.24,0.82,5.42
177,New Super Mario Bros. U,WiiU,2012,Platform,Nintendo,2.3,1.5,1.29,0.33,5.41
178,Call of Duty: World at War,PS3,2008,Shooter,Activision,2.74,1.83,0,0.84,5.4
179,Final Fantasy XIII,PS3,2009,Role-Playing,Square Enix,1.75,1.21,1.87,0.51,5.34
180,Dr. Mario,GB,1989,Puzzle,Nintendo,2.18,0.96,2,0.2,5.34
181,Pokemon Pinball,GB,1999,Misc,Nintendo,3.02,1.12,1.01,0.16,5.31
182,Final Fantasy IX,PS,2000,Role-Playing,SquareSoft,1.62,0.77,2.78,0.14,5.3
183,Call of Duty: Advanced Warfare,XOne,2014,Shooter,Activision,3.25,1.55,0.01,0.49,5.29
184,Assassin's Creed III,X360,2012,Action,Ubisoft,3.13,1.69,0.03,0.44,5.29
185,Final Fantasy X-2,PS2,2003,Role-Playing,Electronic Arts,1.92,1.08,2.11,0.17,5.29
186,Assassin's Creed II,X360,2009,Action,Ubisoft,3.12,1.55,0.08,0.52,5.27
187,Donkey Kong 64,N64,1999,Platform,Nintendo,3.33,0.79,1.09,0.06,5.27
188,Tomb Raider II,PS,1997,Action,Eidos Interactive,2.3,2.46,0.2,0.28,5.24
189,Madden NFL 2004,PS2,N/A,Sports,Electronic Arts,4.26,0.26,0.01,0.71,5.23
190,Diablo III,PC,2012,Role-Playing,Activision,2.47,2.19,0,0.55,5.21
191,Dragon Quest VIII: Journey of the Cursed King,PS2,2004,Role-Playing,Square Enix,0.65,0.75,3.61,0.2,5.21
192,Super Mario Bros. 3,GBA,2003,Platform,Nintendo,2.93,1.25,0.83,0.2,5.2
193,Professor Layton and the Curious Village,DS,2007,Puzzle,Nintendo,1.21,2.43,1.03,0.52,5.19
194,Super Mario Land 3: Wario Land,GB,1994,Platform,Nintendo,2.49,0.98,1.57,0.15,5.19
195,FIFA Soccer 13,X360,2012,Action,Electronic Arts,1.09,3.47,0.03,0.58,5.17
196,Donkey Kong Country 2: Diddy's Kong Quest,SNES,1995,Platform,Nintendo,2.1,0.74,2.2,0.11,5.15
197,Medal of Honor: Rising Sun,PS2,2003,Shooter,Electronic Arts,1.98,2.23,0.13,0.8,5.13
198,Kirby's Dream Land,GB,1992,Platform,Nintendo,2.71,0.61,1.7,0.11,5.13
199,Microsoft Flight Simulator,PC,1996,Simulation,Microsoft Game Studios,3.22,1.69,0,0.2,5.12
200,Guitar Hero II,PS2,2006,Misc,RedOctane,3.81,0.63,0,0.68,5.12
201,Fable III,X360,2010,Role-Playing,Microsoft Game Studios,3.59,1.08,0.05,0.38,5.1
202,Mario & Sonic at the Olympic Games,DS,2008,Sports,Sega,1.63,2.45,0.44,0.57,5.09
203,Resident Evil 5,PS3,2009,Action,Capcom,1.96,1.41,1.08,0.64,5.09
204,The Legend of Zelda: Phantom Hourglass,DS,2007,Action,Nintendo,1.85,1.8,0.95,0.48,5.08
205,FIFA Soccer 11,PS3,2010,Sports,Electronic Arts,0.61,3.28,0.06,1.12,5.07
206,Super Mario Bros.,GB,1999,Platform,Nintendo,3.4,1.3,0.15,0.22,5.07
207,Uncharted: The Nathan Drake Collection,PS4,2015,Action,Sony Computer Entertainment,2.24,1.89,0.09,0.84,5.06
208,Resident Evil,PS,1996,Action,Virgin Interactive,2.05,1.16,1.11,0.73,5.05
209,Grand Theft Auto: Vice City Stories,PSP,2006,Action,Take-Two Interactive,1.7,1.99,0.16,1.19,5.03
210,Minecraft,PS4,2014,Misc,Sony Computer Entertainment Europe,1.73,2.32,0.19,0.79,5.03
211,Tony Hawk's Pro Skater,PS,1999,Sports,Activision,3.42,1.38,0.02,0.2,5.02
212,Warzone 2100,PS,1999,Strategy,Eidos Interactive,2.79,1.89,0,0.33,5.01
213,Super Smash Bros. for Wii U and 3DS,WiiU,2014,Fighting,Nintendo,2.67,1.11,0.84,0.39,5.01
214,Spyro the Dragon,PS,1998,Platform,Sony Computer Entertainment,3.36,1.36,0.07,0.21,5
215,Guitar Hero III: Legends of Rock,PS2,2007,Misc,Activision,3.49,0.01,0.01,1.48,4.98
216,Link's Crossbow Training,Wii,2007,Shooter,Nintendo,3.05,1.17,0.29,0.46,4.98
217,Fallout 3,X360,2008,Role-Playing,Bethesda Softworks,3.41,0.99,0.09,0.45,4.94
218,Pokemon Mystery Dungeon: Explorers of Time/Explorers of Darkness,DS,2007,Role-Playing,Nintendo,1.83,1.19,1.54,0.37,4.93
219,Uncharted: Drake's Fortune,PS3,2007,Action,Sony Computer Entertainment,2.32,1.72,0.12,0.77,4.93
220,Madden NFL 06,PS2,2005,Sports,Electronic Arts,3.98,0.26,0.01,0.66,4.91
221,Diddy Kong Racing,N64,1997,Racing,Nintendo,2.91,0.99,0.89,0.1,4.88
222,Monster Hunter Freedom 3,PSP,2010,Role-Playing,Capcom,0,0,4.87,0,4.87
223,StarCraft II: Wings of Liberty,PC,2010,Strategy,Activision,2.59,1.69,0,0.59,4.87
224,Dr. Mario,NES,1990,Puzzle,Nintendo,2.62,0.6,1.52,0.1,4.85
225,Assassin's Creed,PS3,2007,Adventure,Ubisoft,1.91,2,0.09,0.82,4.82
226,God of War III,PS3,2010,Action,Sony Computer Entertainment,2.74,1.34,0.12,0.61,4.8
227,The Legend of Zelda: Ocarina of Time,3DS,2011,Action,Nintendo,2.28,1.52,0.65,0.34,4.79
228,Crash Team Racing,PS,1999,Racing,Sony Computer Entertainment,2.57,1.57,0.44,0.21,4.79
229,LEGO Star Wars: The Complete Saga,DS,2007,Action,LucasArts,2.83,1.48,0,0.45,4.76
230,Driver 2,PS,2000,Action,Atari,2.36,2.1,0.02,0.25,4.73
231,Batman: Arkham City,X360,2011,Action,Warner Bros. Interactive Entertainment,2.99,1.27,0.04,0.42,4.73
232,Battlefield 1,XOne,2016,Shooter,Electronic Arts,3.01,1.25,0.02,0.44,4.72
233,Luigi's Mansion: Dark Moon,3DS,2013,Action,Nintendo,1.86,1.42,1.14,0.3,4.72
234,Halo 5: Guardians,XOne,2015,Shooter,Microsoft Game Studios,2.92,1.32,0.03,0.43,4.71
235,The Simpsons: Hit & Run,PS2,2003,Racing,Vivendi Games,1.73,2.19,0,0.79,4.7
236,Super Mario 3D World,WiiU,2013,Platform,Nintendo,2.24,1.34,0.75,0.35,4.69
237,Tony Hawk's Pro Skater 2,PS,2000,Sports,Activision,3.05,1.41,0.02,0.2,4.68
238,The Lord of the Rings: The Two Towers,PS2,2002,Action,Electronic Arts,1.94,1.95,0.08,0.7,4.67
239,Splatoon,WiiU,2015,Shooter,Nintendo,1.57,1.29,1.53,0.27,4.66
240,Tomb Raider,PS,1996,Action,Eidos Interactive,2.29,1.97,0.13,0.24,4.63
241,Animal Crossing: City Folk,Wii,2008,Simulation,Nintendo,1.83,1.12,1.32,0.36,4.63
242,The Legend of Zelda: A Link to the Past,SNES,1991,Action,Nintendo,2.42,0.91,1.15,0.13,4.61
243,The Legend of Zelda: The Wind Waker,GC,2002,Action,Nintendo,2.6,0.99,0.89,0.13,4.6
244,Guitar Hero III: Legends of Rock,Wii,2007,Misc,Activision,3.04,1.12,0,0.43,4.6
245,Final Fantasy XV,PS4,2016,Role-Playing,Square Enix,1.41,1.62,0.97,0.6,4.6
246,Forza Motorsport 4,X360,2011,Racing,Microsoft Game Studios,2.08,1.97,0.06,0.46,4.57
247,Mario & Sonic at the Olympic Winter Games,Wii,2009,Sports,Sega,1.87,1.96,0.22,0.48,4.53
248,Madden NFL 2005,PS2,2004,Sports,Electronic Arts,4.18,0.26,0.01,0.08,4.53
249,Guitar Hero III: Legends of Rock,X360,2007,Misc,Activision,3.19,0.91,0.01,0.42,4.53
250,Pitfall!,2600,1981,Platform,Activision,4.21,0.24,0,0.05,4.5
251,Madden NFL 07,PS2,2006,Sports,Electronic Arts,3.63,0.24,0.01,0.61,4.49
252,Fallout 4,XOne,2015,Role-Playing,Bethesda Softworks,2.69,1.38,0.02,0.41,4.49
253,Spider-Man: The Movie,PS2,2002,Action,Activision,2.71,1.51,0.03,0.23,4.48
254,Dragon Quest VII: Warriors of Eden,PS,2000,Role-Playing,Enix Corporation,0.2,0.14,4.1,0.02,4.47
255,Nintendo Land,WiiU,2012,Misc,Nintendo,2.52,1.13,0.48,0.33,4.46
256,God of War,PS2,2005,Action,Sony Computer Entertainment,2.71,1.29,0.02,0.43,4.45
257,Tony Hawk's Pro Skater 3,PS2,2001,Sports,Activision,2.66,1.29,0.01,0.46,4.41
258,The Elder Scrolls IV: Oblivion,X360,2006,Role-Playing,Take-Two Interactive,2.84,1.03,0.13,0.4,4.4
259,Call of Duty: Infinite Warfare,XOne,2016,Shooter,Activision,2.71,1.29,0,0.4,4.4
260,Call of Duty: Advanced Warfare,PS3,2014,Shooter,Activision,1.58,1.93,0.2,0.69,4.4
261,Winning Eleven: Pro Evolution Soccer 2007,PS2,2006,Sports,Konami Digital Entertainment,0.1,2.39,1.05,0.86,4.39
262,Zelda II: The Adventure of Link,NES,1987,Adventure,Nintendo,2.19,0.5,1.61,0.08,4.38
263,Need for Speed: Most Wanted,PS2,2005,Racing,Electronic Arts,2.03,1.79,0.08,0.47,4.37
264,Michael Jackson: The Experience,Wii,2010,Misc,Ubisoft,2.64,1.33,0.01,0.39,4.36
265,Resistance: Fall of Man,PS3,2006,Shooter,Sony Computer Entertainment,1.74,1.72,0.14,0.75,4.35
266,Call of Duty: Advanced Warfare,X360,2014,Shooter,Activision,2.8,1.14,0,0.41,4.35
267,Sonic the Hedgehog,GEN,1991,Platform,Sega,3.03,0.91,0.26,0.13,4.34
268,The Witcher 3: Wild Hunt,PS4,2015,Role-Playing,Namco Bandai Games,1.12,2.31,0.25,0.65,4.33
269,Kingdom Hearts II,PS2,2005,Role-Playing,Square Enix,2.2,0.58,1.38,0.17,4.33
270,Asteroids,2600,1980,Shooter,Atari,4,0.26,0,0.05,4.31
271,Tom Clancy's The Division,PS4,2016,Shooter,Ubisoft,1.44,2.03,0.16,0.67,4.31
272,FIFA 15,PS3,2014,Sports,Electronic Arts,0.59,3.02,0.04,0.64,4.29
273,Fable II,X360,2008,Role-Playing,Microsoft Game Studios,2.51,1.24,0.11,0.41,4.27
274,Batman: Arkham Asylum,PS3,2009,Action,Eidos Interactive,2.25,1.31,0.07,0.61,4.25
275,Namco Museum,GBA,2001,Misc,Namco Bandai Games,3,1.11,0.05,0.07,4.24
276,FIFA 14,X360,2013,Sports,Electronic Arts,0.93,2.89,0.01,0.4,4.23
277,Metal Gear Solid 3: Snake Eater,PS2,2004,Action,Konami Digital Entertainment,1.46,0,0.83,1.93,4.23
278,Assassin's Creed: Revelations,PS3,2011,Action,Ubisoft,1.41,2.01,0.1,0.7,4.22
279,Daxter,PSP,2006,Platform,Sony Computer Entertainment,2.45,1.01,0,0.75,4.21
280,Warcraft II: Tides of Darkness,PC,1995,Strategy,Activision,1.7,2.27,0,0.23,4.21
281,FIFA Soccer 06,PS2,2005,Sports,Electronic Arts,0.78,2.55,0.04,0.84,4.21
282,EyeToy Play,PS2,2003,Misc,Sony Computer Entertainment,0.88,2.3,0.2,0.83,4.2
283,Assassin's Creed: Revelations,X360,2011,Action,Ubisoft,2.26,1.47,0.04,0.43,4.2
284,Batman: Arkham Knight,PS4,2015,Action,Warner Bros. Interactive Entertainment,1.65,1.76,0.11,0.68,4.19
285,Gran Turismo 5 Prologue,PS3,2007,Racing,Sony Computer Entertainment,1.28,1.82,0.57,0.52,4.19
286,FIFA 12,X360,2011,Sports,Electronic Arts,0.85,2.78,0.02,0.53,4.18
287,Street Fighter IV,PS3,2009,Fighting,Capcom,2.03,1.04,0.59,0.52,4.18
288,Teenage Mutant Ninja Turtles,NES,1989,Action,Palcom,3.38,0.44,0.31,0.04,4.17
289,Star Wars Battlefront (2015),XOne,2015,Shooter,Electronic Arts,2.43,1.33,0.02,0.37,4.17
290,Excitebike,NES,1984,Racing,Nintendo,2.04,0.48,1.57,0.07,4.16
291,Frogger,PS,1997,Action,Hasbro Interactive,3.79,0.27,0,0.11,4.16
292,Madden NFL 2003,PS2,2002,Sports,Electronic Arts,3.36,0.21,0.01,0.56,4.14
293,Half-Life,PC,1997,Shooter,Vivendi Games,4.03,0,0.09,0,4.12
294,Super Mario World 2: Yoshi's Island,SNES,1995,Platform,Nintendo,1.65,0.61,1.76,0.09,4.12
295,FIFA Soccer 07,PS2,2006,Sports,Electronic Arts,0.71,2.48,0.03,0.89,4.11
296,Watch Dogs,PS4,2014,Action,Ubisoft,1.4,1.94,0.11,0.65,4.1
297,Street Fighter II Turbo,SNES,1992,Fighting,Capcom,1.42,0.51,2.1,0.07,4.1
298,World of Warcraft: The Burning Crusade,PC,2007,Role-Playing,Activision,2.57,1.52,0,0,4.09
299,Far Cry 4,PS4,2014,Shooter,Ubisoft,1.16,2.18,0.11,0.63,4.08
300,God of War II,PS2,2007,Action,Sony Computer Entertainment,2.32,0.04,0.04,1.67,4.07
301,Fallout: New Vegas,X360,2010,Role-Playing,Bethesda Softworks,2.66,1.03,0.04,0.33,4.06
302,World Soccer Winning Eleven 9,PS2,2005,Sports,Konami Digital Entertainment,0.12,2.26,0.9,0.77,4.06
303,Carnival Games,Wii,2007,Misc,Take-Two Interactive,2.12,1.47,0.05,0.42,4.06
304,Forza Motorsport 2,X360,2007,Racing,Microsoft Game Studios,2.35,1.27,0.03,0.41,4.05
305,Namco Museum Vol.3,PS,1996,Misc,Sony Computer Entertainment,2.28,1.55,0.16,0.06,4.05
306,Tekken Tag Tournament,PS2,2000,Fighting,Namco Bandai Games,1.68,1.51,0.51,0.35,4.05
307,Assassin's Creed: Unity,PS4,2014,Action,Ubisoft,1.2,2.12,0.09,0.63,4.04
308,Star Fox 64,N64,1997,Shooter,Nintendo,2.78,0.58,0.64,0.04,4.03
309,Golf,NES,1984,Sports,Nintendo,1.22,0.28,2.46,0.04,4.01
310,Nintendogs + cats,3DS,2011,Simulation,Nintendo,1.44,1.55,0.73,0.28,4
311,Namco Museum: 50th Anniversary,PS2,2005,Misc,Namco Bandai Games,2.08,1.35,0,0.54,3.98
312,Left 4 Dead 2,X360,2009,Shooter,Electronic Arts,2.67,0.87,0.05,0.38,3.97
313,Fallout 3,PS3,2008,Role-Playing,Bethesda Softworks,2.16,1.13,0.07,0.59,3.96
314,The Elder Scrolls V: Skyrim,PC,2011,Role-Playing,Bethesda Softworks,1.17,2.18,0,0.61,3.95
315,The Legend of Zelda: Skyward Sword,Wii,2011,Action,Nintendo,2.03,1.17,0.37,0.38,3.95
316,Professor Layton and the Diabolical Box,DS,2007,Puzzle,Nintendo,0.9,1.76,0.92,0.37,3.94
317,Monster Hunter 4 Ultimate,3DS,2014,Role-Playing,Nintendo,0.71,0.48,2.63,0.11,3.94
318,NBA 2K16,PS4,2015,Sports,Take-Two Interactive,2.53,0.66,0.05,0.7,3.93
319,EA Sports Active,Wii,2009,Sports,Electronic Arts,2.1,1.35,0.06,0.4,3.91
320,Donkey Kong Land,GB,1994,Platform,Nintendo,1.97,0.76,1.07,0.11,3.91
321,Tony Hawk's Underground,PS2,2003,Sports,Activision,2.29,1.17,0.01,0.42,3.9
322,Minecraft,XOne,2014,Misc,Microsoft Game Studios,2.31,1.22,0,0.35,3.88
323,Tekken 5,PS2,2005,Fighting,Namco Bandai Games,0.93,1.94,0.31,0.7,3.87
324,Dragon Warrior III,NES,1988,Role-Playing,Enix Corporation,0.1,0,3.77,0,3.87
325,MotorStorm,PS3,2006,Racing,Sony Computer Entertainment,1.53,1.6,0.06,0.67,3.87
326,FIFA 17,XOne,2016,Sports,Electronic Arts,0.95,2.64,0,0.27,3.86
327,Sports Champions,PS3,2010,Sports,Sony Computer Entertainment,2.14,1.12,0.1,0.5,3.85
328,World Soccer Winning Eleven 8 International,PS2,2004,Sports,Konami Digital Entertainment,0.16,1.89,1.12,0.68,3.85
329,Call of Duty: Ghosts,PS4,2013,Shooter,Activision,1.79,1.43,0.05,0.57,3.84
330,Namco Museum Vol.1,PS,1995,Misc,Sony Computer Entertainment,2.12,1.44,0.22,0.06,3.84
331,The Legend of Zelda: Link's Awakening,GB,1992,Action,Nintendo,2.21,0.96,0.54,0.13,3.83
332,Flash Focus: Vision Training in Minutes a Day,DS,2007,Misc,Nintendo,0.86,1.56,1.05,0.35,3.83
333,Big Brain Academy: Wii Degree,Wii,2007,Misc,Nintendo,1.05,1.91,0.41,0.42,3.79
334,Resident Evil Director's Cut,PS,1996,Action,Virgin Interactive,1.82,1.24,0.47,0.25,3.77
335,Mario & Luigi: Bowser's Inside Story,DS,2009,Role-Playing,Nintendo,2.23,0.47,0.81,0.26,3.77
336,LEGO Indiana Jones: The Original Adventures,X360,2008,Action,Activision,2.4,1.01,0,0.36,3.76
337,The Sims: Unleashed,PC,2002,Simulation,Electronic Arts,2.03,1.56,0,0.17,3.76
338,Ratchet & Clank: Size Matters,PSP,2007,Platform,Sony Computer Entertainment,1.4,1.39,0.1,0.86,3.74
339,Harry Potter and the Sorcerer's Stone,PS,2001,Action,Electronic Arts,1.37,2,0.14,0.22,3.73
340,Assassin's Creed IV: Black Flag,PS3,2013,Action,Ubisoft,1.34,1.69,0.13,0.57,3.73
341,Mario & Sonic at the London 2012 Olympic Games,Wii,2011,Sports,Sega,1.12,1.87,0.27,0.45,3.72
342,Resident Evil 3: Nemesis,PS,1999,Action,Eidos Interactive,1.3,0.77,1.54,0.11,3.72
343,Super Paper Mario,Wii,2007,Platform,Nintendo,1.95,0.86,0.59,0.31,3.72
344,Spyro: Year of the Dragon,PS,2000,Platform,Sony Computer Entertainment,1.93,1.58,0,0.19,3.71
345,FIFA Soccer 2005,PS2,2004,Sports,Electronic Arts,0.58,2.48,0.04,0.59,3.7
346,Pokemon Trading Card Game,GB,1998,Strategy,Nintendo,1.49,0.73,1.38,0.1,3.7
347,Friend Collection,DS,2009,Misc,Nintendo,0,0,3.67,0,3.67
348,Tony Hawk's Pro Skater 4,PS2,2002,Sports,Activision,2.13,1.18,0.01,0.35,3.67
349,MySims,DS,2007,Simulation,Electronic Arts,1.58,1.59,0.08,0.41,3.66
350,Midnight Club 3: DUB Edition,PSP,2005,Racing,Take-Two Interactive,1.65,1.21,0,0.79,3.65
351,Banjo-Kazooie,N64,1998,Platform,Nintendo,1.87,1.13,0.55,0.1,3.65
352,SOCOM: U.S. Navy SEALs,PS2,2002,Shooter,Sony Computer Entertainment,2.53,0.81,0.06,0.24,3.65
353,Jak and Daxter: The Precursor Legacy,PS2,2001,Platform,Sony Computer Entertainment,2.08,1.09,0.15,0.33,3.64
354,Battlefield 4,PS4,2013,Shooter,Electronic Arts,1.38,1.55,0.18,0.52,3.63
355,Pokemon Snap,N64,1999,Simulation,Nintendo,2.23,0.68,0.66,0.06,3.63
356,Pro Evolution Soccer 2008,PS2,2007,Sports,Konami Digital Entertainment,0.05,0,0.64,2.93,3.63
357,FIFA Soccer 10,PS3,2009,Sports,Electronic Arts,0.6,2.45,0.05,0.52,3.62
358,Resident Evil 4,PS2,2005,Action,Capcom,2.08,0.83,0.46,0.25,3.62
359,Guitar Hero: World Tour,Wii,2008,Misc,Activision,2.32,0.96,0,0.34,3.62
360,Star Wars: Battlefront,PS2,2004,Shooter,LucasArts,1.93,1.22,0.03,0.44,3.61
361,Doom II: Hell on Earth,PC,1994,Shooter,Virgin Interactive,2.05,1.4,0,0.16,3.61
362,The Simpsons: Road Rage,PS2,2001,Racing,Electronic Arts,2.02,1.17,0,0.42,3.61
363,Luigi's Mansion,GC,2001,Action,Nintendo,2.38,0.67,0.46,0.1,3.6
364,Just Dance 2014,Wii,2013,Misc,Ubisoft,1.89,1.39,0,0.31,3.6
365,Star Wars: Battlefront II,PS2,2005,Shooter,LucasArts,2.18,1.02,0.03,0.37,3.59
366,Assassin's Creed: Unity,XOne,2014,Action,Ubisoft,2.34,0.9,0,0.34,3.58
367,Cooking Mama 2: Dinner With Friends,DS,2007,Simulation,505 Games,1.6,1.49,0.1,0.39,3.58
368,WWF SmackDown!,PS,2000,Fighting,THQ,2.01,1.35,0.06,0.16,3.58
369,Croc: Legend of the Gobbos,PS,1997,Platform,Fox Interactive,1.57,1.79,0,0.2,3.56
370,Gears of War: Ultimate Edition,XOne,2015,Shooter,Microsoft Game Studios,2.85,0.34,0,0.37,3.55
371,Assassin's Creed Syndicate,PS4,2015,Action,Ubisoft,0.86,2.07,0.07,0.54,3.55
372,Grand Theft Auto: Liberty City Stories,PS2,2006,Action,Take-Two Interactive,1.56,1.4,0.07,0.5,3.54
373,The Getaway,PS2,2002,Action,Sony Computer Entertainment,1.23,1.77,0.05,0.49,3.54
374,Tomb Raider III: Adventures of Lara Croft,PS,1997,Action,Eidos Interactive,1.66,1.58,0.12,0.18,3.54
375,James Bond 007: Agent Under Fire,PS2,2001,Shooter,Electronic Arts,1.9,1.13,0.1,0.41,3.53
376,LEGO Star Wars: The Video Game,PS2,2005,Action,Eidos Interactive,1.98,1.14,0.01,0.41,3.53
377,Rugrats in Paris: The Movie,PS,2000,Action,THQ,1.96,1.33,0,0.23,3.52
378,FIFA Soccer 11,X360,2010,Sports,Electronic Arts,0.71,2.39,0.02,0.4,3.52
379,Spyro 2: Ripto's Rage!,PS,1999,Platform,Sony Computer Entertainment,2.14,1.21,0.01,0.17,3.52
380,Left 4 Dead,X360,2008,Shooter,Electronic Arts,2.66,0.49,0.05,0.3,3.51
381,Donkey Kong Country 3: Dixie Kong's Double Trouble!,SNES,1996,Platform,Nintendo,1.17,0.5,1.75,0.08,3.51
382,Resident Evil 5,X360,2009,Action,Capcom,2.12,0.93,0.12,0.34,3.51
383,Assassin's Creed: Brotherhood,X360,2010,Action,Ubisoft,2.85,0.39,0.03,0.24,3.51
384,Battlefield 4,PS3,2013,Shooter,Electronic Arts,1.31,1.42,0.27,0.5,3.5
385,Kung Fu,NES,1985,Action,Nintendo,1.64,0.38,1.42,0.06,3.5
386,Battlefield 4,X360,2013,Shooter,Electronic Arts,2.15,1.02,0.02,0.31,3.5
387,Batman: Arkham Asylum,X360,2009,Action,Eidos Interactive,2.21,0.95,0.02,0.31,3.5
388,FIFA Soccer 2004,PS2,N/A,Sports,Electronic Arts,0.59,2.36,0.04,0.51,3.49
389,Battlefield: Bad Company 2,X360,2010,Shooter,Electronic Arts,2.11,1.01,0.04,0.32,3.48
390,The Sims 4,PC,2014,Simulation,Electronic Arts,1.14,2.07,0,0.26,3.47
391,Mario & Sonic at the Olympic Winter Games,DS,2009,Sports,Sega,1.21,1.62,0.27,0.37,3.46
392,Metal Gear Solid V: The Phantom Pain,PS4,2015,Action,Konami Digital Entertainment,1.12,1.36,0.5,0.49,3.46
393,Guitar Hero: On Tour,DS,2008,Misc,Activision,2.1,1.01,0.01,0.35,3.46
394,Yokai Watch 2 Ganso/Honke,3DS,2014,Role-Playing,Nintendo,0.16,0.08,3.19,0.02,3.45
395,Clubhouse Games,DS,2006,Misc,Nintendo,0.59,1.79,0.73,0.34,3.45
396,Borderlands,X360,2009,Shooter,Take-Two Interactive,2.41,0.71,0.03,0.29,3.45
397,Monster Hunter 4,3DS,2013,Role-Playing,Capcom,0,0,3.44,0,3.44
398,Monster Hunter X,3DS,2015,Action,Capcom,0.32,0.26,2.81,0.05,3.44
399,Tekken 4,PS2,2002,Fighting,Namco Bandai Games,1.55,1.27,0.33,0.29,3.44
400,Grand Theft Auto 2,PS,1998,Action,Take-Two Interactive,1.13,2.07,0,0.22,3.42
401,Final Fantasy III,SNES,1994,Role-Playing,SquareSoft,0.86,0,2.55,0.02,3.42
402,Spider-Man 2,PS2,2004,Action,Activision,1.75,1.2,0.02,0.43,3.41
403,F-1 Race,GB,1990,Racing,Nintendo,1.73,0.69,0.59,0.4,3.41
404,LEGO Batman: The Videogame,X360,2008,Action,Warner Bros. Interactive Entertainment,2.05,1.03,0,0.32,3.41
405,LittleBigPlanet 2,PS3,2011,Platform,Sony Computer Entertainment,1.83,1.05,0.06,0.46,3.41
406,Super Mario Maker,WiiU,2015,Platform,Nintendo,1.24,0.95,0.99,0.21,3.4
407,FIFA Soccer 2003,PS2,2002,Sports,Electronic Arts,0.46,2.28,0.05,0.61,3.4
408,Crash Bash,PS,2000,Misc,Sony Computer Entertainment,1.56,1.47,0.19,0.17,3.39
409,Destiny,XOne,2014,Shooter,Activision,2.15,0.92,0,0.31,3.38
410,Halo: The Master Chief Collection,XOne,2014,Shooter,Microsoft Game Studios,2.02,1.02,0.03,0.31,3.38
411,WWF War Zone,PS,1998,Fighting,Acclaim Entertainment,2.47,0.76,0,0.13,3.36
412,The Legend of Zelda: Majora's Mask,N64,2000,Action,Nintendo,1.9,0.67,0.73,0.06,3.36
413,Far Cry 3,PS3,2012,Shooter,Ubisoft,0.88,1.7,0.1,0.67,3.35
414,Rugrats: Search For Reptar,PS,1998,Adventure,THQ,1.63,1.53,0,0.18,3.34
415,English Training: Have Fun Improving Your Skills!,DS,2006,Misc,Nintendo,0,0.99,2.32,0.02,3.33
416,James Bond 007: Nightfire,PS2,2002,Shooter,Electronic Arts,1.45,1.29,0.12,0.46,3.33
417,Ratchet & Clank,PS2,2002,Platform,Sony Computer Entertainment,1.44,1.01,0.57,0.3,3.33
418,Gran Turismo 6,PS3,2013,Racing,Sony Computer Entertainment,0.75,1.7,0.41,0.46,3.32
419,Star Wars Episode III: Revenge of the Sith,PS2,2005,Action,LucasArts,1.47,1.39,0.03,0.43,3.32
420,The Legend of Zelda: Spirit Tracks,DS,2009,Action,Nintendo,1.4,0.91,0.74,0.26,3.31
421,Max Payne,PS2,2001,Shooter,Take-Two Interactive,1.99,1.05,0.05,0.22,3.31
422,Assassin's Creed IV: Black Flag,X360,2013,Action,Ubisoft,1.9,1.11,0.01,0.29,3.31
423,The Lord of the Rings: The Return of the King,PS2,2003,Action,Electronic Arts,1.5,1.28,0.05,0.46,3.28
424,FIFA 16,XOne,2015,Sports,Electronic Arts,0.91,2.13,0,0.24,3.28
425,Madden NFL 16,PS4,2015,Sports,Electronic Arts,2.37,0.3,0,0.6,3.27
426,True Crime: Streets of LA,PS2,2003,Action,Activision,1.89,1.05,0.02,0.31,3.27
427,Animal Crossing: Happy Home Designer,3DS,2015,Simulation,Nintendo,0.61,1.11,1.42,0.14,3.27
428,Professor Layton and the Unwound Future,DS,2008,Puzzle,Nintendo,0.61,1.57,0.82,0.27,3.27
429,Gran Turismo (PSP),PSP,2009,Racing,Sony Computer Entertainment,0.51,1.57,0.31,0.87,3.26
430,Wii Music,Wii,2008,Misc,Nintendo,1.35,1.12,0.46,0.32,3.25
431,Tekken,PS,1995,Fighting,Sony Computer Entertainment,0.95,1.3,0.77,0.22,3.24
432,007: Tomorrow Never Dies,PS,1999,Shooter,Electronic Arts,1.72,1.33,0,0.16,3.21
433,The Legend of Zelda: A Link Between Worlds,3DS,2013,Action,Nintendo,1.41,1.08,0.47,0.24,3.2
434,Baseball,NES,1983,Sports,Nintendo,0.73,0.1,2.35,0.02,3.2
435,Killer Instinct,SNES,1995,Fighting,Nintendo,2.26,0.72,0.12,0.1,3.2
436,WWF SmackDown! 2: Know Your Role,PS,2000,Fighting,THQ,1.76,1.21,0.07,0.16,3.2
437,Dragon Quest VI: Maboroshi no Daichi,SNES,1995,Role-Playing,Enix Corporation,0,0,3.19,0,3.19
438,L.A. Noire,PS3,2011,Adventure,Take-Two Interactive,1.28,1.29,0.12,0.5,3.18
439,God of War: Chains of Olympus,PSP,2008,Action,Sony Computer Entertainment,1.48,1,0.04,0.66,3.18
440,Enter the Matrix,PS2,2003,Action,Atari,1.78,1.12,0.09,0.19,3.18
441,Crisis Core: Final Fantasy VII,PSP,2007,Role-Playing,Square Enix,1.35,0.59,0.8,0.43,3.18
442,Dance Central,X360,2010,Misc,MTV Games,2.15,0.76,0.01,0.26,3.17
443,Ace Combat 04: Shattered Skies,PS2,2001,Simulation,Sony Computer Entertainment Europe,2.06,0.56,0.38,0.17,3.17
444,Animal Crossing,GC,2001,Simulation,Nintendo,1.92,0.16,0.99,0.09,3.15
445,FIFA Soccer 08,PS2,2007,Sports,Electronic Arts,0.68,0,0,2.46,3.14
446,Mario Party 9,Wii,2012,Misc,Nintendo,1.06,1.1,0.77,0.22,3.14
447,Club Penguin: Elite Penguin Force,DS,2008,Adventure,Disney Interactive Studios,1.87,0.97,0,0.3,3.14
448,NBA 2K17,PS4,2016,Sports,Take-Two Interactive,2.06,0.48,0.03,0.56,3.13
449,Spider-Man,PS,2000,Action,Activision,1.7,1.25,0.02,0.16,3.13
450,Fallout: New Vegas,PS3,2010,Role-Playing,Bethesda Softworks,1.53,1.03,0.1,0.46,3.13
451,Need for Speed III: Hot Pursuit,PS,1998,Racing,Electronic Arts,2.14,0.86,0,0.13,3.12
452,Star Wars Episode I Racer,N64,1999,Racing,Nintendo,2.31,0.62,0.14,0.04,3.12
453,Sonic Rush,DS,2005,Platform,Sega,1.21,1.56,0.06,0.29,3.12
454,Personal Trainer: Cooking,DS,2006,Misc,Nintendo,0.91,1,1.03,0.17,3.12
455,Dragon Warrior IV,NES,1990,Role-Playing,Enix Corporation,0.08,0,3.03,0.01,3.12
456,Rhythm Heaven,DS,2008,Misc,Nintendo,0.55,0.5,1.93,0.13,3.12
457,Overwatch,PS4,2016,Shooter,Activision,1.19,1.27,0.17,0.49,3.11
458,The Elder Scrolls IV: Oblivion,PS3,2007,Role-Playing,Ubisoft,1.69,0.85,0.14,0.43,3.1
459,Resident Evil 6,PS3,2012,Shooter,Capcom,0.88,0.94,0.88,0.4,3.1
460,Mass Effect 2,X360,2010,Role-Playing,Electronic Arts,1.99,0.81,0.03,0.27,3.1
461,Dragon Ball Z: Budokai,PS2,2002,Fighting,Atari,2.17,0.28,0.55,0.08,3.09
462,Madden NFL 2002,PS2,2001,Sports,Electronic Arts,2.5,0.16,0.01,0.42,3.08
463,World Class Track Meet,NES,1986,Sports,Namco Bandai Games,1.92,0.45,0.64,0.07,3.08
464,Madden NFL 17,PS4,2016,Sports,Electronic Arts,2.13,0.39,0,0.56,3.08
465,Donkey Kong,GB,1994,Platform,Nintendo,1.57,0.62,0.55,0.34,3.07
466,The Sims: Vacation,PC,2002,Simulation,Electronic Arts,1.72,1.21,0,0.14,3.07
467,LEGO Batman: The Videogame,Wii,N/A,Action,Warner Bros. Interactive Entertainment,1.8,0.98,0,0.29,3.06
468,LEGO Batman: The Videogame,DS,2008,Action,Warner Bros. Interactive Entertainment,1.75,1.01,0,0.29,3.05
469,Borderlands 2,X360,2012,Shooter,Take-Two Interactive,1.89,0.88,0.04,0.25,3.05
470,Kung Fu Panda,X360,2008,Action,Activision,1.91,0.84,0,0.29,3.05
471,Saints Row 2,X360,2008,Action,THQ,1.95,0.79,0.02,0.28,3.04
472,Mass Effect 3,X360,2012,Role-Playing,Electronic Arts,1.94,0.84,0.03,0.24,3.04
473,Heavy Rain,PS3,2010,Adventure,Sony Computer Entertainment,1.29,1.21,0.06,0.47,3.03
474,FIFA 14,PS4,2013,Sports,Electronic Arts,0.62,1.85,0.12,0.44,3.03
475,Rayman,PS,1995,Platform,Ubisoft,1.54,1.33,0,0.16,3.03
476,Tom Clancy's Splinter Cell,XB,2002,Action,Ubisoft,1.85,1.04,0,0.13,3.02
477,Mike Tyson's Punch-Out!!,NES,1987,Fighting,Nintendo,2.03,0.47,0.45,0.07,3.02
478,WWE SmackDown! Shut Your Mouth,PS2,2002,Sports,THQ,1.45,1.13,0.07,0.38,3.02
479,NBA 2K13,X360,2012,Sports,Take-Two Interactive,2.61,0.2,0.01,0.19,3.02
480,Middle-Earth: Shadow of Mordor,PS4,2014,Action,Warner Bros. Interactive Entertainment,1.03,1.46,0.05,0.48,3.02
481,Killzone 2,PS3,2009,Shooter,Sony Computer Entertainment,1.4,1.06,0.08,0.47,3.01
482,Watch Dogs 2,PS4,2016,Action,Ubisoft,0.82,1.61,0.12,0.46,3.01
483,Epic Mickey,Wii,2010,Platform,Disney Interactive Studios,2.04,0.63,0.12,0.22,3.01
484,Far Cry 3,X360,2012,Shooter,Ubisoft,1.38,1.32,0.02,0.28,3.01
485,Mortal Kombat X,PS4,2015,Fighting,Warner Bros. Interactive Entertainment,1.63,0.85,0,0.52,3
486,Dragon Ball Z: Budokai Tenkaichi 3,PS2,2007,Fighting,Atari,1.15,0,0.76,1.09,3
487,wwe Smackdown vs. Raw 2006,PS2,N/A,Fighting,N/A,1.57,1.02,0,0.41,3
488,Star Fox,SNES,1993,Shooter,Nintendo,1.61,0.51,0.8,0.07,2.99
489,The Sims: Livin Large,PC,2000,Misc,Electronic Arts,1.67,1.18,0,0.13,2.99
490,World Soccer Winning Eleven 6 International,PS2,2002,Sports,Konami Digital Entertainment,0.12,1.26,1.16,0.45,2.99
491,Devil May Cry,PS2,2001,Action,Capcom,1.36,0.86,0.64,0.13,2.99
492,Star Wars: The Old Republic,PC,2011,Role-Playing,Electronic Arts,1.59,1.01,0,0.38,2.97
493,Titanfall,XOne,2014,Shooter,Electronic Arts,1.85,0.8,0.04,0.27,2.97
494,Sonic Heroes,PS2,2003,Platform,Sega,1.04,1.37,0.06,0.49,2.96
495,Hitman 2: Silent Assassin,PS2,2002,Action,Eidos Interactive,1.36,1.15,0.04,0.41,2.96
496,Battlefield: Bad Company 2,PS3,2010,Shooter,Electronic Arts,1.33,1.1,0.08,0.44,2.95
497,Wave Race 64,N64,1996,Racing,Nintendo,1.98,0.58,0.34,0.04,2.94
498,SOCOM II: U.S. Navy SEALs,PS2,2003,Shooter,Sony Computer Entertainment,2.22,0.51,0.06,0.15,2.94
499,WWE SmackDown! vs. RAW 2006,PS2,2005,Fighting,THQ,1.45,1.11,0.04,0.33,2.94
500,Street Fighter IV,X360,2009,Fighting,Capcom,1.83,0.7,0.15,0.26,2.94
501,Pac-Man Collection,GBA,2001,Puzzle,Atari,2.07,0.77,0.05,0.05,2.94
502,Call of Duty: Ghosts,XOne,2013,Shooter,Activision,1.89,0.77,0,0.27,2.93
503,inFAMOUS,PS3,2009,Action,Sony Computer Entertainment,1.76,0.68,0.12,0.37,2.93
504,FIFA 15,X360,2014,Sports,Electronic Arts,0.8,1.92,0,0.21,2.93
505,Kirby Super Star Ultra,DS,2008,Platform,Nintendo,1.55,0.04,1.19,0.15,2.92
506,Super Mario World 2: Yoshi's Island,GBA,2002,Platform,Nintendo,1.75,0.45,0.62,0.09,2.91
507,Mass Effect,X360,2007,Role-Playing,Microsoft Game Studios,1.83,0.79,0.03,0.27,2.91
508,Sonic Mega Collection Plus,PS2,2004,Misc,Sega,1.54,1.14,0,0.22,2.9
509,World Soccer Winning Eleven 7 International,PS2,2003,Sports,Konami Digital Entertainment,0.08,1.24,1.13,0.45,2.9
510,Sega Superstars Tennis,X360,2008,Sports,Sega,1.75,0.86,0,0.28,2.89
511,Cooking Mama: Cook Off,Wii,2007,Simulation,505 Games,1.41,1.12,0.05,0.3,2.89
512,Hot Shots Golf 3,PS2,2001,Sports,Sony Computer Entertainment,0.99,0.32,1.38,0.2,2.89
513,WarioWare: Smooth Moves,Wii,2006,Puzzle,Nintendo,0.86,1.04,0.73,0.26,2.89
514,Call of Duty: Finest Hour,PS2,2004,Shooter,Activision,1.51,1.12,0.01,0.24,2.89
515,Gears of War 4,XOne,2016,Shooter,Microsoft Game Studios,1.87,0.75,0,0.27,2.89
516,Syphon Filter,PS,1999,Shooter,Sony Computer Entertainment,2.03,0.72,0.02,0.11,2.88
517,Imagine: Babyz,DS,2007,Simulation,Ubisoft,1.3,1.26,0,0.31,2.87
518,Colin McRae Rally,PS,1998,Racing,Codemasters,0.09,2.43,0.12,0.22,2.87
519,Madden NFL 13,X360,2012,Sports,Electronic Arts,2.53,0.15,0,0.17,2.86
520,Assassin's Creed IV: Black Flag,PS4,2013,Action,Ubisoft,1.07,1.32,0.06,0.42,2.86
521,The Elder Scrolls III: Morrowind,XB,2002,Role-Playing,Ubisoft,2.09,0.63,0.03,0.11,2.86
522,F-Zero,SNES,1990,Racing,Nintendo,1.37,0.51,0.89,0.07,2.85
523,Yoshi's Story,N64,1997,Platform,Nintendo,1.29,0.53,0.98,0.05,2.85
524,Command & Conquer: Red Alert,PC,1996,Strategy,Virgin Interactive,1.37,1.34,0,0.14,2.85
525,Mortal Kombat,PS3,2011,Fighting,Warner Bros. Interactive Entertainment,1.98,0.53,0,0.34,2.85
526,Madden NFL 10,X360,2009,Sports,Electronic Arts,2.52,0.09,0,0.22,2.83
527,WWE SmackDown! vs. Raw,PS2,2002,Fighting,THQ,1.32,1.08,0.04,0.39,2.83
528,BioShock,X360,2007,Shooter,Take-Two Interactive,1.65,0.85,0.05,0.28,2.83
529,Zumba Fitness 2,Wii,2011,Sports,Majesco Entertainment,1.52,1.04,0,0.27,2.83
530,Metroid Prime,GC,2002,Shooter,Nintendo,1.96,0.67,0.1,0.09,2.82
531,inFAMOUS: Second Son,PS4,2014,Action,Sony Computer Entertainment,1.29,0.99,0.07,0.47,2.82
532,Assassin's Creed: Brotherhood,PS3,2010,Action,Ubisoft,1.87,0.55,0.11,0.29,2.82
533,Finding Nemo,GBA,2003,Action,THQ,1.59,1.05,0.04,0.14,2.82
534,Myst,PC,1994,Adventure,Red Orb,0.02,2.79,0,0,2.81
535,Medal of Honor,PS3,2010,Shooter,Electronic Arts,1.28,1.04,0.07,0.42,2.81
536,Need for Speed: Most Wanted,PS3,2012,Racing,Electronic Arts,0.71,1.46,0.06,0.58,2.81
537,Imagine: Fashion Designer,DS,2007,Simulation,Ubisoft,1.32,1.19,0,0.3,2.81
538,WWE SmackDown! Here Comes the Pain,PS2,2003,Fighting,THQ,1.32,1.06,0.04,0.38,2.8
539,Hot Shots Golf,PS,1997,Sports,Sony Computer Entertainment,0.29,0.2,2.13,0.18,2.79
540,A Bug's Life,PS,1998,Platform,Sony Computer Entertainment,1.96,0.72,0,0.11,2.79
541,WWF SmackDown! Just Bring It,PS2,2001,Fighting,THQ,1.19,1.15,0.04,0.41,2.79
542,Dragon Quest V: Tenkuu no Hanayome,SNES,1992,Role-Playing,Enix Corporation,0,0,2.78,0.01,2.79
543,Mortal Kombat Trilogy,PS,1996,Fighting,GT Interactive,1.98,0.7,0,0.11,2.79
544,Monster Hunter Tri,3DS,2011,Role-Playing,Nintendo,0.46,0.29,1.96,0.07,2.79
545,Killzone 3,PS3,2011,Shooter,Sony Computer Entertainment,1.46,0.86,0.09,0.38,2.79
546,NBA Street,PS2,2001,Sports,Electronic Arts,2.19,0.22,0,0.38,2.79
547,Jak II,PS2,2003,Platform,Sony Computer Entertainment,1.68,0.74,0,0.36,2.78
548,Ratchet & Clank: Going Commando,PS2,2003,Platform,Sony Computer Entertainment,1.44,0.83,0.26,0.25,2.78
549,Need for Speed: Hot Pursuit,PS3,2010,Racing,Electronic Arts,1.05,1.23,0.03,0.47,2.78
550,Skylanders: Spyro's Adventure,Wii,2011,Action,Activision,1.35,1.13,0,0.3,2.78
551,Battlefield 3,PC,2011,Shooter,Electronic Arts,0.89,1.43,0,0.46,2.78
552,The Sims,PS2,2003,Simulation,Electronic Arts,1.41,1.12,0,0.24,2.77
553,Star Wars: The Force Unleashed,X360,2008,Action,LucasArts,1.74,0.77,0,0.26,2.77
554,Saints Row: The Third,X360,2011,Action,THQ,1.26,1.14,0.07,0.3,2.77
555,Yoshi's Island DS,DS,2006,Platform,Nintendo,1.45,0.07,1.1,0.15,2.77
556,Missile Command,2600,1980,Shooter,Atari,2.56,0.17,0,0.03,2.76
557,Tekken 6,PS3,2009,Fighting,Namco Bandai Games,1.2,0.97,0.17,0.42,2.75
558,Mario Paint,SNES,1992,Misc,Nintendo,1.43,0.54,0.71,0.07,2.75
559,FIFA 16,PS3,2015,Sports,Electronic Arts,0.43,1.85,0.05,0.41,2.75
560,Sonic and the Secret Rings,Wii,2007,Platform,Sega,1.22,1.19,0.04,0.3,2.74
561,Pokemon Stadium 2,N64,2000,Strategy,Nintendo,1.02,0.36,1.13,0.23,2.73
562,Metroid,NES,1986,Action,Nintendo,1.33,0.31,1.04,0.05,2.73
563,L.A. Noire,X360,2011,Adventure,Take-Two Interactive,1.54,0.92,0.02,0.24,2.71
564,The Legend of Zelda: A Link to the Past,GBA,2002,Action,Nintendo,1.75,0.52,0.33,0.1,2.7
565,Onimusha: Warlords,PS2,2001,Action,Virgin Interactive,0.99,0.48,1.09,0.14,2.7
566,Mario Party,N64,1998,Misc,Nintendo,1.25,0.53,0.87,0.05,2.7
567,Bloodborne,PS4,2015,Action,Sony Computer Entertainment,1.11,0.91,0.27,0.41,2.7
568,Call of Duty 3,X360,2006,Shooter,Activision,1.49,0.92,0.02,0.27,2.7
569,Madden NFL 12,X360,2011,Sports,Electronic Arts,2.43,0.11,0,0.16,2.7
570,LEGO Star Wars II: The Original Trilogy,PS2,2006,Action,LucasArts,1.85,0.64,0.01,0.19,2.69
571,Killzone: Shadow Fall,PS4,2013,Shooter,Sony Computer Entertainment,0.89,1.34,0.08,0.39,2.69
572,Yokai Watch 2 Shinuchi,3DS,2014,Role-Playing,Level 5,0,0,2.69,0,2.69
573,Madden NFL 11,X360,2010,Sports,Electronic Arts,2.38,0.12,0,0.18,2.69
574,Burnout 3: Takedown,PS2,2004,Racing,Electronic Arts,1.23,1.11,0,0.34,2.68
575,Skate 3,X360,2010,Sports,Electronic Arts,1.47,0.96,0,0.24,2.67
576,Professor Layton and the Last Specter,DS,2009,Puzzle,Nintendo,0.28,1.39,0.68,0.33,2.67
577,Mortal Kombat,GEN,1992,Fighting,Arena Entertainment,1.95,0.63,0,0.09,2.67
578,Mario vs. Donkey Kong: Mini-Land Mayhem!,DS,2010,Puzzle,Nintendo,1.63,0.51,0.35,0.18,2.67
579,Call Of Duty 2: Big Red One,PS2,2005,Shooter,Activision,1.48,0.92,0.01,0.26,2.67
580,Horizon: Zero Dawn,PS4,2017,Action,Sony Computer Entertainment,0.73,1.35,0.2,0.39,2.67
581,Medal of Honor,PS,1998,Shooter,Electronic Arts,1.44,1.09,0,0.14,2.67
582,Need for Speed (2015),PS4,2015,Racing,Electronic Arts,0.54,1.66,0.06,0.4,2.66
583,Fable,XB,2004,Role-Playing,Microsoft Game Studios,1.99,0.58,0,0.09,2.66
584,Guitar Hero: World Tour,X360,2008,Misc,Activision,1.78,0.63,0,0.25,2.66
585,Hannah Montana,DS,2006,Action,Disney Interactive Studios,1.59,0.8,0,0.26,2.65
586,Tom Clancy's Splinter Cell,PS2,2003,Action,Ubisoft,1.15,1.11,0,0.4,2.65
587,Super Mario Bros.: The Lost Levels,NES,1986,Platform,Nintendo,0,0,2.65,0,2.65
588,Need for Speed: Shift,PS3,2009,Racing,Electronic Arts,0.69,1.4,0.04,0.52,2.65
589,Star Wars: Shadows of the Empire,N64,1996,Action,Nintendo,2,0.5,0.12,0.03,2.65
590,Medal of Honor Heroes,PSP,2006,Shooter,Electronic Arts,0.86,1.11,0.01,0.66,2.65
591,Halo Wars,X360,2009,Strategy,Microsoft Game Studios,1.55,0.8,0.04,0.25,2.64
592,Final Fantasy XIII-2,PS3,2011,Role-Playing,Square Enix,0.78,0.73,0.89,0.23,2.63
593,Midnight Club: Street Racing,PS2,2000,Racing,Take-Two Interactive,2,0.47,0.02,0.14,2.63
594,NBA 2K12,X360,2011,Sports,Take-Two Interactive,2.32,0.14,0.01,0.16,2.63
595,ESPN NFL 2K5,PS2,2004,Sports,Sega,2.15,0.12,0,0.36,2.62
596,Medal of Honor,X360,2010,Shooter,Electronic Arts,1.57,0.8,0.04,0.21,2.62
597,FIFA Soccer 10,X360,2009,Sports,Electronic Arts,0.6,1.79,0.01,0.23,2.62
598,Pac-Man: Adventures in Time,PSP,2006,Fighting,Sony Computer Entertainment,0.76,1.09,0.12,0.64,2.62
599,Harry Potter and the Chamber of Secrets,PS2,2002,Action,Electronic Arts,0.9,1.22,0.04,0.44,2.61
600,Streets of Rage,GEN,1990,Action,Sega,1.86,0.55,0.11,0.08,2.6
601,God of War Collection,PS3,2009,Action,Sony Computer Entertainment,1.7,0.44,0.06,0.4,2.6
602,Super Mario All-Stars: Limited Edition,Wii,2010,Platform,Nintendo,1.02,0.52,0.92,0.14,2.6
603,Tom Clancy's Rainbow Six: Siege,PS4,2015,Shooter,Ubisoft,0.68,1.34,0.19,0.38,2.59
604,LEGO Star Wars: The Complete Saga,X360,2007,Action,LucasArts,1.53,0.82,0,0.24,2.59
605,FIFA Soccer 09,PS3,2008,Sports,Electronic Arts,0.49,1.63,0.04,0.43,2.59
606,NBA Live 2005,PS2,2004,Sports,Electronic Arts,2.03,0.21,0,0.35,2.59
607,Far Cry: Primal,PS4,2016,Action,Ubisoft,0.64,1.47,0.07,0.39,2.58
608,Mario Strikers Charged,Wii,2007,Sports,Nintendo,1.05,1.05,0.24,0.24,2.58
609,Style Savvy,DS,2008,Simulation,Nintendo,0.62,0.82,0.96,0.18,2.58
610,WWE SmackDown vs. RAW 2007,PS2,2006,Fighting,THQ,1.4,0.88,0.03,0.26,2.58
611,Ratchet & Clank: Up Your Arsenal,PS2,2004,Platform,Sony Computer Entertainment,1.31,0.74,0.31,0.22,2.57
612,Ghostbusters: The Video Game (DS Version),X360,2009,Action,Take-Two Interactive,1.05,1.22,0.03,0.27,2.57
613,Madden NFL 08,PS2,2007,Sports,Electronic Arts,2.14,0.08,0,0.35,2.57
614,Madden NFL 13,PS3,2012,Sports,Electronic Arts,2.12,0.22,0,0.23,2.57
615,Monster Hunter Freedom 2,PSP,2007,Role-Playing,Capcom,0.37,0.27,1.75,0.18,2.57
616,Ratchet & Clank Future: Tools of Destruction,PS3,2007,Platform,Sony Computer Entertainment,0.93,1.1,0.08,0.45,2.56
617,Sonic Adventure 2 Battle,GC,2001,Platform,Sega,1.7,0.59,0.21,0.07,2.56
618,Dragon Warrior II,NES,1987,Role-Playing,Enix Corporation,0.15,0,2.41,0,2.56
619,Dragon Age: Origins,X360,2009,Role-Playing,Electronic Arts,1.76,0.55,0.03,0.22,2.56
620,LittleBigPlanet,PSP,2009,Platform,Sony Computer Entertainment,0.65,1.23,0.01,0.67,2.55
621,Pokemon Colosseum,GC,2003,Role-Playing,Nintendo,1.21,0.57,0.7,0.07,2.54
622,Madden NFL 09,X360,2008,Sports,Electronic Arts,2.21,0.12,0,0.2,2.53
623,Space Invaders,2600,N/A,Shooter,Atari,2.36,0.14,0,0.03,2.53
624,Skylanders Giants,Wii,2012,Action,Activision,1.49,0.83,0,0.21,2.53
625,NBA 2K14,X360,2013,Sports,Take-Two Interactive,2.11,0.19,0,0.23,2.53
626,Art Academy,DS,2010,Misc,Nintendo,0.26,1.65,0.33,0.28,2.52
627,Crazy Taxi,PS2,2001,Racing,Acclaim Entertainment,1.13,1.12,0.06,0.22,2.52
628,Perfect Dark,N64,2000,Action,Nintendo,1.55,0.75,0.16,0.06,2.52
629,Dragon Warrior,NES,1986,Role-Playing,Capcom,0.49,0,0.52,1.51,2.52
630,Mafia III,PS4,2016,Action,Take-Two Interactive,0.53,1.56,0.04,0.38,2.51
631,Yokai Watch,3DS,2013,Role-Playing,Nintendo,0.4,0.69,1.34,0.09,2.51
632,Deca Sports,Wii,2008,Sports,Konami Digital Entertainment,1.11,0.85,0.29,0.25,2.5
633,PES 2009: Pro Evolution Soccer,PS2,2008,Sports,Konami Digital Entertainment,0.13,0.07,0.26,2.05,2.5
634,Mario Party 2,N64,1999,Misc,Nintendo,1.28,0.14,1.08,0.01,2.5
635,Marvel: Ultimate Alliance,X360,2006,Role-Playing,Activision,2.29,0.02,0,0.19,2.5
636,Rockstar Games Double Pack: Grand Theft Auto III & Grand Theft Auto Vice City,XB,2003,Action,Take-Two Interactive,1.84,0.56,0,0.09,2.49
637,Mortal Kombat: Deadly Alliance,PS2,2002,Fighting,Midway Games,1.81,0.52,0,0.15,2.49
638,Game Party,Wii,2007,Misc,Midway Games,1.47,0.77,0,0.24,2.48
639,Tomb Raider: The Last Revelation,PS,1998,Action,Eidos Interactive,1.15,1.14,0.06,0.13,2.48
640,NBA 2K13,PS3,2012,Sports,Take-Two Interactive,1.73,0.43,0.05,0.27,2.48
641,Mario Party 4,GC,2002,Misc,Nintendo,1.13,0.36,0.92,0.07,2.47
642,Pure,X360,2008,Racing,Disney Interactive Studios,1.38,0.84,0,0.25,2.47
643,Rock Band,X360,N/A,Misc,Electronic Arts,1.93,0.33,0,0.21,2.47
644,Saints Row: The Third,PS3,2011,Action,THQ,0.86,1.04,0.18,0.38,2.47
645,Resistance 2,PS3,2008,Shooter,Sony Computer Entertainment,1.15,0.84,0.1,0.38,2.47
646,Midnight Club: Los Angeles,PS3,2008,Racing,Take-Two Interactive,1.57,0.53,0.05,0.31,2.47
647,NBA 2K15,PS4,2014,Sports,Take-Two Interactive,1.48,0.54,0.01,0.43,2.47
648,Tom Clancy's The Division,XOne,2016,Shooter,Ubisoft,1.45,0.79,0,0.22,2.46
649,Final Fantasy V,SNES,1992,Role-Playing,SquareSoft,0,0,2.43,0.02,2.45
650,Final Fantasy Tactics,PS,1997,Role-Playing,SquareSoft,0.93,0.12,1.34,0.06,2.45
651,Madden NFL 16,XOne,2015,Sports,Electronic Arts,2.11,0.08,0,0.26,2.45
652,Twisted Metal 2,PS,1996,Racing,Sony Computer Entertainment,2.12,0.25,0,0.07,2.44
653,LEGO Harry Potter: Years 1-4,Wii,2010,Action,Warner Bros. Interactive Entertainment,1.29,0.93,0,0.22,2.44
654,The Sims: Bustin' Out,PS2,2003,Simulation,Electronic Arts,1.07,1.19,0,0.18,2.43
655,Riven: The Sequel to Myst,PC,1997,Adventure,Red Orb,1.52,0.82,0,0.1,2.43
656,uDraw Studio,Wii,2010,Misc,THQ,1.65,0.57,0,0.2,2.43
657,The Elder Scrolls V: Skyrim,PS4,2016,Role-Playing,Bethesda Softworks,0.93,1.03,0.08,0.39,2.43
658,Sonic Adventure,DC,1998,Platform,Sega,1.26,0.61,0.46,0.08,2.42
659,Ice Hockey,NES,1988,Sports,Nintendo,1.27,0.32,0.78,0.05,2.42
660,The Legend of Zelda: Majora's Mask 3D,3DS,2015,Action,Nintendo,1.17,0.59,0.48,0.18,2.42
661,Tomb Raider (2013),PS3,2013,Action,Square Enix,0.6,1.26,0.08,0.48,2.42
662,Tom Clancy's Rainbow Six: Vegas 2,X360,2008,Shooter,Ubisoft,1.56,0.6,0.02,0.23,2.42
663,Need for Speed Carbon: Own the City,PSP,2006,Racing,Electronic Arts,0.87,0.97,0,0.58,2.42
664,Dragon Ball Z: Budokai 2,PS2,2003,Fighting,Atari,1.63,0.22,0.51,0.06,2.41
665,pro evolution soccer 2011,PS3,2010,Sports,Konami Digital Entertainment,0.29,1.17,0.54,0.41,2.41
666,ATV Offroad Fury,PS2,2001,Racing,Sony Computer Entertainment,2.07,0.26,0,0.08,2.41
667,Dino Crisis,PS,1998,Action,Capcom,0.81,0.76,0.7,0.14,2.41
668,Need for Speed: ProStreet,PS2,2007,Racing,Electronic Arts,0.69,0,0.04,1.68,2.41
669,Halo: Combat Evolved Anniversary,X360,2011,Shooter,Microsoft Game Studios,1.44,0.7,0.04,0.22,2.4
670,Tetris Plus,PS,1996,Puzzle,JVC,2.1,0.24,0,0.07,2.4
671,Pro Wrestling,NES,1987,Fighting,Nintendo,0.77,0.18,1.42,0.03,2.4
672,Theme Hospital,PC,1997,Strategy,Electronic Arts,2.3,0.1,0,0,2.4
673,Frogger's Adventures: Temple of the Frog,GBA,N/A,Adventure,Konami Digital Entertainment,2.15,0.18,0,0.07,2.39
674,Madden NFL 11,PS3,2010,Sports,Electronic Arts,2.05,0.15,0,0.2,2.39
675,NBA 2K16,XOne,2015,Sports,Take-Two Interactive,2,0.15,0,0.25,2.39
676,Monopoly,PC,1994,Misc,Hasbro Interactive,1.49,0.81,0,0.1,2.39
677,Super Mario Maker,3DS,2016,Platform,Nintendo,0.48,0.74,1.07,0.1,2.39
678,Guitar Hero,PS2,2005,Misc,RedOctane,1.67,0.61,0.03,0.07,2.38
679,WCW/nWo Revenge,N64,1998,Fighting,THQ,1.94,0.39,0.03,0.02,2.38
680,Guild Wars 2,PC,2012,Action,NCSoft,0.99,1.1,0,0.28,2.38
681,Yu-Gi-Oh! The Duelists of the Roses,PS2,2001,Misc,Konami Digital Entertainment,1.16,0.91,0,0.3,2.38
682,Dead Island,X360,2011,Action,Deep Silver,1.48,0.69,0,0.2,2.37
683,Half-Life 2,PC,2004,Shooter,Vivendi Games,2.28,0.02,0.08,0,2.37
684,The Incredibles,PS2,2004,Action,THQ,0.96,1.08,0.04,0.3,2.37
685,Madden NFL 08,X360,2007,Sports,Electronic Arts,2.18,0.01,0,0.18,2.37
686,Tony Hawk's Underground 2,PS2,2004,Sports,Activision,1.25,0.86,0.01,0.26,2.37
687,Zumba Fitness,X360,2010,Sports,505 Games,1.74,0.45,0,0.18,2.37
688,Madden NFL 10,PS3,2009,Sports,Electronic Arts,2.03,0.13,0,0.21,2.37
689,Midnight Club: Los Angeles,X360,2008,Racing,Take-Two Interactive,1.7,0.45,0.01,0.21,2.37
690,Kirby's Dream Land 2,GB,1995,Platform,Nintendo,0.69,0.14,1.48,0.05,2.36
691,Donkey Kong Land II,GB,1996,Platform,Nintendo,1.39,0.48,0.4,0.08,2.35
692,Dragon Warrior Monsters,GB,1998,Role-Playing,Eidos Interactive,0,0,2.34,0.01,2.35
693,Kinect: Disneyland Adventures,X360,2011,Misc,Microsoft Game Studios,1.73,0.43,0.02,0.17,2.35
694,Paper Mario: Sticker Star,3DS,2012,Role-Playing,Nintendo,1.12,0.44,0.64,0.14,2.35
695,WWE SmackDown vs Raw 2008,PS2,2007,Fighting,THQ,0.92,0,0.01,1.41,2.34
696,LEGO Indiana Jones: The Original Adventures,Wii,N/A,Action,LucasArts,1.51,0.61,0,0.21,2.34
697,Resident Evil - Code: Veronica X,PS2,2001,Action,Capcom,1.08,0.7,0.34,0.21,2.34
698,Kinect Sports: Season Two,X360,2011,Sports,Microsoft Game Studios,1.38,0.72,0.02,0.22,2.34
699,The Legend of Zelda: Breath of the Wild,NS,2017,Action,Nintendo,1.12,0.66,0.38,0.17,2.33
700,My Fitness Coach,Wii,2008,Sports,Ubisoft,1.18,0.9,0,0.24,2.32
701,Mario Tennis,N64,2000,Sports,Nintendo,0.78,0.4,1.06,0.07,2.32
702,Grand Theft Auto,PS,1997,Action,Take-Two Interactive,0.79,1.35,0.04,0.14,2.32
703,James Bond 007: Everything or Nothing,PS2,2004,Shooter,Electronic Arts,0.85,1.06,0.09,0.32,2.31
704,Minecraft,PSV,2014,Misc,Sony Computer Entertainment Europe,0.21,0.72,1.11,0.27,2.31
705,Need For Speed: High Stakes,PS,1999,Racing,Electronic Arts,1.58,0.64,0,0.09,2.31
706,Chrono Trigger,SNES,1995,Role-Playing,SquareSoft,0.28,0,2.02,0.01,2.31
707,Cool Boarders 3,PS,1998,Sports,989 Studios,1.65,0.46,0.1,0.1,2.31
708,Yokai Watch Busters,3DS,2015,Action,Level 5,0,0,2.3,0,2.3
709,Batman: Arkham Origins,PS3,2013,Action,Warner Bros. Interactive Entertainment,1.08,0.8,0.04,0.38,2.3
710,Forza Motorsport 5,XOne,2013,Racing,Microsoft Game Studios,1.28,0.81,0.01,0.2,2.3
711,WarioWare Touched!,DS,2004,Puzzle,Nintendo,0.51,0.45,1.21,0.13,2.3
712,LEGO Star Wars: The Complete Saga,PS3,2007,Action,LucasArts,1.02,0.91,0,0.36,2.3
713,Tomb Raider II,PC,1997,Action,Eidos Interactive,0.91,1.25,0,0.13,2.29
714,The Sims 3,X360,2010,Simulation,Electronic Arts,1.28,0.81,0,0.2,2.29
715,Sonic's Ultimate Genesis Collection,PS3,2009,Misc,Sega,1.36,0.61,0,0.32,2.29
716,Need for Speed Underground 2,XB,2004,Racing,Electronic Arts,1.38,0.8,0,0.1,2.28
717,LEGO Harry Potter: Years 1-4,DS,2010,Action,Warner Bros. Interactive Entertainment,1.07,0.99,0,0.22,2.28
718,New Super Luigi U,WiiU,2013,Platform,Nintendo,1.25,0.65,0.19,0.19,2.28
719,Pro Evolution Soccer 2010,PS3,2009,Sports,Konami Digital Entertainment,0.3,1.27,0.46,0.26,2.28
720,Mario Bros.,NES,1983,Platform,Nintendo,0.51,0.12,1.63,0.02,2.28
721,FIFA Soccer 09,PS2,2008,Sports,Electronic Arts,0.38,0.07,0.01,1.82,2.28
722,Pokemon Ranger: Shadows of Almia,DS,2008,Role-Playing,Nintendo,0.94,0.54,0.62,0.18,2.28
723,TOCA Touring Car Championship,PS,1997,Racing,Codemasters,0.07,2,0.02,0.18,2.28
724,LEGO Marvel Super Heroes,X360,2013,Action,Warner Bros. Interactive Entertainment,1.25,0.82,0,0.2,2.27
725,Dead Island,PS3,2011,Action,Deep Silver,1.08,0.73,0.15,0.31,2.27
726,Kirby: Nightmare in Dream Land,GBA,2002,Platform,Nintendo,1.22,0.1,0.91,0.04,2.27
727,Madden NFL 25,X360,2013,Sports,Electronic Arts,2.01,0.06,0,0.19,2.27
728,Wario Land 4,GBA,2001,Platform,Nintendo,0.9,0.73,0.54,0.09,2.26
729,Forza Horizon 3,XOne,2016,Racing,Microsoft Game Studios,0.84,1.22,0.02,0.18,2.26
730,Madden NFL 17,XOne,2016,Sports,Electronic Arts,1.97,0.04,0,0.24,2.25
731,Onimusha 2: Samurai's Destiny,PS2,2002,Adventure,Capcom,0.62,0.44,1.06,0.13,2.25
732,Madden NFL 12,PS3,2011,Sports,Electronic Arts,1.93,0.15,0,0.17,2.25
733,Cool Boarders 2,PS,1997,Sports,UEP Systems,1.52,0.46,0.2,0.08,2.25
734,Paper Mario: The Thousand-Year Door,GC,2004,Role-Playing,Nintendo,1.48,0.25,0.46,0.06,2.25
735,God of War: Ascension,PS3,2013,Action,Sony Computer Entertainment,1.23,0.64,0.04,0.35,2.25
736,Assassin's Creed IV: Black Flag,XOne,2013,Action,Ubisoft,1.49,0.55,0,0.21,2.25
737,Guitar Hero III: Legends of Rock,PS3,2007,Misc,Activision,1.4,0.53,0.02,0.3,2.25
738,Sonic Advance,GBA,2001,Platform,Sega,1.19,0.71,0.22,0.13,2.24
739,Super Monkey Ball: Banana Blitz,Wii,2006,Misc,Sega,1.05,0.91,0.04,0.24,2.24
740,Call of Duty 3,Wii,N/A,Shooter,Activision,1.17,0.84,0,0.23,2.24
741,Just Dance Kids,Wii,2010,Misc,Ubisoft,1.52,0.54,0,0.18,2.24
742,Borderlands 2,PS3,2012,Shooter,Take-Two Interactive,1.06,0.72,0.1,0.36,2.24
743,Dissidia: Final Fantasy,PSP,2008,Fighting,Square Enix,0.51,0.51,0.91,0.31,2.24
744,Spyro: Season of Ice,GBA,2001,Platform,Vivendi Games,1.29,0.83,0,0.11,2.23
745,Teenage Mutant Ninja Turtles II: The Arcade Game,NES,1990,Action,Konami Digital Entertainment,1.74,0.25,0.21,0.03,2.23
746,Dance Dance Revolution X2,PS2,2009,Simulation,Konami Digital Entertainment,1.09,0.85,0,0.28,2.23
747,Prince of Persia: The Sands of Time,PS2,2003,Action,Ubisoft,0.88,1.03,0,0.31,2.22
748,Monster Hunter Tri,Wii,2009,Role-Playing,Nintendo,0.65,0.4,1.05,0.11,2.22
749,The Legend of Zelda: Link's Awakening DX,GB,1998,Adventure,Nintendo,1,0.63,0.45,0.13,2.22
750,Resident Evil 4,Wii,2007,Action,Capcom,1.32,0.56,0.14,0.2,2.22
751,DriveClub,PS4,2014,Racing,Sony Computer Entertainment,0.37,1.5,0.02,0.33,2.22
752,Star Wars: The Force Unleashed,PS3,2008,Action,LucasArts,1.01,0.85,0,0.35,2.21
753,Dying Light,PS4,2015,Action,Warner Bros. Interactive Entertainment,1.02,0.71,0.13,0.35,2.21
754,Madden NFL 15,PS4,2014,Sports,Electronic Arts,1.55,0.25,0,0.4,2.21
755,Devil May Cry 3: Dante's Awakening Special Edition,PS2,2006,Action,Capcom,1.06,0.82,0.05,0.28,2.21
756,Guitar Hero II,X360,2007,Misc,Activision,2.01,0.02,0,0.17,2.21
757,Frogger,2600,1981,Action,Parker Bros.,2.06,0.12,0,0.02,2.2
758,Rock Band 2,X360,2008,Misc,Electronic Arts,1.78,0.24,0,0.18,2.2
759,Wario Land 3,GB,2000,Platform,Nintendo,1.11,0.51,0.34,0.23,2.2
760,Pro Yakyuu Family Stadium,NES,1986,Sports,Namco Bandai Games,0.15,0,2.05,0,2.2
761,Need for Speed: Hot Pursuit,X360,2010,Racing,Electronic Arts,1.03,0.96,0,0.21,2.2
762,LEGO Indiana Jones: The Original Adventures,DS,2008,Action,Activision,1.4,0.59,0,0.2,2.2
763,BioShock 2,X360,2010,Shooter,Take-Two Interactive,1.45,0.54,0.02,0.19,2.2
764,High School Musical: Makin' the Cut!,DS,2007,Puzzle,Disney Interactive Studios,1.06,0.9,0,0.23,2.2
765,Star Wars: Knights of the Old Republic,XB,2003,Role-Playing,Activision,1.68,0.44,0,0.08,2.19
766,Kirby's Pinball Land,GB,1992,Misc,Nintendo,0.87,0.17,1.1,0.05,2.19
767,Donkey Kong Country,GB,2000,Platform,Nintendo,1.04,0.72,0.3,0.13,2.19
768,FIFA 15,XOne,2014,Sports,Electronic Arts,0.61,1.42,0,0.16,2.19
769,Pro Evolution Soccer 2012,PS3,2011,Action,Konami Digital Entertainment,0.34,0.97,0.55,0.33,2.19
770,Saints Row,X360,2006,Action,THQ,1.17,0.77,0.02,0.22,2.18
771,Yu-Gi-Oh: Duel Monsters 4,GB,2000,Role-Playing,Konami Digital Entertainment,0,0,2.17,0.01,2.18
772,ATV Offroad Fury 2,PS2,2002,Racing,THQ,1.92,0.2,0,0.06,2.18
773,Final Fantasy XIII,X360,2010,Role-Playing,Square Enix,1.29,0.67,0.01,0.21,2.18
774,Mario & Luigi: Superstar Saga,GBA,2003,Role-Playing,Nintendo,1.48,0.17,0.47,0.06,2.17
775,Star Wars: Rogue Squadron,N64,1998,Simulation,Nintendo,1.6,0.46,0.08,0.03,2.17
776,Tennis,NES,1984,Sports,Nintendo,0.48,0.11,1.56,0.02,2.17
777,Skylanders SWAP Force,Wii,2013,Platform,Activision,1.22,0.76,0,0.19,2.17
778,Mario Party: Island Tour,3DS,2013,Misc,Nintendo,0.65,0.82,0.56,0.13,2.16
779,Scribblenauts,DS,2009,Puzzle,Warner Bros. Interactive Entertainment,1.67,0.3,0.02,0.18,2.16
780,The Sims: House Party,PC,2001,Simulation,Electronic Arts,1.23,0.83,0,0.1,2.16
781,Sonic Unleashed,Wii,2008,Platform,Sega,1.26,0.67,0.02,0.21,2.16
782,Syphon Filter 2,PS,2000,Shooter,Sony Computer Entertainment,1.5,0.55,0.02,0.08,2.15
783,Mario & Luigi: Dream Team,3DS,2013,Role-Playing,Nintendo,0.9,0.64,0.47,0.14,2.15
784,Pokemon Ranger,DS,2006,Role-Playing,Nintendo,1.28,0.03,0.73,0.12,2.15
785,Volleyball,NES,1987,Sports,Nintendo,0.14,0.03,1.98,0,2.15
786,Hitman: Absolution,PS3,2012,Action,Square Enix,0.59,1.05,0.07,0.44,2.14
787,R.C. Pro-Am,NES,1988,Racing,Nintendo,1.47,0.38,0.19,0.1,2.14
788,Super Mario RPG: Legend of the Seven Stars,SNES,1996,Role-Playing,Nintendo,0.66,0,1.45,0.03,2.14
789,Mahjong,NES,1983,Misc,Nintendo,0.01,0,2.13,0,2.14
790,SimCity 2000,PC,1992,Simulation,Maxis,1.2,0.84,0,0.1,2.14
791,Your Shape featuring Jenny McCarthy,Wii,2009,Sports,Ubisoft,1.5,0.46,0,0.18,2.14
792,Demon Attack,2600,1981,Shooter,Imagic,1.99,0.12,0,0.02,2.13
793,Call of Duty: Roads to Victory,PSP,2007,Shooter,Activision,0.52,1.02,0,0.59,2.13
794,Dance Dance Revolution Extreme,PS2,2004,Simulation,Konami Digital Entertainment,1.04,0.81,0,0.27,2.13
795,Final Fantasy Tactics Advance,GBA,2003,Role-Playing,SquareSoft,0.82,0.37,0.89,0.05,2.13
796,Ratchet & Clank (2016),PS4,2016,Platform,Sony Computer Entertainment,0.76,0.97,0.06,0.34,2.12
797,Battlefield: Hardline,PS4,2015,Shooter,Electronic Arts,0.72,0.94,0.14,0.32,2.12
798,Project Gotham Racing,XB,2001,Racing,Microsoft Game Studios,1.37,0.61,0.05,0.09,2.12
799,Golf,GB,1989,Sports,Nintendo,0.83,0.33,0.92,0.04,2.12
800,NBA 2K12,PS3,2011,Sports,Take-Two Interactive,1.62,0.26,0.05,0.18,2.12
801,Borderlands,PS3,2009,Shooter,Take-Two Interactive,1.22,0.6,0,0.29,2.12
802,NBA 2K14,PS3,2013,Sports,Take-Two Interactive,1.44,0.31,0.04,0.32,2.11
803,NBA 2K11,X360,2010,Action,Take-Two Interactive,1.86,0.12,0.01,0.13,2.11
804,Tony Hawk's Pro Skater,N64,2000,Sports,Activision,1.68,0.4,0,0.03,2.11
805,Mortal Kombat,X360,2011,Fighting,Warner Bros. Interactive Entertainment,1.64,0.31,0,0.16,2.11
806,Need for Speed: Hot Pursuit 2,PS2,2002,Racing,Electronic Arts,1.68,0.31,0.02,0.09,2.11
807,PES 2009: Pro Evolution Soccer,PS3,2008,Sports,Konami Digital Entertainment,0.11,1.33,0.4,0.26,2.11
808,Dynasty Warriors 4,PS2,2003,Action,Tecmo Koei,0.63,0.21,1.13,0.13,2.11
809,Tetris DS,DS,2006,Puzzle,Nintendo,0.63,0.05,1.35,0.08,2.1
810,Parasite Eve,PS,1998,Role-Playing,SquareSoft,0.94,0.07,1.05,0.04,2.1
811,Project Gotham Racing (JP weekly sales),XB,2002,Action,Microsoft Game Studios,1.54,0.44,0.04,0.07,2.1
812,Scooby-Doo! Night of 100 Frights,PS2,2002,Platform,THQ,1.17,0.72,0,0.22,2.1
813,Devil May Cry 3: Dante's Awakening,PS2,2005,Action,Capcom,0.99,0.63,0.29,0.19,2.09
814,Derby Stallion,PS,1997,Sports,ASCII Entertainment,0,0,1.96,0.14,2.09
815,Finding Nemo,PS2,2003,Action,THQ,1.26,0.6,0.05,0.18,2.09
816,Madden NFL 15,X360,2014,Sports,Electronic Arts,1.8,0.06,0,0.22,2.09
817,Dead Rising,X360,2006,Action,Capcom,1.16,0.64,0.08,0.2,2.09
818,World of Warcraft: Cataclysm,PC,2010,Role-Playing,Activision,1.77,0.32,0,0,2.09
819,Tetris Worlds,PS2,2002,Puzzle,THQ,1.11,0.71,0,0.27,2.08
820,Final Fantasy III,DS,2006,Role-Playing,Square Enix,0.89,0.04,1.07,0.09,2.08
821,Sim Theme Park,PC,1998,Strategy,Electronic Arts,2.04,0.04,0,0,2.08
822,Rock Band,Wii,N/A,Misc,MTV Games,1.33,0.56,0,0.2,2.08
823,Mario Party 5,GC,2003,Misc,Nintendo,0.97,0.33,0.73,0.06,2.08
824,Warcraft: Orcs & Humans,PC,1994,Strategy,Activision,0.89,1.08,0,0.11,2.08
825,Mario Sports Mix,Wii,2010,Sports,Nintendo,0.88,0.44,0.63,0.12,2.08
826,Portal 2,X360,2011,Shooter,Valve Software,1.41,0.49,0.01,0.17,2.08
827,Need for Speed: Most Wanted 5-1-0,PSP,2005,Racing,Electronic Arts,1.77,0.12,0.02,0.17,2.07
828,Diablo III,PS4,2014,Role-Playing,Activision,0.59,1.09,0.08,0.32,2.07
829,Spec Ops: Airborne Commando,PS,2002,Shooter,Take-Two Interactive,1.54,0.46,0,0.08,2.07
830,The Sims 2: Pets,DS,2006,Simulation,Electronic Arts,0.92,0.93,0,0.22,2.07
831,Dance Dance Revolution: Hottest Party,Wii,2007,Simulation,Konami Digital Entertainment,1.35,0.52,0,0.19,2.07
832,Ghostbusters: The Video Game (DS Version),PS3,2010,Action,Take-Two Interactive,0.61,0.96,0.13,0.36,2.07
833,Yu-Gi-Oh! The Eternal Duelist Soul,GBA,2001,Strategy,Konami Digital Entertainment,1.64,0.36,0,0.07,2.07
834,UFC 2009 Undisputed,X360,2009,Fighting,THQ,1.48,0.39,0,0.19,2.06
835,Metal Gear Solid: Peace Walker,PSP,2010,Action,Konami Digital Entertainment,0.46,0.41,0.96,0.24,2.06
836,Kirby's Epic Yarn,Wii,2010,Platform,Nintendo,1.42,0.09,0.45,0.1,2.06
837,Wipeout: The Game,Wii,2009,Misc,Mindscape,1.94,0,0,0.12,2.06
838,Pokemon Mystery Dungeon: Red/Blue Rescue Team,GBA,2005,Role-Playing,Nintendo,0.71,0.52,0.74,0.08,2.06
839,The Incredibles,GBA,2004,Action,THQ,1.15,0.77,0.04,0.1,2.06
840,Kingdom Hearts: Birth by Sleep,PSP,2010,Role-Playing,Square Enix,0.63,0.41,0.75,0.26,2.06
841,R4: Ridge Racer Type 4,PS,1998,Racing,Namco Bandai Games,0.68,0.46,0.79,0.13,2.06
842,Fire Emblem: Awakening,3DS,2012,Role-Playing,Nintendo,0.9,0.46,0.56,0.13,2.06
843,Tom Clancy's Splinter Cell: Conviction,X360,2010,Action,Ubisoft,1.2,0.62,0.04,0.19,2.06
844,SoulCalibur II,PS2,2003,Fighting,Namco Bandai Games,1.06,0.62,0.13,0.25,2.06
845,Call of Duty 2,X360,2005,Shooter,Activision,1.84,0.04,0.01,0.16,2.06
846,Need for Speed: ProStreet,X360,2007,Racing,Electronic Arts,1.04,0.79,0.01,0.21,2.05
847,Sonic Mega Collection,GC,2002,Misc,Infogrames,1.47,0.48,0.05,0.06,2.05
848,Need For Speed: Undercover,PS3,2008,Racing,Electronic Arts,0.63,1,0.05,0.38,2.05
849,Toy Story 3: The Video Game,DS,2010,Action,Disney Interactive Studios,0.89,0.94,0.02,0.21,2.05
850,Battlefield 4,XOne,2013,Shooter,Electronic Arts,1.28,0.58,0,0.19,2.05
851,NBA Jam,GEN,1992,Sports,Arena Entertainment,1.75,0.25,0,0.05,2.05
852,SOCOM: U.S. Navy SEALs: Combined Assault,PS2,2006,Shooter,Sony Computer Entertainment,1.74,0.02,0,0.28,2.04
853,Peter Jackson's King Kong: The Official Game of the Movie,PS2,2005,Action,Ubisoft,0.71,1.02,0,0.31,2.04
854,Need for Speed: ProStreet,PS3,2007,Racing,Electronic Arts,0.73,0.91,0.04,0.36,2.04
855,Donkey Kong Country,GBA,2003,Platform,Nintendo,1.2,0.48,0.29,0.07,2.04
856,Dance Central 2,X360,2011,Misc,Microsoft Game Studios,1.45,0.41,0.01,0.16,2.04
857,PGR4 - Project Gotham Racing 4,X360,2007,Racing,Microsoft Game Studios,0.48,1.28,0.02,0.25,2.04
858,Carnival Games,DS,2008,Misc,Take-Two Interactive,1.22,0.63,0,0.19,2.04
859,1080°: TenEighty Snowboarding,N64,1998,Sports,Nintendo,1.25,0.61,0.13,0.05,2.03
860,NBA Live 2004,PS2,2003,Sports,Electronic Arts,1.57,0.18,0,0.27,2.03
861,Just Dance 2015,Wii,2014,Misc,Ubisoft,1,0.85,0,0.17,2.03
862,Dragon Age: Inquisition,PS4,2014,Role-Playing,Electronic Arts,0.74,0.89,0.08,0.32,2.03
863,Rayman Raving Rabbids: TV Party,Wii,2008,Misc,Ubisoft,0.72,1.08,0,0.23,2.03
864,Pokemon Mystery Dungeon: Blue Rescue Team,DS,2005,Role-Playing,Nintendo,1.15,0.04,0.83,0,2.02
865,Dark Souls,PS3,2011,Role-Playing,Namco Bandai Games,0.75,0.51,0.54,0.22,2.02
866,Mortal Kombat vs. DC Universe,PS3,2008,Fighting,Midway Games,1.5,0.28,0,0.23,2.02
867,Just Dance 3,X360,2011,Misc,Ubisoft,1.47,0.39,0,0.16,2.02
868,Need for Speed: The Run,PS3,2011,Action,Electronic Arts,0.58,1.04,0.03,0.36,2.01
869,Super Street Fighter II,SNES,1993,Fighting,Nintendo,0.52,0.16,1.29,0.03,2
870,Dead Space,PS3,2008,Action,Electronic Arts,1.05,0.66,0,0.29,2
871,Skate 3,PS3,2010,Sports,Electronic Arts,0.79,0.89,0,0.32,2
872,Need for Speed Rivals,PS4,2013,Racing,Electronic Arts,0.73,0.93,0.03,0.31,2
873,TouchMaster,DS,2007,Puzzle,Midway Games,0.48,1.27,0,0.24,2
874,Tenchu: Stealth Assassins,PS,1997,Action,Activision,0.95,0.64,0.27,0.13,1.99
875,Tennis,GB,1989,Sports,Nintendo,0.75,0.3,0.9,0.04,1.99
876,Harry Potter and the Chamber of Secrets,GBA,2002,Action,Electronic Arts,1.21,0.64,0.05,0.09,1.99
877,Kingdom Hearts 358/2 Days,DS,2009,Role-Playing,Square Enix,1.06,0.26,0.53,0.13,1.98
878,Doom (2016),PS4,2016,Shooter,Bethesda Softworks,0.74,0.89,0.04,0.32,1.98
879,Harry Potter and the Chamber of Secrets,PS,2002,Action,Electronic Arts,0.75,1.09,0.02,0.12,1.98
880,SimCity,SNES,1991,Simulation,Nintendo,0.93,0.27,0.75,0.04,1.98
881,Forza Motorsport 6,XOne,2015,Racing,Microsoft Game Studios,0.88,0.9,0.04,0.16,1.98
882,Spyro: Enter the Dragonfly,PS2,2002,Platform,Universal Interactive,0.74,0.95,0,0.28,1.97
883,LittleBigPlanet 3,PS4,2014,Platform,Sony Computer Entertainment,0.71,0.93,0.01,0.32,1.97
884,Devil May Cry 2,PS2,2003,Action,Capcom,0.71,0.58,0.51,0.17,1.97
885,E.T.: The Extra Terrestrial,2600,1981,Action,Atari,1.84,0.11,0,0.02,1.97
886,Call of Duty: Black Ops 3,X360,2015,Shooter,Activision,1.33,0.44,0,0.19,1.96
887,Resident Evil 6,X360,2012,Shooter,Capcom,1.12,0.6,0.07,0.16,1.96
888,Hot Shots Golf: Open Tee,PSP,2004,Sports,Sony Computer Entertainment,0.5,0.5,0.63,0.33,1.96
889,Rad Racer,NES,1986,Racing,Nintendo,1.13,0.37,0.41,0.05,1.96
890,Soccer,NES,1985,Sports,Nintendo,0.18,0.23,1.53,0.02,1.96
891,Forza Horizon,X360,2012,Racing,Microsoft Game Studios,0.82,0.93,0.04,0.18,1.96
892,Tom Clancy's Rainbow Six: Vegas,X360,2006,Shooter,Ubisoft,1.09,0.65,0.02,0.2,1.95
893,Mortal Kombat vs. DC Universe,X360,2008,Fighting,Midway Games,1.55,0.23,0,0.16,1.95
894,Crash Nitro Kart,PS2,2003,Racing,Vivendi Games,0.74,1.01,0,0.2,1.95
895,Destiny: The Taken King,PS4,2015,Shooter,Activision,0.79,0.79,0.05,0.32,1.95
896,Grand Theft Auto: San Andreas,XB,2005,Action,Take-Two Interactive,1.26,0.61,0,0.09,1.95
897,Star Wars: Dark Forces,PC,1994,Shooter,LucasArts,1.09,0.77,0,0.09,1.95
898,Resident Evil VII: Biohazard,PS4,2017,Action,Capcom,0.52,0.84,0.33,0.26,1.95
899,NBA Street Vol. 2,PS2,2003,Sports,Electronic Arts,1.69,0.2,0,0.06,1.95
900,Just Cause 3,PS4,2015,Action,Square Enix,0.52,1.04,0.08,0.3,1.94
901,Def Jam Vendetta,PS2,2003,Fighting,Electronic Arts,0.95,0.74,0,0.25,1.94
902,Kirby Squeak Squad,DS,2006,Platform,Nintendo,0.78,0.02,1.05,0.08,1.94
903,Burnout Paradise,PS3,2008,Racing,Electronic Arts,1.01,0.62,0.02,0.29,1.94
904,The Sims 3,PS3,2010,Simulation,Electronic Arts,0.73,0.89,0.02,0.3,1.94
905,Donkey Kong Country Returns,3DS,2013,Platform,Nintendo,0.77,0.62,0.42,0.13,1.94
906,Who wants to be a millionaire,PC,1999,Misc,Disney Interactive Studios,1.94,0,0,0,1.94
907,Scooby Doo and the Cyber Chase,PS,2001,Adventure,THQ,0.59,1.23,0,0.13,1.94
908,Alleyway,GB,1989,Puzzle,Nintendo,0.96,0.38,0.55,0.05,1.94
909,FIFA Soccer 09,X360,2008,Sports,Electronic Arts,0.49,1.26,0.01,0.18,1.94
910,Dragon Ball Z: Budokai 3,PS2,2004,Fighting,Atari,1.09,0.15,0.65,0.04,1.94
911,Call of Duty: World at War,Wii,2008,Shooter,Activision,1.17,0.58,0,0.18,1.94
912,Jet Moto 2,PS,1997,Racing,Sony Computer Entertainment,1.41,0.42,0.03,0.07,1.94
913,Destiny,X360,2014,Shooter,Activision,1.32,0.43,0,0.19,1.94
914,Tom Clancy's Ghost Recon,PS2,2002,Shooter,Ubisoft,1.42,0.4,0,0.12,1.94
915,BioShock Infinite,X360,2013,Shooter,Take-Two Interactive,1.22,0.54,0.02,0.16,1.93
916,X-Men Legends,PS2,2004,Role-Playing,Activision,1,0.72,0,0.21,1.93
917,Mortal Kombat II,SNES,1993,Fighting,Acclaim Entertainment,1.48,0.39,0,0.06,1.93
918,Virtua Fighter 2,SAT,1995,Fighting,Sega,0.34,0.26,1.3,0.03,1.93
919,Tetris DX,GB,1998,Puzzle,Nintendo,1.06,0.6,0.2,0.07,1.93
920,Diablo III,PS3,2013,Role-Playing,Activision,0.73,0.75,0.16,0.29,1.93
921,The Legend of Zelda: Oracle of Ages,GB,2001,Action,Nintendo,0.92,0.53,0.41,0.06,1.92
922,Call of Duty: Black Ops 3,PS3,2015,Shooter,Activision,0.62,0.92,0.07,0.3,1.92
923,Red Faction,PS2,2001,Shooter,THQ,0.76,0.96,0,0.2,1.92
924,The Sims: Makin' Magic,PC,2003,Simulation,Electronic Arts,1.03,0.8,0,0.09,1.92
925,The Legend of Zelda: The Wind Waker,WiiU,2013,Action,Nintendo,0.99,0.64,0.14,0.15,1.92
926,MX Unleashed,PS2,2004,Racing,THQ,0.94,0.73,0,0.25,1.92
927,PaRappa The Rapper,PS,1996,Misc,Sony Computer Entertainment,0.26,0.16,1.46,0.03,1.92
928,Guitar Hero: World Tour,PS3,2008,Misc,Activision,1.1,0.55,0,0.27,1.92
929,Need for Speed: Shift,X360,2009,Racing,Electronic Arts,0.73,0.96,0.01,0.22,1.91
930,Mario Party 3,N64,2000,Misc,Nintendo,0.72,0.16,1.01,0.02,1.91
931,Star Wars Rogue Leader: Rogue Squadron II,GC,2001,Simulation,LucasArts,1.03,0.75,0.03,0.09,1.9
932,Dark Souls III,PS4,2016,Role-Playing,Namco Bandai Games,0.74,0.54,0.35,0.26,1.9
933,No Man's Sky,PS4,2016,Action,Hello Games,0.68,0.87,0.04,0.3,1.89
934,Tomb Raider (2013),X360,2013,Action,Square Enix,0.86,0.84,0.01,0.17,1.89
935,Mario Super Sluggers,Wii,2008,Sports,Nintendo,1.48,0,0.29,0.12,1.89
936,Monopoly,Wii,2008,Misc,Electronic Arts,0.86,0.83,0,0.2,1.89
937,Madden NFL 09,PS3,2008,Sports,Electronic Arts,1.56,0.14,0,0.18,1.88
938,Game Party 2,Wii,2008,Misc,Midway Games,1.28,0.43,0,0.17,1.88
939,Batman: Arkham Origins,X360,2013,Action,Warner Bros. Interactive Entertainment,1.15,0.56,0,0.17,1.88
940,Madden NFL 25,PS3,2013,Sports,Electronic Arts,1.61,0.03,0,0.24,1.88
941,Ratchet & Clank Future: A Crack in Time,PS3,2009,Platform,Sony Computer Entertainment,1.05,0.54,0.03,0.26,1.88
942,Yu-Gi-Oh! Forbidden Memories,PS,1999,Role-Playing,Konami Digital Entertainment,1.37,0.44,0,0.08,1.88
943,Mortal Kombat: Deception,PS2,2004,Fighting,Midway Games,0.92,0.72,0,0.24,1.88
944,Hot Shots Golf 2,PS,1999,Sports,Sony Computer Entertainment,0.25,0.12,1.48,0.03,1.88
945,Medal of Honor: European Assault (All Region sales),PS2,2005,Shooter,Electronic Arts,0.89,0.69,0.09,0.21,1.88
946,Toy Story Mania!,Wii,2009,Misc,Disney Interactive Studios,1.04,0.66,0,0.18,1.88
947,WCW Nitro,PS,1998,Fighting,THQ,1.42,0.36,0.03,0.07,1.88
948,High School Musical: Sing It!,PS2,2007,Misc,Disney Interactive Studios,0.47,0.08,0,1.33,1.87
949,Star Fox Adventures,GC,2002,Adventure,Nintendo,0.96,0.53,0.3,0.09,1.87
950,LEGO Marvel Super Heroes,PS3,2013,Action,Warner Bros. Interactive Entertainment,0.77,0.79,0.01,0.3,1.87
951,FIFA 2000,PS,1998,Sports,Electronic Arts,0.22,1.47,0.04,0.14,1.87
952,Dynasty Warriors 3,PS2,2001,Action,THQ,0.53,0.16,1.07,0.1,1.87
953,Fire Emblem Fates,3DS,2015,Role-Playing,Nintendo,0.92,0.28,0.53,0.13,1.87
954,The Legend of Zelda: Oracle of Seasons,GB,2001,Adventure,Nintendo,0.87,0.52,0.41,0.06,1.86
955,Madden NFL 06,XB,2005,Sports,Electronic Arts,1.75,0.03,0,0.08,1.86
956,Shrek 2,PS2,2004,Platform,Activision,1.12,0.69,0.03,0.02,1.86
957,The Legend of Dragoon,PS,1999,Role-Playing,Sony Computer Entertainment,0.94,0.44,0.39,0.1,1.86
958,Turok 2: Seeds of Evil,N64,1997,Platform,Acclaim Entertainment,1.37,0.41,0.04,0.04,1.86
959,Star Wars: The Force Unleashed,Wii,2008,Action,LucasArts,1.11,0.56,0,0.18,1.86
960,SingStar,PS2,2004,Misc,Sony Computer Entertainment,0,1.37,0,0.49,1.86
961,Kirby: Triple Deluxe,3DS,2014,Platform,Nintendo,0.62,0.34,0.8,0.1,1.86
962,NBA Live 2002,PS2,2001,Sports,Electronic Arts,0.91,0.71,0,0.24,1.86
963,Chrono Cross,PS,1999,Role-Playing,SquareSoft,0.62,0.42,0.69,0.12,1.86
964,Jak 3,PS2,2004,Platform,Sony Computer Entertainment,1.33,0.49,0,0.03,1.85
965,Kingdom Hearts: Chain of Memories,GBA,2004,Role-Playing,Square Enix,1.26,0.18,0.35,0.06,1.85
966,Pinball,NES,1984,Action,Nintendo,0.8,0.19,0.83,0.03,1.85
967,Max Payne 3,PS3,2012,Shooter,Take-Two Interactive,0.59,0.89,0.06,0.3,1.85
968,Phineas and Ferb,DS,2009,Action,Disney Interactive Studios,1.33,0.37,0,0.15,1.85
969,Gran Turismo Concept 2001 Tokyo,PS2,2001,Racing,Unknown,0,1.1,0.42,0.33,1.84
970,Sonic Classic Collection,DS,2010,Platform,Sega,0.94,0.73,0,0.18,1.84
971,NCAA Football 06,PS2,2005,Sports,Electronic Arts,1.53,0.05,0,0.25,1.84
972,"Hey You, Pikachu!",N64,1998,Simulation,Nintendo,0.83,0.06,0.93,0,1.83
973,Rayman Raving Rabbids 2,Wii,2007,Misc,Ubisoft,0.82,0.82,0,0.2,1.83
974,GoldenEye 007 (2010),Wii,2010,Action,Activision,0.84,0.71,0.13,0.16,1.83
975,2 Games in 1: Sonic Advance & ChuChu Rocket!,GBA,2005,Misc,THQ,1.31,0.49,0,0.03,1.83
976,Jet Moto,PS,1996,Racing,Sony Computer Entertainment,1.33,0.4,0.03,0.07,1.83
977,Secret of Mana,SNES,1993,Role-Playing,SquareSoft,0.25,0.07,1.49,0.02,1.83
978,Professor Layton and the Mask of Miracle,3DS,2011,Puzzle,Nintendo,0.32,1.01,0.36,0.13,1.83
979,Air Combat,PS,1995,Simulation,Sony Computer Entertainment,0.92,0.33,0.52,0.05,1.83
980,inFAMOUS 2,PS3,2011,Action,Sony Computer Entertainment,1.05,0.47,0.08,0.22,1.82
981,World of Warcraft: Mists of Pandaria,PC,2012,Role-Playing,Activision,0.84,0.76,0,0.22,1.82
982,The Elder Scrolls Online,PS4,2015,Role-Playing,Bethesda Softworks,0.72,0.8,0,0.3,1.82
983,Sonic & Knuckles,GEN,1994,Platform,Sega,1.24,0.43,0.03,0.12,1.82
984,Namco Museum,PS2,2001,Misc,Namco Bandai Games,1.73,0.07,0,0.02,1.82
985,The Evil Within,PS4,2014,Action,Bethesda Softworks,0.56,0.87,0.11,0.27,1.82
986,Demon's Souls,PS3,2009,Role-Playing,Namco Bandai Games,0.97,0.33,0.35,0.17,1.82
987,The Sims: Hot Date,PC,2001,Simulation,Electronic Arts,1.81,0,0,0,1.82
988,The Orange Box,X360,2007,Shooter,Electronic Arts,1.09,0.53,0.02,0.17,1.82
989,DDRMAX2: Dance Dance Revolution,PS2,2003,Simulation,Konami Digital Entertainment,1.05,0.59,0,0.18,1.81
990,Crazy Taxi,DC,2000,Racing,Sega,1.1,0.51,0.12,0.08,1.81
991,Virtua Fighter 4,PS2,2002,Fighting,Sega,0.78,0.44,0.56,0.04,1.81
992,Sly 2: Band of Thieves,PS2,2004,Platform,Sony Computer Entertainment,0.88,0.69,0,0.23,1.81
993,Guitar Hero: World Tour,PS2,2008,Misc,Activision,1,0.03,0,0.77,1.8
994,NBA 2K11,PS3,2010,Action,Take-Two Interactive,1.41,0.2,0.03,0.16,1.8
995,Sonic Advance 2,GBA,2002,Platform,Sega,0.93,0.59,0.21,0.07,1.8
996,Madden NFL 07,X360,2006,Sports,Electronic Arts,1.66,0,0.01,0.13,1.8
997,NFL GameDay 2000,PS,1999,Sports,989 Studios,1,0.68,0,0.12,1.8
998,Metroid Prime 3: Corruption,Wii,2007,Shooter,Nintendo,0.89,0.74,0.07,0.09,1.79
999,Disney's The Lion King,SNES,1994,Platform,Virgin Interactive,1.26,0.39,0.08,0.06,1.79