Skip to content
Snippets Groups Projects
game_data.csv 668 KiB
Newer Older
Max Väistö's avatar
Max Väistö committed
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
,appid,name,developer,publisher,score_rank,positive,negative,userscore,owners,average_forever,average_2weeks,median_forever,median_2weeks,price,initialprice,discount,ccu,Review_rating
0,570,Dota 2,Valve,Valve,,1684832,363940,0,200 M .. 500 M,40426,1728,876,894,0.0,0,0,584377,0.8223618831182776
1,730,Counter-Strike: Global Offensive,"Valve, Hidden Path Entertainment",Valve,,6669587,838601,0,100 M .. 200 M,30737,729,6360,285,0.0,0,0,951068,0.8883084706989223
2,1172470,Apex Legends,Respawn Entertainment,Electronic Arts,,573192,141812,0,100 M .. 200 M,8904,615,750,235,0.0,0,0,181216,0.8016626480411299
3,578080,PUBG: BATTLEGROUNDS,"KRAFTON, Inc.","KRAFTON, Inc.",,1273366,945207,0,50 M .. 100 M,22125,622,5527,149,0.0,0,0,188335,0.5739572238551537
4,1063730,New World,Amazon Games,Amazon Games,,182712,77349,0,50 M .. 100 M,8132,1834,3236,396,39.99,3999,0,16639,0.7025736269567524
5,440,Team Fortress 2,Valve,Valve,,926604,60554,0,50 M .. 100 M,8037,1767,278,252,0.0,0,0,90980,0.9386582492366977
6,271590,Grand Theft Auto V,Rockstar North,Rockstar Games,,1410017,228067,0,50 M .. 100 M,12812,687,5406,116,26.4,2640,0,104290,0.8607720971574108
7,1599340,Lost Ark,Smilegate RPG,Amazon Games,,139665,55326,0,50 M .. 100 M,2675,224,753,119,0.0,0,0,34927,0.716263827561272
8,550,Left 4 Dead 2,Valve,Valve,,756488,19148,0,50 M .. 100 M,2285,468,505,106,0.99,999,90,22038,0.9753131623596636
9,252490,Rust,Facepunch Studios,Facepunch Studios,,837347,125492,0,20 M .. 50 M,18719,2019,2751,653,39.99,3999,0,92882,0.8696646064399136
10,230410,Warframe,Digital Extremes,Digital Extremes,,474588,74399,0,20 M .. 50 M,9332,1028,438,94,0.0,0,0,42080,0.8644794867638032
11,105600,Terraria,Re-Logic,Re-Logic,,1159036,27313,0,20 M .. 50 M,7348,397,2092,111,4.99,999,50,28196,0.9769772638574314
12,4000,Garry's Mod,Facepunch Studios,Valve,,964505,32852,0,20 M .. 50 M,11550,43,1538,29,9.99,999,0,23936,0.9670609420698907
13,1245620,ELDEN RING,FromSoftware Inc.,"FromSoftware Inc., Bandai Namco Entertainment",,651020,55642,0,20 M .. 50 M,6212,554,5051,393,59.99,5999,0,22194,0.9212608007788731
14,236390,War Thunder,Gaijin Entertainment,Gaijin Distribution KFT,,319641,227327,0,20 M .. 50 M,4999,745,264,153,0.0,0,0,60305,0.5843870208129177
15,1085660,Destiny 2,Bungie,Bungie,,459865,103383,0,20 M .. 50 M,11305,1633,476,567,0.0,0,0,62207,0.8164520779479022
16,340,Half-Life 2: Lost Coast,Valve,Valve,,10677,1322,0,20 M .. 50 M,33,0,18,0,0.0,0,0,25,0.8898241520126677
17,431960,Wallpaper Engine,Wallpaper Engine Team,Wallpaper Engine Team,,677911,13353,0,20 M .. 50 M,3371,116,886,15,3.99,399,0,77131,0.9806832122025738
18,1938090,Call of Duty: Modern Warfare II,"Infinity Ward, Raven Software, Beenox, Treyarch, High Moon Studios, Sledgehammer Games, Activision Shanghai, Demonware, Toys for Bob",Activision,,257354,173604,0,20 M .. 50 M,3740,702,593,343,0.0,0,0,52894,0.5971672413553061
19,945360,Among Us,Innersloth,Innersloth,,613437,54963,0,20 M .. 50 M,1683,334,716,73,3.49,499,30,3947,0.9177692998204667
20,346110,ARK: Survival Evolved,"Studio Wildcard, Instinct Games, Efecto Studios, Virtual Basement LLC",Studio Wildcard,,542689,112826,0,20 M .. 50 M,10154,1997,678,2508,14.99,1499,0,40586,0.8278818943883817
21,901583,Grand Theft Auto IV: Complete Edition,"Rockstar North, Rockstar Toronto",Rockstar Games,,107379,26580,0,20 M .. 50 M,0,0,0,0,0.0,0,0,0,0.8015810807784471
22,238960,Path of Exile,Grinding Gear Games,Grinding Gear Games,,182982,24201,0,20 M .. 50 M,7904,1735,341,960,0.0,0,0,63015,0.8831902231360681
23,359550,Tom Clancy's Rainbow Six Siege,Ubisoft Montreal,Ubisoft,,1013105,164353,0,20 M .. 50 M,15249,378,3643,213,19.99,1999,0,60266,0.8604171019263532
24,218620,PAYDAY 2,OVERKILL - a Starbreeze Studio.,Starbreeze Publishing AB,,570320,68063,0,20 M .. 50 M,5620,1748,613,335,9.99,999,0,34956,0.8933821859291365
25,892970,Valheim,Iron Gate AB,Coffee Stain Publishing,,394677,21357,0,20 M .. 50 M,3182,646,1558,179,11.99,1999,40,18529,0.9486652533206421
26,291550,Brawlhalla,Blue Mammoth Games,Ubisoft,,279653,56469,0,20 M .. 50 M,2108,218,169,67,0.0,0,0,13809,0.8319985005444451
27,1091500,Cyberpunk 2077,CD PROJEKT RED,CD PROJEKT RED,,501010,134932,0,20 M .. 50 M,3314,412,2337,52,59.99,5999,0,16287,0.7878234178588613
28,242760,The Forest,Endnight Games Ltd,Endnight Games Ltd,,469331,22364,0,20 M .. 50 M,1535,69,919,137,19.99,1999,0,3360,0.9545165193870184
29,304930,Unturned,Smartly Dressed Games,Smartly Dressed Games,,477979,44456,0,20 M .. 50 M,8181,4014,265,150,0.0,0,0,56840,0.9149061605749997
30,1097150,Fall Guys: Ultimate Knockout,Mediatonic,Ravenscourt,,387264,89099,0,20 M .. 50 M,2354,148,566,55,0.0,0,0,2221,0.8129598646410405
31,322330,Don't Starve Together,Klei Entertainment,Klei Entertainment,,399313,17679,0,10 M .. 20 M,2406,608,514,21,14.99,1499,0,26110,0.9576035031847133
32,1086940,Baldur's Gate 3,Larian Studios,Larian Studios,,298187,13688,0,10 M .. 20 M,4019,1325,3444,886,59.99,5999,0,314336,0.9561106212424849
33,413150,Stardew Valley,ConcernedApe,ConcernedApe,,588866,10677,0,10 M .. 20 M,4335,689,2204,158,14.99,1499,0,26685,0.9821914358102755
34,444090,Paladins,Evil Mojo Games,Hi-Rez Studios,,289476,50088,0,10 M .. 20 M,2415,14,405,14,0.0,0,0,8071,0.8524931971587094
35,291480,Warface,MY.GAMES,MY.GAMES,,55140,27079,0,10 M .. 20 M,581,3,120,4,0.0,0,0,873,0.6706479037692018
36,292030,The Witcher 3: Wild Hunt,CD PROJEKT RED,CD PROJEKT RED,,706569,29584,0,10 M .. 20 M,3711,82,937,67,39.99,3999,0,12771,0.9598127019790723
37,49520,Borderlands 2,"Gearbox Software, Aspyr (Mac), Aspyr (Linux)","2K, Aspyr (Mac), Aspyr (Linux)",,259414,17107,0,10 M .. 20 M,3120,411,1176,276,19.99,1999,0,2701,0.9381348975303865
38,10,Counter-Strike,Valve,Valve,,217760,5589,0,10 M .. 20 M,15084,243,164,100,0.99,999,90,10810,0.9749763822537822
39,272060,Serena,Senscape,Senscape,,4885,1444,0,10 M .. 20 M,1253,0,34,0,0.0,0,0,0,0.7718438931900774
40,227940,Heroes & Generals,TLM Partners,TLM Partners,,96309,47196,0,10 M .. 20 M,1180,0,77,0,0.0,0,0,12,0.6711194731890875
41,227300,Euro Truck Simulator 2,SCS Software,SCS Software,,662034,17608,0,10 M .. 20 M,8385,403,1720,115,4.99,1999,75,33777,0.9740922426807054
42,252950,Rocket League,Psyonix LLC,Psyonix LLC,,505321,65456,0,10 M .. 20 M,17579,1107,2147,170,0.0,0,0,29730,0.8853212375411063
43,438100,VRChat,VRChat Inc.,VRChat Inc.,,148219,54238,0,10 M .. 20 M,4252,802,121,207,0.0,0,0,24174,0.7321011375254992
44,1240440,Halo Infinite,343 Industries,Xbox Game Studios,,113091,48645,0,10 M .. 20 M,1312,1069,147,1372,0.0,0,0,5058,0.6992320819112628
45,1468810,鬼谷八荒 Tale of Immortal,鬼谷工作室,"鬼谷工作室, Lightning Games",,113047,106093,0,10 M .. 20 M,3325,62,1744,89,19.99,1999,0,3668,0.5158665693164187
46,620,Portal 2,Valve,Valve,,353519,4499,0,10 M .. 20 M,932,55,505,82,0.99,999,90,1747,0.9874335927243881
47,552990,World of Warships,Wargaming Group Limited,Wargaming Group Limited,,99020,29905,0,10 M .. 20 M,2993,2868,223,5149,0.0,0,0,5432,0.7680434361062634
48,381210,Dead by Daylight,Behaviour Interactive Inc.,Behaviour Interactive Inc.,,548839,136414,0,10 M .. 20 M,8775,391,1060,142,19.99,1999,0,37232,0.8009289999460053
49,739630,Phasmophobia,Kinetic Games,Kinetic Games,,576640,22677,0,10 M .. 20 M,1609,325,689,182,13.99,1399,0,27075,0.9621619276609874
50,990080,Hogwarts Legacy,Avalanche Software,Warner Bros. Games,,199257,18087,0,10 M .. 20 M,2426,178,1995,46,59.99,5999,0,10561,0.9167816916961131
51,320,Half-Life 2: Deathmatch,Valve,Valve,,10852,1133,0,10 M .. 20 M,316,0,33,0,0.49,499,90,156,0.9054651647893199
52,386360,SMITE,Titan Forge Games,Hi-Rez Studios,,88797,22914,0,10 M .. 20 M,3998,4668,232,1902,0.0,0,0,12806,0.7948814351317238
53,755790,Ring of Elysium,Aurora Studio,TCH Scarlet Limited,,74720,25922,0,10 M .. 20 M,968,7,124,7,0.0,0,0,163,0.74243357643926
54,550650,Black Squad,"VALOFE, NS STUDIO",VALOFE,,61174,19255,0,10 M .. 20 M,830,395,57,395,0.0,0,0,714,0.760596302328762
55,444200,World of Tanks Blitz,Wargaming Group Limited,Wargaming Group Limited,,105340,26098,0,10 M .. 20 M,3278,56,202,56,0.0,0,0,11845,0.8014425052115827
56,240,Counter-Strike: Source,Valve,Valve,,152213,5932,0,10 M .. 20 M,5954,1952,410,1952,0.99,999,90,3606,0.9624901198267413
57,301520,Robocraft,Freejam,Freejam,,86150,32246,0,10 M .. 20 M,1622,93,173,93,0.0,0,0,184,0.7276428257711409
58,648800,Raft,Redbeet Interactive,Axolot Games,,265194,17945,0,10 M .. 20 M,1889,200,840,228,19.99,1999,0,7822,0.9366212355062354
59,477160,Human: Fall Flat,No Brakes Games,Curve Games,,179823,10036,0,10 M .. 20 M,678,191,388,161,19.99,1999,0,1909,0.9471397194760323
60,1203220,NARAKA: BLADEPOINT,24 Entertainment,NetEase Games Global,,139427,69202,0,10 M .. 20 M,5056,321,550,58,0.0,0,0,110767,0.6683011470121604
61,433850,Z1 Battle Royale,Daybreak Game Company,Daybreak Game Company,,114719,91686,0,10 M .. 20 M,2799,0,109,0,0.0,0,0,1171,0.5557956444853565
62,417910,Street Warriors Online,Crazy Rocks Studios,Crazy Rocks Studios,,958,700,0,10 M .. 20 M,104,0,65,0,1.99,199,0,0,0.5778045838359469
63,400,Portal,Valve,Valve,,136913,2093,0,10 M .. 20 M,343,31,160,43,0.99,999,90,438,0.9849430959814685
64,1517290,Battlefield 2042,DICE,Electronic Arts,,78404,127103,0,10 M .. 20 M,3102,309,1344,540,59.99,5999,0,6953,0.3815149848910256
65,70,Half-Life,Valve,Valve,,89366,3253,0,10 M .. 20 M,533,0,190,0,0.99,999,90,548,0.964877616903659
66,304050,Trove,gamigo US Inc.,gamigo US Inc.,,72815,17618,0,10 M .. 20 M,1735,17,185,17,0.0,0,0,1141,0.805181736755388
67,239140,Dying Light,Techland,Techland,,371394,19077,0,10 M .. 20 M,2387,128,1260,93,29.99,2999,0,3291,0.9511436188602995
68,1174180,Red Dead Redemption 2,Rockstar Games,Rockstar Games,,407806,42368,0,10 M .. 20 M,4286,350,2460,101,19.79,5999,67,32936,0.9058852799139888
69,261550,Mount & Blade II: Bannerlord,TaleWorlds Entertainment,TaleWorlds Entertainment,,199854,27567,0,10 M .. 20 M,6707,781,3829,683,49.99,4999,0,16283,0.8787842811349875
70,251570,7 Days to Die,The Fun Pimps,The Fun Pimps Entertainment LLC,,242864,32318,0,10 M .. 20 M,5578,1105,1149,686,24.99,2499,0,26252,0.8825577254326228
71,367520,Hollow Knight,Team Cherry,Team Cherry,,298471,8638,0,10 M .. 20 M,1873,80,401,86,14.99,1499,0,4247,0.9718731785782898
72,8930,Sid Meier's Civilization V,"Firaxis Games, Aspyr (Mac), Aspyr (Linux)","2K, Aspyr (Mac), Aspyr (Linux)",,186248,7467,0,10 M .. 20 M,7332,699,2007,1001,29.99,2999,0,15234,0.96145368195545
73,532210,Life is Strange 2,"DONTNOD Entertainment, Feral Interactive (Mac), Feral Interactive (Linux)","Square Enix, Feral Interactive (Mac), Feral Interactive (Linux)",,25894,4499,0,10 M .. 20 M,353,0,211,0,31.96,3196,0,131,0.8519724936663048
74,108600,Project Zomboid,The Indie Stone,The Indie Stone,,213653,14177,0,5 M .. 10 M,3355,464,827,315,19.99,1999,0,23809,0.9377737786946407
75,1222670,The Sims 4,Maxis,Electronic Arts,,97010,14140,0,5 M .. 10 M,1292,318,236,341,0.0,0,0,25840,0.8727845254161044
76,218230,PlanetSide 2,Rogue Planet Games,Daybreak Game Company,,57449,13040,0,5 M .. 10 M,1138,167,145,261,0.0,0,0,1152,0.8150065967739647
77,814380,Sekiro: Shadows Die Twice - GOTY Edition,FromSoftware,"Activision (Excluding Japan and Asia), FromSoftware (Japan), 方块游戏 (Asia)",,233169,11474,0,5 M .. 10 M,2682,74,1518,78,29.99,5999,50,5331,0.9530990054896318
78,72850,The Elder Scrolls V: Skyrim,Bethesda Game Studios,Bethesda Softworks,,297854,16105,0,5 M .. 10 M,6051,0,2541,0,19.99,1999,0,2677,0.9487034931312688
79,80,Counter-Strike: Condition Zero,Valve,Valve,,21348,2030,0,5 M .. 10 M,396,0,33,0,0.99,999,90,401,0.9131662246556592
80,582010,Monster Hunter: World,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,337481,52755,0,5 M .. 10 M,9370,425,3854,631,14.99,2999,50,11600,0.8648125749546428
81,60,Ricochet,Valve,Valve,,4363,966,0,5 M .. 10 M,143,0,6,0,4.99,499,0,2,0.8187277162694689
82,220,Half-Life 2,Valve,Valve,,166701,4190,0,5 M .. 10 M,640,125,363,249,0.99,999,90,674,0.9754814472382981
83,255710,Cities: Skylines,Colossal Order Ltd.,Paradox Interactive,,224919,16278,0,5 M .. 10 M,3159,393,832,270,5.99,2999,80,16508,0.9325115984029652
84,96000,The Tiny Bang Story,Colibri Games,Colibri Games,,5409,760,0,5 M .. 10 M,313,0,320,0,0.99,499,80,8,0.8768033716971957
85,1089350,NBA 2K20,Visual Concepts,2K,,30452,30451,0,5 M .. 10 M,9098,0,3952,0,0.0,0,0,451,0.5000082097762015
86,377160,Fallout 4,Bethesda Game Studios,Bethesda Softworks,,262279,55316,0,5 M .. 10 M,4593,192,1997,178,19.99,1999,0,15580,0.8258284922621578
87,204360,Castle Crashers,The Behemoth,The Behemoth,,99020,3861,0,5 M .. 10 M,575,37,342,37,14.99,1499,0,781,0.9624712045956008
88,224260,No More Room in Hell,No More Room in Hell Team,Lever Games,,62002,6974,0,5 M .. 10 M,405,0,83,0,0.0,0,0,429,0.8988923683600093
89,489520,Minion Masters,BetaDwarf,BetaDwarf,,55796,5498,0,5 M .. 10 M,487,0,111,0,0.0,0,0,796,0.9103011714034001
90,275390,Guacamelee! Super Turbo Championship Edition,DrinkBox Studios,DrinkBox Studios,,5819,471,0,5 M .. 10 M,157,0,37,0,14.99,1499,0,12,0.9251192368839428
91,1046930,Dota Underlords,Valve,Valve,,74261,15963,0,5 M .. 10 M,1614,231,169,235,0.0,0,0,2029,0.8230736832771768
92,250900,The Binding of Isaac: Rebirth,"Nicalis, Inc., Edmund McMillen","Nicalis, Inc.",,246510,6036,0,5 M .. 10 M,10677,141,2455,84,14.99,1499,0,15715,0.9760994036729942
93,107410,Arma 3,Bohemia Interactive,Bohemia Interactive,,227083,23913,0,5 M .. 10 M,10993,675,1196,72,5.99,2999,80,12538,0.9047275653795279
94,289070,Sid Meier’s Civilization VI,"Firaxis Games, Aspyr (Mac), Aspyr (Linux)","2K, Aspyr (Mac), Aspyr (Linux)",,239317,40898,0,5 M .. 10 M,5379,402,1653,206,59.99,5999,0,41059,0.85404778473672
95,130,Half-Life: Blue Shift,Gearbox Software,Valve,,12856,1139,0,5 M .. 10 M,320,0,147,0,0.5,499,90,43,0.9186137906395141
96,203160,Tomb Raider,"Crystal Dynamics, Eidos-Montréal, Feral Interactive (Mac), Nixxes","Crystal Dynamics, Feral Interactive (Mac)",,216819,8648,0,5 M .. 10 M,1134,50,400,86,1.99,199,0,579,0.9616440543405466
97,370910,Kathy Rain,Clifftop Games,Raw Fury,,3324,277,0,5 M .. 10 M,1736,0,265,0,9.99,999,0,3,0.9230769230769231
98,466240,Deceit,World Makers,World Makers,,70896,18599,0,5 M .. 10 M,680,199,76,213,0.0,0,0,757,0.7921783339851388
99,275850,No Man's Sky,Hello Games,Hello Games,,216060,58793,0,5 M .. 10 M,3332,659,1337,160,59.99,5999,0,22594,0.7860929296751354
100,278360,A Story About My Uncle,Gone North Games,Coffee Stain Publishing,,26058,2341,0,5 M .. 10 M,724,0,241,0,14.99,1499,0,8,0.917567519983098
101,632360,Risk of Rain 2,Hopoo Games,Gearbox Publishing,,235952,9298,0,5 M .. 10 M,3225,167,1449,131,24.99,2499,0,6631,0.9620876656472986
102,333930,Dirty Bomb,Splash Damage,Warchest Ltd.,,46908,10820,0,5 M .. 10 M,1574,0,103,0,0.0,0,0,94,0.812569290465632
103,40,Deathmatch Classic,Valve,Valve,,2274,500,0,5 M .. 10 M,192,0,8,0,4.99,499,0,3,0.8197548666186013
104,374320,DARK SOULS III,"FromSoftware, Inc.","FromSoftware, Inc., Bandai Namco Entertainment",,337703,20929,0,5 M .. 10 M,4678,317,2333,475,59.99,5999,0,6356,0.9416421289790091
105,1326470,Sons Of The Forest,Endnight Games Ltd,Newnight,,119823,23711,0,5 M .. 10 M,969,239,678,98,29.99,2999,0,5760,0.8348056906377583
106,219990,Grim Dawn,Crate Entertainment,Crate Entertainment,,80390,5474,0,5 M .. 10 M,6053,2224,2325,1208,24.99,2499,0,2548,0.9362480201248486
107,489830,The Elder Scrolls V: Skyrim Special Edition,Bethesda Game Studios,Bethesda Softworks,,244336,21224,0,5 M .. 10 M,4640,305,1474,212,39.99,3999,0,19658,0.9200783250489531
108,365590,Tom Clancy’s The Division,Massive Entertainment,Ubisoft,,61729,26954,0,5 M .. 10 M,5615,0,1853,0,29.99,2999,0,362,0.6960635070983164
109,427520,Factorio,Wube Software LTD.,Wube Software LTD.,,164768,6020,0,5 M .. 10 M,9481,664,2507,369,35.0,3500,0,13903,0.9647516218938099
110,10180,Call of Duty: Modern Warfare 2 (2009),Infinity Ward,Activision,,49514,3610,0,5 M .. 10 M,853,11,403,15,14.99,1999,25,476,0.9320457796852647
111,394360,Hearts of Iron IV,Paradox Development Studio,Paradox Interactive,,225136,20050,0,5 M .. 10 M,22808,699,3157,392,39.99,3999,0,36765,0.9182253472873655
112,360,Half-Life Deathmatch: Source,Valve,Valve,,2749,949,0,5 M .. 10 M,242,0,20,0,0.99,999,90,7,0.743374797187669
113,387990,Scrap Mechanic,Axolot Games,Axolot Games,,93657,7159,0,5 M .. 10 M,1739,4,457,4,19.99,1999,0,1961,0.9289894461196635
114,273350,Evolve Stage 2,Turtle Rock Studios,2K,,33798,14619,0,5 M .. 10 M,922,0,115,0,0.0,0,0,14,0.6980605985500961
115,1238810,Battlefield V,DICE,Electronic Arts,,117713,49460,0,5 M .. 10 M,1664,317,573,206,49.99,4999,0,7617,0.7041388262458651
116,700330,SCP: Secret Laboratory,Northwood Studios,Northwood Studios,,156905,14251,0,5 M .. 10 M,894,48,92,82,0.0,0,0,6985,0.9167367781439155
117,2630,Call of Duty 2,Infinity Ward,Activision,,7948,543,0,5 M .. 10 M,647,0,586,0,14.99,1999,25,239,0.9360499352255329
118,844870,KurtzPel,KOG,KOG,,21442,13355,0,5 M .. 10 M,214,0,107,0,0.0,0,0,97,0.6162025461965112
119,311210,Call of Duty: Black Ops III,"Treyarch, Aspyr (Mac)","Activision, Aspyr (Mac)",,148198,31156,0,5 M .. 10 M,4000,196,1996,79,14.99,1499,0,5027,0.82628767688482
120,1172620,Sea of Thieves 2023 Edition,Rare Ltd,Xbox Game Studios,,265966,29323,0,5 M .. 10 M,3579,759,1209,559,39.99,3999,0,8309,0.9006972830007214
121,322170,Geometry Dash,RobTop Games,RobTop Games,,243846,17453,0,5 M .. 10 M,5147,425,443,15,3.99,399,0,19855,0.9332067860956222
122,883710,Resident Evil 2,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,135791,3929,0,5 M .. 10 M,1257,276,716,276,9.99,3999,75,1159,0.9718794732321786
123,219640,Chivalry: Medieval Warfare,Torn Banner Studios,Torn Banner Studios,,54529,11576,0,5 M .. 10 M,1047,0,327,0,24.99,2499,0,72,0.8248846532032372
124,285800,Braveland,Tortuga Team,Tortuga Team,,2442,541,0,5 M .. 10 M,1592,0,272,0,7.99,799,0,3,0.8186389540730807
125,363970,Clicker Heroes,Playsaurus,Playsaurus,,53235,5994,0,5 M .. 10 M,6076,0,411,0,0.0,0,0,2604,0.8987995745327458
126,1811260,EA SPORTS FIFA 23,EA Canada & EA Romania,Electronic Arts,,75117,62515,0,5 M .. 10 M,17428,1282,8465,1019,69.99,6999,0,39507,0.5457815043013253
127,253710,theHunter Classic,"Expansive Worlds, Avalanche Studios","Expansive Worlds, Avalanche Studios",,22483,17401,0,5 M .. 10 M,188,0,42,0,0.0,0,0,800,0.5637097582990673
128,30,Day of Defeat,Valve,Valve,,5749,648,0,5 M .. 10 M,215,0,20,0,0.5,499,90,61,0.8987025168047522
129,813820,Realm Royale,Heroic Leap Games,Hi-Rez Studios,,42519,13508,0,5 M .. 10 M,493,0,149,0,0.0,0,0,420,0.7589019579845432
130,594650,Hunt: Showdown,Crytek,Crytek,,143558,30920,0,5 M .. 10 M,5646,497,712,477,39.99,3999,0,13899,0.8227856807161934
131,20,Team Fortress Classic,Valve,Valve,,6580,1012,0,5 M .. 10 M,297,0,23,0,0.5,499,90,69,0.8667017913593256
132,22380,Fallout: New Vegas,Obsidian Entertainment,Bethesda Softworks,,178608,6584,0,5 M .. 10 M,2621,283,978,111,9.99,999,0,4008,0.9644477083243337
133,221100,DayZ,Bohemia Interactive,Bohemia Interactive,,264345,92919,0,5 M .. 10 M,11273,252,2461,153,44.99,4499,0,41834,0.7399150208249362
134,319630,Life is Strange - Episode 1,"DONTNOD Entertainment, Feral Interactive (Mac), Feral Interactive (Linux)","Square Enix, Feral interactive (Mac), Feral Interactive (Linux)",,155551,6224,0,5 M .. 10 M,802,0,165,0,0.0,0,0,192,0.9615268119301499
135,1407200,World of Tanks,Wargaming Group Limited,Wargaming Group Limited,,58690,9803,0,5 M .. 10 M,1098,247,57,421,0.0,0,0,3927,0.8568758851269472
136,594570,Total War: WARHAMMER II,"CREATIVE ASSEMBLY, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,111995,8650,0,5 M .. 10 M,10313,0,3070,0,20.39,5999,66,2961,0.9283020431845497
137,221380,Age of Empires II (2013),"Skybox Labs, Hidden Path Entertainment, Ensemble Studios, Forgotten Empires",Xbox Game Studios,,93805,4180,0,5 M .. 10 M,2837,674,576,674,19.99,1999,0,3491,0.9573404092463133
138,109600,Neverwinter,Cryptic Studios,Gearbox Publishing,,28393,8259,0,5 M .. 10 M,767,10,208,10,0.0,0,0,1019,0.7746644112190331
139,12120,Grand Theft Auto: San Andreas,Rockstar Games,Rockstar Games,,73205,6495,0,5 M .. 10 M,1068,0,147,0,0.0,0,0,542,0.9185069008782936
140,238460,BattleBlock Theater,The Behemoth,The Behemoth,,66674,1875,0,5 M .. 10 M,483,0,270,0,14.99,1499,0,186,0.9726473033888168
141,225840,Sven Co-op,Sven Co-op team,Sven Co-op team,,26289,1779,0,5 M .. 10 M,382,0,109,0,0.0,0,0,310,0.9366182129115006
142,231430,Company of Heroes 2,"Relic Entertainment, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,80819,21818,0,5 M .. 10 M,2926,426,289,763,19.99,1999,0,4307,0.7874255872638523
143,242050,Assassin’s Creed IV Black Flag,Ubisoft Montreal,Ubisoft,,52534,6329,0,5 M .. 10 M,1930,0,959,0,39.99,3999,0,867,0.8924791464927034
144,306130,The Elder Scrolls Online,ZeniMax Online Studios,Bethesda Softworks,,112835,25367,0,5 M .. 10 M,6691,496,1592,408,19.99,1999,0,13964,0.8164498343005167
145,1794680,Vampire Survivors,poncle,poncle,,204816,2838,0,5 M .. 10 M,1507,613,853,207,4.99,499,0,8228,0.9863330347597445
146,268500,XCOM 2,"Firaxis Games, Feral Interactive (Mac), Feral Interactive (Linux)","2K, Feral Interactive (Mac), Feral Interactive (Linux)",,75489,14243,0,5 M .. 10 M,3247,1242,1334,1242,59.99,5999,0,3290,0.8412717870993626
147,12210,Grand Theft Auto IV: The Complete Edition,"Rockstar North, Rockstar Toronto",Rockstar Games,,107364,26575,0,5 M .. 10 M,1201,100,471,133,19.99,1999,0,2483,0.801588782953434
148,1145360,Hades,Supergiant Games,Supergiant Games,,229026,3501,0,5 M .. 10 M,1924,86,1197,86,12.49,2499,50,3667,0.9849436839592821
149,8870,BioShock Infinite,"Irrational Games, Virtual Programming (Linux)",2K,,125114,8172,0,5 M .. 10 M,849,23,494,38,29.99,2999,0,300,0.9386882343231847
150,264710,Subnautica,Unknown Worlds Entertainment,Unknown Worlds Entertainment,,235780,8056,0,5 M .. 10 M,1721,2,908,2,14.99,2999,50,2942,0.9669614002854378
151,555570,Infestation: The New Z,Fredaikis AB,OP Productions LLC,,17891,15571,0,5 M .. 10 M,416,0,77,0,0.0,0,0,328,0.5346661885123424
152,346900,AdVenture Capitalist,Hyper Hippo Games,Hyper Hippo Games,,48940,6633,0,5 M .. 10 M,2957,21,249,21,0.0,0,0,2039,0.8806434779479243
153,1818750,MultiVersus,Player First Games,Warner Bros. Games,,80697,13309,0,5 M .. 10 M,597,0,200,0,0.0,0,0,28,0.858423930387422
154,365670,Blender,Blender Foundation,Blender Foundation,,46449,1454,0,5 M .. 10 M,2240,777,138,790,0.0,0,0,7508,0.9696469949689999
155,677620,Splitgate: Arena Warfare,1047 Games,1047 Games,,100744,9355,0,5 M .. 10 M,495,10,231,10,0.0,0,0,417,0.9150310175387606
156,420,Half-Life 2: Episode Two,Valve,Valve,,34437,1043,0,5 M .. 10 M,399,0,293,0,0.79,799,90,148,0.9706031567080045
157,1100600,Football Manager 2020,Sports Interactive,SEGA,,28326,3422,0,5 M .. 10 M,15298,0,4850,0,0.0,0,0,2616,0.8922136827516693
158,1286830,STAR WARS: The Old Republic,Broadsword,Electronic Arts,,49290,5563,0,5 M .. 10 M,1196,15,195,15,0.0,0,0,4431,0.8985834867737408
159,435150,Divinity: Original Sin 2 - Definitive Edition,Larian Studios,Larian Studios,,161892,6745,0,5 M .. 10 M,4562,920,2965,321,44.99,4499,0,9816,0.9600028463504451
160,273110,Counter-Strike Nexon: Studio,"Valve, NEXON",NEXON,,27281,13995,0,5 M .. 10 M,778,0,39,0,0.0,0,0,427,0.6609409826533579
161,629760,MORDHAU,Triternion,Triternion,,87793,21100,0,5 M .. 10 M,3237,28,785,42,14.99,2999,50,1482,0.8062318055338727
162,300,Day of Defeat: Source,Valve,Valve,,18529,1729,0,5 M .. 10 M,674,11,176,11,0.99,999,90,316,0.914651002073255
163,976730,Halo: The Master Chief Collection,"343 Industries, Splash Damage, Ruffian Games, Bungie, Saber Interactive",Xbox Game Studios,,196300,15808,0,5 M .. 10 M,2356,391,780,190,9.99,3999,75,3868,0.9254719293944594
164,304390,FOR HONOR,"Ubisoft Montreal, Ubisoft Quebec, Ubisoft Toronto, Blue Byte",Ubisoft,,92615,41256,0,5 M .. 10 M,4287,1452,756,2106,14.99,1499,0,3553,0.691822724861994
165,241930,Middle-earth: Shadow of Mordor,Monolith Productions,"Warner Bros. Interactive Entertainment, Warner Bros. Games",,74992,6255,0,5 M .. 10 M,1307,0,921,0,9.99,999,0,359,0.9230125420015508
166,1426210,It Takes Two,Hazelight,Electronic Arts,,127505,6100,0,5 M .. 10 M,888,208,789,231,13.99,3999,65,3419,0.9543430260843532
167,397900,Business Tour - Board Game with Online Multiplayer,8Floor,8Floor,,42164,26888,0,5 M .. 10 M,472,126,231,208,0.0,0,0,961,0.6106122921855992
168,208090,Loadout,Edge of Reality,Edge of Reality,,34449,5193,0,5 M .. 10 M,471,0,235,0,0.0,0,0,0,0.8690025730286061
169,601150,Devil May Cry 5,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,104104,4721,0,5 M .. 10 M,1015,151,499,41,9.89,2999,67,1087,0.9566184240753504
170,232770,POSTAL,Running With Scissors,Running With Scissors,,6680,819,0,5 M .. 10 M,168,0,235,0,67.95,6795,0,31,0.8907854380584078
171,588650,Dead Cells,Motion Twin,Motion Twin,,134115,3913,0,5 M .. 10 M,1626,158,796,262,24.99,2499,0,2031,0.9716506795722607
172,588430,Fallout Shelter,Bethesda Game Studios,Bethesda Softworks,,53666,6953,0,5 M .. 10 M,457,114,74,170,0.0,0,0,1701,0.8852999884524654
173,500,Left 4 Dead,Valve,Valve,,48302,1866,0,5 M .. 10 M,1200,17,97,17,0.99,999,90,443,0.962804975283049
174,15700,Oddworld: Abe's Oddysee,Oddworld Inhabitants,Oddworld Inhabitants,,3521,593,0,5 M .. 10 M,194,0,185,0,2.99,299,0,44,0.8558580456976179
175,211500,RaceRoom Racing Experience,KW Studios,"KW Studios, RaceRoom Entertainment AG",,14380,5113,0,5 M .. 10 M,208,0,46,0,0.0,0,0,709,0.737700713076489
176,526870,Satisfactory,Coffee Stain Studios,Coffee Stain Publishing,,134752,4024,0,5 M .. 10 M,3237,1258,964,1182,29.99,2999,0,8433,0.971003631751888
177,113400,APB Reloaded,Reloaded Productions,Little Orbit,,23191,13309,0,5 M .. 10 M,931,0,204,0,0.0,0,0,272,0.6353698630136986
178,379720,DOOM,id Software,Bethesda Softworks,,173367,8511,0,5 M .. 10 M,1248,0,575,0,19.99,1999,0,638,0.9532048955893511
179,339610,Freestyle 2: Street Basketball,JOYCITY,JOYCITY,,8928,3316,0,5 M .. 10 M,909,0,86,0,0.0,0,0,240,0.7291734727213329
180,3590,Plants vs. Zombies GOTY Edition,"PopCap Games, Inc.","PopCap Games, Inc., Electronic Arts",,107913,2777,0,5 M .. 10 M,1262,116,519,21,4.99,499,0,8807,0.9749119161622549
181,424840,Little Nightmares,Tarsier Studios,BANDAI NAMCO Entertainment,,87455,4852,0,2 M .. 5 M,202,0,106,0,4.99,1999,75,411,0.94743627243871
182,206420,Saints Row IV: Re-Elected,Deep Silver Volition,Deep Silver,,67630,8861,0,2 M .. 5 M,1199,0,730,0,19.99,1999,0,174,0.8841563059706371
183,868270,The Cycle,YAGER,YAGER,,27392,16893,0,2 M .. 5 M,788,0,182,0,0.0,0,0,297,0.6185390086936886
184,238320,Outlast,Red Barrels,Red Barrels,,101813,3811,0,2 M .. 5 M,215,124,131,178,19.99,1999,0,549,0.9639191850337044
185,268910,Cuphead,Studio MDHR Entertainment Inc.,Studio MDHR Entertainment Inc.,,139178,5110,0,2 M .. 5 M,1283,2,544,2,19.99,1999,0,1311,0.9645847194499889
186,779340,Total War: THREE KINGDOMS,"CREATIVE ASSEMBLY, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,68989,27584,0,2 M .. 5 M,5986,812,2579,812,59.99,5999,0,4909,0.7143715117061704
187,6060,"Star Wars: Battlefront 2 (Classic, 2005)",Pandemic Studios,"Lucasfilm, LucasArts, Disney",,47255,2815,0,2 M .. 5 M,618,0,180,0,9.99,999,0,223,0.9437787098062712
188,782330,DOOM Eternal,id Software,Bethesda Softworks,,162322,16216,0,2 M .. 5 M,1406,267,748,399,39.99,3999,0,1194,0.909173397259967
189,252130,Divide By Sheep,"Victor Solodilov, Denis Novikov",tinyBuild,,2320,230,0,2 M .. 5 M,390,0,34,0,4.99,499,0,0,0.9098039215686274
190,48700,Mount & Blade: Warband,TaleWorlds Entertainment,TaleWorlds Entertainment,,150090,3449,0,2 M .. 5 M,5729,277,1417,368,19.99,1999,0,3452,0.9775366519255694
191,534380,Dying Light 2 Stay Human,Techland,Techland,,111990,31798,0,2 M .. 5 M,2587,56,2080,80,29.99,5999,50,4005,0.7788549809441678
192,236850,Europa Universalis IV,"Paradox Development Studio, Paradox Tinto",Paradox Interactive,,103475,15595,0,2 M .. 5 M,17555,380,712,414,39.99,3999,0,15998,0.869026622994877
193,513710,SCUM,Gamepires,Jagex Ltd,,68971,23811,0,2 M .. 5 M,3236,363,680,219,39.99,3999,0,16685,0.743366170162316
194,284160,BeamNG.drive,BeamNG,BeamNG,,190642,5629,0,2 M .. 5 M,5631,999,555,85,24.99,2499,0,12978,0.9713202663664016
195,55230,Saints Row: The Third,Volition,Deep Silver,,64337,2769,0,2 M .. 5 M,1640,0,835,0,9.99,999,0,241,0.958736923672995
196,211820,Starbound,Chucklefish,Chucklefish,,149704,11890,0,2 M .. 5 M,3647,66,1097,66,14.99,1499,0,1374,0.926420535415919
197,552500,Warhammer: Vermintide 2,Fatshark,Fatshark,,96149,17176,0,2 M .. 5 M,1509,998,466,998,29.99,2999,0,2663,0.848435914405471
198,391540,Undertale,tobyfox,tobyfox,,199666,6879,0,2 M .. 5 M,1068,0,426,0,9.99,999,0,843,0.9666949090997119
199,1593500,God of War,Santa Monica Studio,PlayStation PC LLC,,106295,3464,0,2 M .. 5 M,1763,70,1467,113,49.99,4999,0,2461,0.9684399456992138
200,1118200,People Playground,mestiez,Studio Minus,,205639,2619,0,2 M .. 5 M,1822,12,469,13,9.99,999,0,7034,0.9874242526097436
201,8190,Just Cause 2,Avalanche Studios,Square Enix,,45050,4554,0,2 M .. 5 M,1168,0,187,0,3.74,1499,75,123,0.9081928876703491
202,244210,Assetto Corsa,Kunos Simulazioni,Kunos Simulazioni,,95996,7900,0,2 M .. 5 M,2429,55,265,50,3.99,1999,80,11061,0.923962423962424
203,200210,Realm of the Mad God Exalt,"Wild Shadow Studios, Deca Games",Deca Games,,36955,7416,0,2 M .. 5 M,1196,0,80,0,0.0,0,0,1303,0.8328638074417976
204,440900,Conan Exiles,Funcom,Funcom,,74136,20489,0,2 M .. 5 M,6454,90,1873,90,39.99,3999,0,8136,0.7834715984147952
205,1250,Killing Floor,Tripwire Interactive,Tripwire Interactive,,61544,3259,0,2 M .. 5 M,1226,379,358,607,19.99,1999,0,286,0.9497091184050122
206,42910,Magicka,Arrowhead Game Studios,Paradox Interactive,,26031,3599,0,2 M .. 5 M,708,0,388,0,9.99,999,0,30,0.8785352683091462
207,863550,HITMAN 2,IO Interactive A/S,IO Interactive A/S,,67086,6467,0,2 M .. 5 M,975,0,168,0,0.0,0,0,362,0.9120770056965726
208,355840,Survarium,Vostok Games,Vostok Games,,13945,11883,0,2 M .. 5 M,369,0,60,0,0.0,0,0,2,0.5399179185380207
209,630,Alien Swarm,Valve,Valve,,19633,1054,0,2 M .. 5 M,285,0,81,0,0.0,0,0,68,0.9490501280997728
210,57300,Amnesia: The Dark Descent,Frictional Games,Frictional Games,,29739,1671,0,2 M .. 5 M,166,0,72,0,4.99,1999,75,73,0.946800382043935
211,1332010,Stray,BlueTwelve Studio,Annapurna Interactive,,121045,3324,0,2 M .. 5 M,474,181,371,352,29.99,2999,0,366,0.9732730825205638
212,504370,Battlerite,Stunlock Studios,Stunlock Studios,,49827,9172,0,2 M .. 5 M,990,0,182,0,0.0,0,0,116,0.8445397379616604
213,20920,The Witcher 2: Assassins of Kings Enhanced Edition,CD PROJEKT RED,"CD PROJEKT RED, 1C-SoftClub",,72268,8422,0,2 M .. 5 M,1151,0,284,0,19.99,1999,0,550,0.8956252323708018
214,222880,Insurgency,New World Interactive,New World Interactive,,114400,10245,0,2 M .. 5 M,1266,0,242,0,14.99,1499,0,401,0.9178065706606763
215,1049590,Eternal Return: Black Survival,Nimble Neuron,"Kakao Games Europe B.V. (EU,NA,OCE), Nimble Neuron (Excluding EU,NA,OCE)",,39124,10621,0,2 M .. 5 M,2238,1197,206,1109,0.0,0,0,15801,0.7864911046336315
216,262060,Darkest Dungeon,Red Hook Studios,Red Hook Studios,,117035,10839,0,2 M .. 5 M,1731,77,594,111,24.99,2499,0,1917,0.9152368737976445
217,286160,Tabletop Simulator,Berserk Games,Berserk Games,,57320,3675,0,2 M .. 5 M,1873,156,501,120,19.99,1999,0,5096,0.9397491597671941
218,1551360,Forza Horizon 5,Playground Games,Xbox Game Studios,,123091,16927,0,2 M .. 5 M,2646,177,2046,57,59.99,5999,0,11560,0.8791084003485267
219,1056960,Wolfenstein: Youngblood,"Machine Games, Arkane Studios",Bethesda Softworks,,5537,6748,0,2 M .. 5 M,720,0,418,0,19.99,1999,0,109,0.45071225071225074
220,391220,Rise of the Tomb Raider,"Crystal Dynamics, Eidos-Montréal, Feral Interactive (Mac), Feral Interactive (Linux), Nixxes","Crystal Dynamics, Feral Interactive (Mac), Feral Interactive (Linux)",,112748,7247,0,2 M .. 5 M,1494,8,859,8,2.49,999,75,704,0.9396058169090379
221,899770,Last Epoch,Eleventh Hour Games,Eleventh Hour Games,,18557,3548,0,2 M .. 5 M,3437,532,1304,434,34.99,3499,0,4225,0.8394933273015155
222,55150,"Warhammer 40,000: Space Marine - Anniversary Edition",Relic Entertainment,SEGA,,21123,1864,0,2 M .. 5 M,550,308,253,361,59.99,5999,0,140,0.9189106886501066
223,1446780,MONSTER HUNTER RISE,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,67679,10644,0,2 M .. 5 M,6322,422,4170,630,15.99,3999,60,5793,0.8641012218633096
224,1237970,Titanfall 2,Respawn Entertainment,Electronic Arts,,171865,9423,0,2 M .. 5 M,576,282,375,257,2.99,2999,90,10198,0.9480219319535766
225,466560,Northgard,Shiro Games,Shiro Unlimited,,48594,6726,0,2 M .. 5 M,1111,346,415,431,29.99,2999,0,2460,0.8784164859002169
226,223750,DCS World Steam Edition,Eagle Dynamics SA,advocatus,,25233,4007,0,2 M .. 5 M,950,583,26,1146,0.0,0,0,1202,0.8629616963064295
227,356190,Middle-earth: Shadow of War,Monolith Productions,WB Games,,79362,10826,0,2 M .. 5 M,1964,0,1281,0,49.99,4999,0,1441,0.8799618574533198
228,24240,PAYDAY The Heist,OVERKILL Software,Daybreak Game Company,,36793,2621,0,2 M .. 5 M,425,0,189,0,14.99,1499,0,73,0.9335007865225554
229,33930,Arma 2: Operation Arrowhead,Bohemia Interactive,Bohemia Interactive,,20140,1660,0,2 M .. 5 M,2936,0,429,0,3.99,1999,80,271,0.9238532110091743
230,395170,DISTRAINT: Deluxe Edition,Jesse Makkonen,Jesse Makkonen,,10534,758,0,2 M .. 5 M,262,0,259,0,4.99,499,0,6,0.9328728303223521
231,115300,Call of Duty: Modern Warfare 3 (2011),"Infinity Ward, Sledgehammer Games",Activision,,30665,4081,0,2 M .. 5 M,0,0,0,0,39.99,3999,0,0,0.8825476313820296
232,39210,FINAL FANTASY XIV Online,Square Enix,Square Enix,,60267,7874,0,2 M .. 5 M,17875,754,2958,305,19.99,1999,0,21861,0.8844454880321686
233,646570,Slay the Spire,Mega Crit Games,Mega Crit Games,,134418,2913,0,2 M .. 5 M,3853,403,1505,57,8.49,2499,66,10729,0.978788474561461
234,508440,Totally Accurate Battle Simulator,Landfall,Landfall,,108898,2362,0,2 M .. 5 M,2756,8,255,8,6.79,1999,66,2098,0.9787704476002157
235,63380,Sniper Elite V2,Rebellion,Rebellion,,21967,2921,0,2 M .. 5 M,509,0,258,0,0.0,0,0,102,0.8826342012214722
236,386180,Crossout,Targem Games,Gaijin Distribution KFT,,43060,13611,0,2 M .. 5 M,1298,304,236,594,0.0,0,0,7422,0.7598242487339203
237,220240,Far Cry 3,"Ubisoft Montreal, Massive Entertainment, and Ubisoft Shanghai",Ubisoft,,83961,9456,0,2 M .. 5 M,1416,116,950,116,19.99,1999,0,384,0.8987764539644818
238,548430,Deep Rock Galactic,Ghost Ship Games,Coffee Stain Publishing,,228345,7059,0,2 M .. 5 M,2903,139,1023,84,29.99,2999,0,9694,0.9700132538104705
239,744900,Dead Frontier 2,Creaky Corpse Ltd,Creaky Corpse Ltd,,16296,6576,0,2 M .. 5 M,286,32,38,64,0.0,0,0,1239,0.7124868835257083
240,202970,Call of Duty: Black Ops II,Treyarch,Activision,,36789,5860,0,2 M .. 5 M,469,152,139,227,19.79,5999,67,173,0.8625993575464841
241,50,Half-Life: Opposing Force,Gearbox Software,Valve,,18070,917,0,2 M .. 5 M,307,0,167,0,0.5,499,90,111,0.9517037973350186
242,1366540,Dyson Sphere Program,Youthcat Studio,Gamera Games,,70607,1607,0,2 M .. 5 M,3962,1583,1192,1583,19.99,1999,0,2962,0.9777466973163098
243,244850,Space Engineers,Keen Software House,Keen Software House,,107834,14201,0,2 M .. 5 M,6164,82,825,26,19.99,1999,0,5902,0.883631744991191
244,1225330,NBA 2K21,Visual Concepts,2K,,16299,22930,0,2 M .. 5 M,5433,399,3045,797,0.0,0,0,363,0.41548344337097554
245,1506830,FIFA 22,EA Canada & EA Romania,Electronic Arts,,95173,23278,0,2 M .. 5 M,10698,184,6538,104,0.0,0,0,6708,0.8034799199669062
246,294100,RimWorld,Ludeon Studios,Ludeon Studios,,163951,3164,0,2 M .. 5 M,8299,550,3186,548,34.99,3499,0,16958,0.9810669299584118
247,397540,Borderlands 3,Gearbox Software,2K,,103798,18567,0,2 M .. 5 M,2437,193,1359,173,59.99,5999,0,3953,0.8482654353777632
248,439700,Z1 Battle Royale: Test Server,Daybreak Game Company,Daybreak Game Company,,1329,1202,0,2 M .. 5 M,1090,0,10,0,0.0,0,0,2,0.5250888976689055
249,212500,The Lord of the Rings Online,"Standing Stone Games, LLC","Standing Stone Games, LLC",,14576,3360,0,2 M .. 5 M,699,0,140,0,0.0,0,0,773,0.8126672613737734
250,281990,Stellaris,Paradox Development Studio,Paradox Interactive,,135883,17599,0,2 M .. 5 M,8750,296,2138,56,39.99,3999,0,11526,0.8853350881536597
251,7670,BioShock,"2K Boston, 2K Australia",2K,,27448,1696,0,2 M .. 5 M,306,0,117,0,19.99,1999,0,37,0.9418062036782872
252,380600,Fishing Planet,Fishing Planet LLC,Fishing Planet LLC,,40962,6618,0,2 M .. 5 M,1431,2,54,2,0.0,0,0,4049,0.8609079445145019
253,240720,Getting Over It with Bennett Foddy,Bennett Foddy,Bennett Foddy,,53281,11352,0,2 M .. 5 M,698,0,149,0,7.99,799,0,292,0.8243621679327897
254,620980,Beat Saber,Beat Games,Beat Games,,66754,2976,0,2 M .. 5 M,1245,2,609,3,29.99,2999,0,580,0.957321095654668
255,48000,LIMBO,Playdead,Playdead,,45207,3289,0,2 M .. 5 M,168,0,164,0,9.99,999,0,188,0.9321799736060706
256,302830,BLOCKADE 3D,Novalink,Novalink,,15326,10920,0,2 M .. 5 M,885,0,66,0,0.0,0,0,9,0.5839365998628362
257,674940,Stick Fight: The Game,Landfall West,Landfall,,104963,7014,0,2 M .. 5 M,408,59,220,67,3.04,499,39,683,0.9373621368673924
258,201270,Total War: SHOGUN 2,"CREATIVE ASSEMBLY, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,51783,4815,0,2 M .. 5 M,0,0,0,0,7.49,2999,75,1,0.9149263224848935
259,8500,EVE Online,CCP,CCP,,23503,8273,0,2 M .. 5 M,2788,1257,186,1843,0.0,0,0,3889,0.739646273917422
260,1293830,Forza Horizon 4,Playground Games,Xbox Game Studios,,173333,21024,0,2 M .. 5 M,1944,76,800,78,59.99,5999,0,4949,0.8918279249010841
261,601510,Yu-Gi-Oh! Duel Links,KONAMI,KONAMI,,33970,6533,0,2 M .. 5 M,1902,0,162,0,0.0,0,0,2926,0.8387033059279559
262,205100,Dishonored,Arkane Studios,Bethesda Softworks,,73316,1795,0,2 M .. 5 M,724,1,361,1,9.99,999,0,405,0.9761020356538989
263,200710,Torchlight II,Runic Games,Gearbox Publishing,,39379,3003,0,2 M .. 5 M,1420,0,839,0,14.99,1499,0,262,0.9291444481147657
264,884660,CRSED: F.O.A.D.,Darkflow Software,Gaijin Distribution KFT,,29973,7869,0,2 M .. 5 M,253,0,60,0,0.0,0,0,200,0.7920564452195973
265,506540,Last Man Standing,"Free Reign Entertainment, Free Reign Entertainment",Free Reign Entertainment,,11017,6988,0,2 M .. 5 M,214,0,63,0,0.0,0,0,3,0.6118855873368508
266,311690,Enter the Gungeon,Dodge Roll,Devolver Digital,,71947,3105,0,2 M .. 5 M,1752,118,342,119,14.99,1499,0,1051,0.9586286841123488
267,35450,Red Orchestra 2: Heroes of Stalingrad with Rising Storm,Tripwire Interactive,Tripwire Interactive,,33841,2771,0,2 M .. 5 M,1133,0,225,0,19.99,1999,0,192,0.9243144324265268
268,261640,Borderlands: The Pre-Sequel,"2K Australia, Gearbox Software, Aspyr (Linux)","2K, Aspyr (Linux)",,31627,7302,0,2 M .. 5 M,1813,0,609,0,39.99,3999,0,442,0.8124277530889569
269,518790,theHunter: Call of the Wild,Expansive Worlds,Expansive Worlds,,122967,16780,0,2 M .. 5 M,1327,271,494,407,19.99,1999,0,3173,0.8799258660293244
270,234140,Mad Max,Avalanche Studios,"Warner Bros. Games, Warner Bros. Interactive Entertainment",,63836,5671,0,2 M .. 5 M,1632,0,1020,0,19.99,1999,0,623,0.9184110952853669
271,813780,Age of Empires II: Definitive Edition,"Forgotten Empires, Tantalus Media, Wicked Witch, World's Edge",Xbox Game Studios,,122753,6754,0,2 M .. 5 M,3948,165,843,108,19.99,1999,0,15721,0.9478483788521084
272,812140,Assassin's Creed Odyssey,"Ubisoft Quebec, Ubisoft Montreal, Ubisoft Bucharest, Ubisoft Singapore, Ubisoft Montpellier, Ubisoft Kiev, Ubisoft Shanghai",Ubisoft,,127698,15468,0,2 M .. 5 M,5116,93,3859,139,11.99,5999,80,3225,0.8919575876954026
273,962130,Grounded,Obsidian Entertainment,Xbox Game Studios,,55154,7180,0,2 M .. 5 M,2041,564,1046,332,39.99,3999,0,2508,0.8848140661597202
274,407530,ARK: Survival Of The Fittest,"Studio Wildcard, Instinct Games, Efecto Studios, Virtual Basement LLC",Studio Wildcard,,7489,3868,0,2 M .. 5 M,74,0,21,0,14.99,1499,0,62,0.6594170995861584
275,312990,The Expendabros,Free Lives,Devolver Digital,,17382,502,0,2 M .. 5 M,163,0,75,0,0.0,0,0,27,0.9719302169537016
276,1832640,Mirror 2: Project X,KAGAMI Ⅱ WORKs,NIJICO,,29872,88064,0,2 M .. 5 M,1059,0,170,0,1.99,199,0,31,0.2532899199565866
277,1238840,Battlefield 1,DICE,Electronic Arts,,107523,16952,0,2 M .. 5 M,2575,332,533,119,39.99,3999,0,5200,0.8638120104438642
278,308600,Gene Shift Auto,Nik Nak Studios,Nik Nak Studios,,1845,406,0,2 M .. 5 M,1833,183,332,183,0.0,0,0,10,0.8196357174589072
279,546560,Half-Life: Alyx,Valve,Valve,,81173,1344,0,2 M .. 5 M,630,0,443,0,20.39,5999,66,280,0.9837124471321061
280,698780,Doki Doki Literature Club!,Team Salvato,Team Salvato,,184819,6640,0,2 M .. 5 M,2401,508,101,508,0.0,0,0,418,0.9653189455705922
281,960090,Bloons TD 6,Ninja Kiwi,Ninja Kiwi,,266164,7030,0,2 M .. 5 M,3738,278,1260,186,13.99,1399,0,12567,0.9742673704400536
282,203770,Crusader Kings II,Paradox Development Studio,Paradox Interactive,,63793,6968,0,2 M .. 5 M,1957,263,146,263,0.0,0,0,2120,0.9015276776755557
283,233450,Prison Architect,"Double Eleven, Introversion Software",Paradox Interactive,,60272,6814,0,2 M .. 5 M,1901,842,663,842,29.99,2999,0,1122,0.8984288823301434
284,20900,The Witcher: Enhanced Edition Director's Cut,CD PROJEKT RED,"CD PROJEKT RED, 1C-SoftClub",,66286,8446,0,2 M .. 5 M,1285,0,185,0,9.99,999,0,515,0.886982818605149
285,1604030,V Rising,Stunlock Studios,Stunlock Studios,,64503,8765,0,2 M .. 5 M,2022,227,977,256,19.99,1999,0,2713,0.880370693890921
286,9480,Saints Row 2,Volition,Deep Silver,,14334,4441,0,2 M .. 5 M,860,0,149,0,9.99,999,0,97,0.763462050599201
287,223470,POSTAL 2,Running With Scissors,Running With Scissors,,86635,3179,0,2 M .. 5 M,527,0,207,0,9.99,999,0,361,0.9646046273409491
288,2050650,Resident Evil 4,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,85974,2154,0,2 M .. 5 M,1530,0,1450,0,39.59,5999,34,2863,0.9755582788671024
289,552520,Far Cry 5,"Ubisoft Montreal, Red Storm, Ubisoft Shanghai, Ubisoft Toronto, Ubisoft Kiev",Ubisoft,,114542,28059,0,2 M .. 5 M,1922,103,1377,129,59.99,5999,0,1709,0.8032341989186612
290,671860,BattleBit Remastered,"SgtOkiDoki, Vilaskis, TheLiquidHorse",SgtOkiDoki,,76693,9327,0,2 M .. 5 M,1134,792,621,189,11.99,1499,20,7773,0.8915717275052314
291,312660,Sniper Elite 4,Rebellion,Rebellion,,45602,4615,0,2 M .. 5 M,1269,91,303,123,59.99,5999,0,3740,0.9080988509867176
292,761890,Albion Online,Sandbox Interactive GmbH,Sandbox Interactive GmbH,,50648,13110,0,2 M .. 5 M,5686,25,268,48,0.0,0,0,9708,0.7943787446281251
293,209080,Guns of Icarus Online,Muse Games,Muse Games,,13185,1456,0,2 M .. 5 M,314,0,264,0,4.99,499,0,2,0.9005532408988457
294,220200,Kerbal Space Program,Squad,Private Division ,,110964,5979,0,2 M .. 5 M,6736,261,843,378,39.99,3999,0,1882,0.9488725276416716
295,10090,Call of Duty: World at War,Treyarch,Activision,,42031,3751,0,2 M .. 5 M,2653,0,1017,0,14.99,1999,25,391,0.9180682364247957
296,99900,Spiral Knights,Grey Havens,Grey Havens,,19362,3701,0,2 M .. 5 M,778,0,102,0,0.0,0,0,129,0.8395265143303127
297,214950,Total War: ROME II - Emperor Edition,CREATIVE ASSEMBLY,SEGA,,65252,14198,0,2 M .. 5 M,5971,0,1568,0,14.99,5999,75,4895,0.821296412838263
298,389730,TEKKEN 7,BANDAI NAMCO Studios Inc.,BANDAI NAMCO Entertainment,,70336,14852,0,2 M .. 5 M,3099,103,396,39,9.99,3999,75,3384,0.8256561957083157
299,265630,Fistful of Frags,Fistful of Frags Team,Fistful of Frags Team,,31937,3011,0,2 M .. 5 M,398,0,110,0,0.0,0,0,94,0.9138434245164244
300,1196590,Resident Evil Village,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,92604,4086,0,2 M .. 5 M,1258,398,906,398,19.99,3999,50,669,0.9577412348743407
301,351940,The Descendant,Gaming Corps AB,"Microids Indie, Microids",,5430,744,0,2 M .. 5 M,1762,0,265,0,14.99,1499,0,589,0.8794946550048591
302,380,Half-Life 2: Episode One,Valve,Valve,,25059,1112,0,2 M .. 5 M,288,0,208,0,0.79,799,90,130,0.9575102212372474
303,299360,Block N Load,"Toadman Interactive, Artplant",Toadman Interactive,,12014,3306,0,2 M .. 5 M,1292,0,63,0,0.0,0,0,5,0.7842036553524804
304,1229490,ULTRAKILL,"Arsi ""Hakita"" Patala",New Blood Interactive,,74188,1362,0,2 M .. 5 M,943,12,351,12,24.99,2499,0,1219,0.9819722038385176
305,245170,Skullgirls 2nd Encore,Hidden Variable Studios,Autumn Games,,27735,10494,0,2 M .. 5 M,508,11,134,11,24.99,2499,0,182,0.7254963509377698
306,236870,HITMAN,"IO Interactive A/S, Feral Interactive (Linux), Feral Interactive (Mac)","IO Interactive A/S, Feral Interactive (Linux), Feral Interactive (Mac)",,30646,6237,0,2 M .. 5 M,493,0,424,0,0.0,0,0,120,0.8308977035490606
307,1151340,Fallout 76,Bethesda Game Studios,Bethesda Softworks,,64743,24603,0,2 M .. 5 M,3347,92,978,132,39.99,3999,0,9322,0.7246323282519642
308,35720,Trine 2: Complete Story,Frozenbyte,Frozenbyte,,20029,938,0,2 M .. 5 M,341,0,149,0,19.99,1999,0,116,0.9552630323842228
309,224600,Defiance,Trion Worlds,Trion Worlds,,9673,2993,0,2 M .. 5 M,539,0,122,0,0.0,0,0,4,0.7636980893731249
310,200510,XCOM: Enemy Unknown,"Firaxis Games, Feral Interactive (Linux)","2K, Feral Interactive (Linux)",,49413,2960,0,2 M .. 5 M,1909,843,1141,843,29.99,2999,0,695,0.9434823286808088
311,323190,Frostpunk,11 bit studios,11 bit studios,,86792,7522,0,2 M .. 5 M,1350,80,425,80,29.99,2999,0,1846,0.9202451385796382
312,225540,Just Cause 3,Avalanche Studios,Square Enix,,93072,19017,0,2 M .. 5 M,1851,389,579,389,19.99,1999,0,894,0.8303401761100554
313,1172380,STAR WARS Jedi: Fallen Order,Respawn Entertainment,Electronic Arts,,117278,14309,0,2 M .. 5 M,1110,0,986,0,39.99,3999,0,760,0.8912582549947943
314,270880,American Truck Simulator,SCS Software,SCS Software,,130417,4503,0,2 M .. 5 M,4123,137,590,45,4.99,1999,75,6270,0.9666246664690187
315,4560,Company of Heroes - Legacy Edition,Relic Entertainment,SEGA,,6131,417,0,2 M .. 5 M,889,0,163,0,4.99,1999,75,69,0.9363164324984729
316,208650,Batman: Arkham Knight,Rocksteady Studios,Warner Bros. Interactive Entertainment,,90944,14856,0,2 M .. 5 M,1462,35,915,53,19.99,1999,0,1314,0.8595841209829868
317,50130,Mafia II (Classic),2K Czech,2K,,48111,2583,0,2 M .. 5 M,2776,0,767,0,9.89,2999,67,301,0.9490472245236122
318,207610,The Walking Dead,Telltale Games,Skybound Games,,62302,1818,0,2 M .. 5 M,1042,62,394,62,14.99,1499,0,202,0.9716469120399251
319,219740,Don't Starve,Klei Entertainment,Klei Entertainment,,100092,3396,0,2 M .. 5 M,736,5,253,5,9.99,999,0,2030,0.9671846011131725
320,439190,Stories: The Path of Destinies,Spearhead Games,Spearhead Games,,5593,743,0,2 M .. 5 M,239,0,302,0,14.99,1499,0,1,0.8827335858585859
321,280,Half-Life: Source,Valve,Valve,,9699,3973,0,2 M .. 5 M,190,0,88,0,0.99,999,90,37,0.7094060854300761
322,359320,Elite Dangerous,Frontier Developments,Frontier Developments,,69464,20361,0,2 M .. 5 M,8219,235,1212,245,7.49,2999,75,3316,0.7733259114945727
323,212680,FTL: Faster Than Light,Subset Games,Subset Games,,65853,2990,0,2 M .. 5 M,1531,174,364,271,9.99,999,0,1124,0.9565678427726857
324,355180,Codename CURE,Hoobalugalar_X,Raptor Byte,,13724,2506,0,2 M .. 5 M,201,1,40,1,0.0,0,0,16,0.8455945779420826
325,457140,Oxygen Not Included,Klei Entertainment,Klei Entertainment,,100810,3508,0,2 M .. 5 M,3836,119,936,132,24.99,2499,0,6942,0.9663720546789624
326,1180380,Stay Out,MOBITECH LLC,MOBITECH LLC,,10236,7457,0,2 M .. 5 M,295,0,28,0,0.0,0,0,1633,0.5785338834567343
327,219150,Hotline Miami,Dennaton Games,Devolver Digital,,84631,2329,0,2 M .. 5 M,387,0,259,0,9.99,999,0,170,0.9732175712971481
328,17410,Mirror's Edge,DICE,Electronic Arts,,30182,4317,0,2 M .. 5 M,281,0,157,0,19.99,1999,0,42,0.8748659381431346
329,918570,Century: Age of Ashes,Playwing LTD,Playwing LTD,,11959,4073,0,2 M .. 5 M,197,0,59,0,0.0,0,0,101,0.7459456087824351
330,409710,BioShock Remastered,"2K Boston, 2K Australia, Blind Squirrel, Feral Interactive (Mac)","2K, Feral Interactive (Mac)",,39475,9849,0,2 M .. 5 M,492,0,230,0,19.99,1999,0,268,0.8003203308734085
331,1677740,Stumble Guys,Scopely,Scopely,,80499,12602,0,2 M .. 5 M,573,53,137,55,0.0,0,0,12086,0.86464162576127
332,1222680,Need for Speed Heat,Ghost Games,Electronic Arts,,75973,15585,0,2 M .. 5 M,882,685,409,1019,6.99,6999,90,7882,0.8297800301448263
333,233130,Shadow Warrior,Flying Wild Hog,Devolver Digital,,23089,1915,0,2 M .. 5 M,332,0,211,0,29.99,2999,0,30,0.9234122540393537
334,368230,Kingdom: Classic,"Noio, Licorice",Raw Fury,,18543,1921,0,2 M .. 5 M,220,0,165,0,0.0,0,0,69,0.9061278342455042
335,766570,Russian Fishing 4,"FishSoft, LLC","FishSoft, LLC",,25572,8252,0,2 M .. 5 M,1087,1224,45,1224,0.0,0,0,8357,0.756031220435194
336,418460,Rising Storm 2: Vietnam,"Antimatter Games, Tripwire Interactive",Tripwire Interactive,,45839,7206,0,2 M .. 5 M,1351,24,512,24,4.99,499,0,411,0.8641530775756433
337,247080,Crypt of the NecroDancer,Brace Yourself Games,"Brace Yourself Games, Klei Entertainment",,22220,930,0,2 M .. 5 M,497,0,167,0,14.99,1499,0,113,0.9598272138228942
338,203140,Hitman: Absolution,Io-Interactive A/S,Io-Interactive A/S,,40251,3461,0,2 M .. 5 M,822,0,443,0,19.99,1999,0,268,0.9208226573938506
339,307780,Mortal Kombat X,"NetherRealm Studios, QLOC",Warner Bros. Interactive Entertainment,,42568,8011,0,2 M .. 5 M,952,115,369,224,19.99,1999,0,504,0.8416141086221555
340,582660,Black Desert,Pearl Abyss,Pearl Abyss,,53564,17988,0,2 M .. 5 M,12501,1000,313,409,9.99,999,0,19874,0.7486024150268337
341,475150,Titan Quest Anniversary Edition,"Iron Lore Entertainment, THQ Nordic",THQ Nordic,,28788,2786,0,2 M .. 5 M,1673,60,233,87,19.99,1999,0,1230,0.9117628428453791
342,209870,Blacklight: Retribution,"Hardsuit Labs, Inc.","Hardsuit Labs, Inc.",,12456,3969,0,2 M .. 5 M,620,0,88,0,0.0,0,0,1,0.7583561643835617
343,1817070,Marvel’s Spider-Man Remastered,"Insomniac Games, Nixxes Software",PlayStation PC LLC,,72914,2707,0,2 M .. 5 M,1412,134,1301,108,59.99,5999,0,2448,0.9642030652860978
344,391720,Layers of Fear (2016),Bloober Team SA,Bloober Team SA,,22554,2778,0,2 M .. 5 M,210,0,222,0,19.99,1999,0,24,0.8903363334912364
345,204880,Sins of a Solar Empire: Rebellion,"Ironclad Games, Stardock Entertainment",Stardock Entertainment,,14087,1028,0,2 M .. 5 M,738,9,409,9,39.99,3999,0,444,0.9319880913000331
346,113200,The Binding of Isaac,"Edmund McMillen, Florian Himsl",Edmund McMillen,,53665,2667,0,2 M .. 5 M,1675,0,263,0,1.24,499,75,269,0.9526556841582049
347,274190,Broforce,Free Lives,Devolver Digital,,52577,1611,0,2 M .. 5 M,1078,30,400,56,14.99,1499,0,338,0.9702701705174578
348,1289310,Helltaker,vanripper,vanripper,,111577,2417,0,2 M .. 5 M,94,0,68,0,0.0,0,0,84,0.9787971296734916
349,232090,Killing Floor 2,Tripwire Interactive,Tripwire Interactive,,101323,14191,0,2 M .. 5 M,2978,426,593,828,29.99,2999,0,4087,0.8771490901535745
350,1721470,Poppy Playtime,Mob Entertainment,Mob Entertainment,,41963,11362,0,2 M .. 5 M,102,0,57,0,0.0,0,0,285,0.7869292076887013
351,728880,Overcooked! 2,"Ghost Town Games Ltd., Team17",Team17,,47283,4911,0,2 M .. 5 M,1182,132,403,198,24.99,2499,0,1328,0.9059087251408208
352,1057090,Ori and the Will of the Wisps,Moon Studios GmbH,Xbox Game Studios,,112301,3993,0,2 M .. 5 M,921,0,761,0,29.99,2999,0,838,0.9656646086642475
353,617290,Remnant: From the Ashes,Gunfire Games,Gearbox Publishing,,40417,7178,0,2 M .. 5 M,1325,0,781,0,13.99,3999,65,558,0.8491858388486185
354,678950,DRAGON BALL FighterZ,Arc System Works,BANDAI NAMCO Entertainment,,57575,6078,0,2 M .. 5 M,3342,27,1017,39,59.99,5999,0,1334,0.9045135343188853
355,282440,Quake Live,id Software,Bethesda Softworks,,12740,2049,0,2 M .. 5 M,236,0,78,0,9.99,999,0,274,0.8614510785042937
356,213670,South Park: The Stick of Truth,Obsidian Entertainment,Ubisoft,,56423,1375,0,2 M .. 5 M,993,99,741,99,29.99,2999,0,799,0.9762102494896017
357,33230,Assassin's Creed 2,Ubisoft Montreal,Ubisoft,,40023,4648,0,2 M .. 5 M,1263,1,797,1,19.99,1999,0,340,0.8959503928723332
358,372000,Tree of Savior (English Ver.),"IMCGAMES Co.,Ltd.","IMCGAMES Co.,Ltd.",,12865,7096,0,2 M .. 5 M,1688,0,193,0,0.0,0,0,390,0.6445067882370623
359,361420,ASTRONEER,System Era Softworks,System Era Softworks,,101384,8970,0,2 M .. 5 M,2009,88,931,130,29.99,2999,0,1442,0.9187161317215506
360,282070,This War of Mine,11 bit studios,11 bit studios,,86788,6503,0,2 M .. 5 M,655,256,209,503,3.99,1999,80,1209,0.9302933830701783
361,1619450,Heart of a Warrior,Techworld Communication,Techworld Communication,,0,1,0,2 M .. 5 M,0,0,0,0,10.99,1099,0,0,0.0
362,905370,Conqueror's Blade,Booming Tech,MY.GAMES,,21009,6902,0,2 M .. 5 M,1318,0,110,0,0.0,0,0,1518,0.7527139837340117
363,262410,World of Guns: Gun Disassembly,Noble Empire Corp.,Noble Empire Corp.,,15242,2909,0,2 M .. 5 M,247,0,55,0,0.0,0,0,141,0.8397333480249022
364,242720,GunZ 2: The Second Duel,"Masangsoft, Inc.","Masangsoft, Inc.",,7016,3596,0,2 M .. 5 M,132,0,60,0,0.0,0,0,8,0.661138333961553
365,386940,Ultimate Chicken Horse,Clever Endeavour Games,Clever Endeavour Games,,35240,1529,0,2 M .. 5 M,784,67,335,32,6.74,1499,55,1849,0.9584160570045419
366,471710,Rec Room,Rec Room,Rec Room,,50909,4996,0,2 M .. 5 M,419,4,102,4,0.0,0,0,1654,0.9106341114390484
367,438740,Friday the 13th: The Game,IllFonic,Gun Media,,59365,15383,0,2 M .. 5 M,1084,2,215,2,4.99,499,0,286,0.7942018515545567
368,279720,The I of the Dragon,Primal,TopWare Interactive,,613,293,0,2 M .. 5 M,255,0,259,0,6.99,699,0,1,0.6766004415011038
369,387290,Ori and the Blind Forest: Definitive Edition,Moon Studios GmbH,Xbox Game Studios,,56757,2625,0,2 M .. 5 M,558,0,380,0,19.99,1999,0,263,0.955794685258159
370,1158310,Crusader Kings III,Paradox Development Studio,Paradox Interactive,,88050,7672,0,2 M .. 5 M,4298,622,1389,645,49.99,4999,0,13189,0.9198512358705417
371,362890,Black Mesa,Crowbar Collective,Crowbar Collective,,96536,4642,0,2 M .. 5 M,832,53,494,53,19.99,1999,0,472,0.954120460969776
372,24200,DC Universe Online,Dimensional Ink Games,Daybreak Game Company,,15852,3851,0,2 M .. 5 M,2055,0,547,0,0.0,0,0,438,0.8045475308328681
373,838350,太吾绘卷 The Scroll Of Taiwu,ConchShip Games,ConchShip Games,,39622,17434,0,2 M .. 5 M,3374,1,744,1,19.99,1999,0,1039,0.6944405496354459
374,304430,INSIDE,Playdead,Playdead,,49783,1717,0,2 M .. 5 M,500,1,307,1,19.99,1999,0,356,0.9666601941747572
375,65800,Dungeon Defenders,Chromatic Games,Chromatic Games,,15351,1156,0,2 M .. 5 M,3145,296,595,296,14.99,1499,0,298,0.9299691040164778
376,265930,Goat Simulator,Coffee Stain Studios,Coffee Stain Publishing,,58025,6168,0,2 M .. 5 M,255,0,114,0,9.99,999,0,68,0.9039147570607388
377,286940,S.K.I.L.L. - Special Force 2 (Shooter),"Dragonfly GF Co., LTD",Space Budgie,,8123,3347,0,2 M .. 5 M,583,0,59,0,0.0,0,0,0,0.7081952920662599
378,8850,BioShock 2,"2K Marin, 2K China, Digital Extremes, 2K Australia",2K,,11959,1422,0,2 M .. 5 M,416,0,135,0,19.99,1999,0,20,0.893729915551902
379,298110,Far Cry 4,"Ubisoft Montreal, Red Storm, Shanghai, Toronto, Kiev",Ubisoft,,40227,7906,0,2 M .. 5 M,1574,31,1111,31,29.99,2999,0,516,0.8357467849500343
380,286690,Metro 2033 Redux,4A Games,Deep Silver,,67878,8060,0,2 M .. 5 M,528,0,433,0,19.99,1999,0,449,0.8938607811635808
381,1092790,Inscryption,Daniel Mullins Games,Devolver Digital,,93374,2883,0,2 M .. 5 M,908,1,605,1,11.99,1999,40,1149,0.97004893150628
382,379430,Kingdom Come: Deliverance,Warhorse Studios,"Warhorse Studios, Prime Matter",,94177,19536,0,2 M .. 5 M,2650,0,1218,0,7.49,2999,75,3866,0.8281990625522148
383,316010,Magic Duels,Stainless Games Ltd.,Wizards of the Coast LLC,,16967,6975,0,2 M .. 5 M,1040,0,80,0,0.0,0,0,57,0.7086709548074513
384,613100,House Flipper,Empyrean,"Frozen District, PlayWay S.A.",,73561,4760,0,2 M .. 5 M,1207,30,783,30,24.99,2499,0,2896,0.9392244736405306
385,403640,Dishonored 2,Arkane Studios,Bethesda Softworks,,48852,6213,0,2 M .. 5 M,1138,434,729,434,29.99,2999,0,526,0.8871697085262871
386,335300,DARK SOULS II: Scholar of the First Sin,"FromSoftware, Inc","Bandai Namco Entertainment, FromSoftware, Inc",,78949,13954,0,2 M .. 5 M,3069,93,1495,93,39.99,3999,0,2124,0.8498003293758005
387,253980,Enclave,Starbreeze,Topware Interactive,,4915,1294,0,2 M .. 5 M,241,0,256,0,4.99,499,0,2,0.7915928490900306
388,239030,"Papers, Please",Lucas Pope,3909,,61394,1807,0,2 M .. 5 M,354,552,196,552,9.99,999,0,440,0.9714086802424012
389,246620,Plague Inc: Evolved,Ndemic Creations,Ndemic Creations,,46175,2700,0,2 M .. 5 M,489,17,283,17,14.99,1499,0,341,0.9447570332480818
390,1263850,Football Manager 2021,Sports Interactive,SEGA,,22231,1564,0,2 M .. 5 M,18422,0,6765,0,0.0,0,0,3354,0.9342719058625761
391,39120,RIFT,gamigo US Inc.,gamigo US Inc.,,8057,2766,0,2 M .. 5 M,1136,0,139,0,0.0,0,0,122,0.7444331516215467
392,460930,Tom Clancy's Ghost Recon Wildlands,"Ubisoft Paris, Ubisoft Annecy, Ubisoft Bucharest, Ubisoft Montpellier, Ubisoft Milan, Reflections, Ubisoft Belgrade",Ubisoft,,62635,16375,0,2 M .. 5 M,2908,661,1251,1248,49.99,4999,0,1186,0.7927477534489306
393,364360,Total War: WARHAMMER,"CREATIVE ASSEMBLY, Feral Interactive (Linux), Feral Interactive (Mac)","SEGA, Feral Interactive (Linux), Feral Interactive (Mac)",,39713,11151,0,2 M .. 5 M,2751,0,1126,0,59.99,5999,0,429,0.7807683233721296
394,582160,Assassin's Creed Origins,Ubisoft Montreal,Ubisoft,,80757,12579,0,2 M .. 5 M,3222,385,2194,578,8.99,5999,85,1168,0.8652288506042685
395,376210,The Isle,Afterthought LLC,Afterthought LLC,,57278,11789,0,2 M .. 5 M,6618,0,1311,0,19.99,1999,0,4863,0.8293106693500514
396,214490,Alien: Isolation,"Creative Assembly, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,48595,3684,0,2 M .. 5 M,1493,0,242,0,19.99,1999,0,163,0.9295319344287382
397,11020,TrackMania Nations Forever,Nadeo,Ubisoft,,19322,2258,0,2 M .. 5 M,368,0,70,0,0.0,0,0,305,0.8953660797034291
398,287390,Metro: Last Light Redux,4A Games,Deep Silver,,53146,6178,0,2 M .. 5 M,646,0,530,0,19.99,1999,0,420,0.8958600229249545
399,331470,Everlasting Summer,Soviet Games,Soviet Games,,65179,3338,0,2 M .. 5 M,611,0,240,0,0.0,0,0,562,0.9512821635506516
400,550900,Metin2,WEBZEN Inc.,Gameforge 4D GmbH,,10323,4405,0,2 M .. 5 M,1805,0,72,0,0.0,0,0,2,0.7009098316132537
401,286570,F1 2015,"Codemasters, Feral Interactive (Linux)","Codemasters, Feral Interactive (Linux)",,5386,3169,0,2 M .. 5 M,276,53,357,53,0.0,0,0,38,0.6295733489187609
402,38400,Fallout: A Post Nuclear Role Playing Game,Interplay Inc.,Bethesda Softworks,,15737,1060,0,2 M .. 5 M,244,0,43,0,9.99,999,0,128,0.9368934928856344
403,1056640,Phantasy Star Online 2,SEGA,SEGA,,15830,6230,0,2 M .. 5 M,1248,93,148,93,0.0,0,0,2026,0.7175883952855848
404,107100,Bastion,Supergiant Games,Supergiant Games,,34497,1627,0,2 M .. 5 M,386,0,184,0,14.99,1499,0,30,0.9549606909533828
405,207140,SpeedRunners,DoubleDutch Games,tinyBuild,,32957,2135,0,2 M .. 5 M,722,0,260,0,14.99,1499,0,178,0.9391599224894562
406,223710,Cry of Fear,Team Psykskallar,Team Psykskallar,,44479,6569,0,2 M .. 5 M,184,0,42,0,0.0,0,0,812,0.8713171916627488
407,203290,America's Army: Proving Grounds,U.S. Army,U.S. Army,,8384,2268,0,2 M .. 5 M,530,0,40,0,0.0,0,0,114,0.7870822380773563
408,287700,METAL GEAR SOLID V: THE PHANTOM PAIN,KONAMI,KONAMI,,78768,7622,0,2 M .. 5 M,2708,59,1413,74,19.99,1999,0,1319,0.9117721958560019
409,274170,Hotline Miami 2: Wrong Number,Dennaton Games,Devolver Digital,,48148,3204,0,2 M .. 5 M,771,0,412,0,14.99,1499,0,345,0.9376071039102664
410,248570,Toribash,Nabi Studios,"Nicalis, Inc.",,14210,1835,0,2 M .. 5 M,192,0,40,0,0.0,0,0,75,0.885634153942038
411,644560,Mirror,KAGAMI WORKS,Paradise Project,,80419,2554,0,2 M .. 5 M,428,0,228,0,1.99,199,0,111,0.9692189025345594
412,55100,Homefront,"Kaos Studios, Digital Extremes",Deep Silver,,7253,4758,0,2 M .. 5 M,263,0,207,0,3.99,1999,80,14,0.6038631254683207
413,221910,The Stanley Parable,Galactic Cafe,Galactic Cafe,,40341,3300,0,2 M .. 5 M,197,0,112,0,14.99,1499,0,67,0.9243830343026054
414,235460,METAL GEAR RISING: REVENGEANCE,PlatinumGames,KONAMI,,66312,2834,0,2 M .. 5 M,612,0,399,0,29.99,2999,0,329,0.9590142596824112
415,976310,Mortal Kombat 11,"NetherRealm Studios, QLOC, Shiver","Warner Bros. Games, Warner Bros. Interactive Entertainment",,73646,10439,0,2 M .. 5 M,1260,146,566,14,49.99,4999,0,2974,0.8758518166141405
416,24960,Battlefield: Bad Company 2,DICE,Electronic Arts,,31153,5503,0,2 M .. 5 M,2324,0,512,0,0.0,0,0,77,0.8498745089480576
417,1144200,Ready or Not,VOID Interactive,VOID Interactive,,107552,10796,0,2 M .. 5 M,871,90,533,82,31.99,3999,20,2965,0.9087775036333525
418,201790,Orcs Must Die! 2,Robot Entertainment,Robot Entertainment,,17339,1190,0,2 M .. 5 M,814,0,302,0,14.99,1499,0,68,0.9357763505855685
419,233860,Kenshi,Lo-Fi Games,Lo-Fi Games,,70145,3530,0,2 M .. 5 M,3937,58,950,71,13.49,2999,55,5549,0.9520868680013573
420,686810,Hell Let Loose,Team17,Team17,,86924,19241,0,2 M .. 5 M,3340,242,770,205,44.99,4499,0,4455,0.8187632458908303
421,211420,DARK SOULS: Prepare To Die Edition,FromSoftware,Bandai Namco Entertainment,,70574,6647,0,2 M .. 5 M,3004,1893,1101,1893,0.0,0,0,171,0.9139223786275754
422,105450,Age of Empires III (2007),Ensemble Studios,Xbox Game Studios,,28445,2854,0,2 M .. 5 M,763,4,263,4,39.99,3999,0,547,0.9088149781143168
423,209000,Batman: Arkham Origins,"WB Games Montreal, Splash Damage",Warner Bros. Interactive Entertainment,,40042,5240,0,2 M .. 5 M,948,0,615,0,19.99,1999,0,330,0.8842807296497505
424,289650,Assassin's Creed Unity,Ubisoft,Ubisoft,,45090,13408,0,2 M .. 5 M,1332,0,715,0,29.99,2999,0,529,0.770795582754966
425,33900,Arma 2,Bohemia Interactive,Bohemia Interactive,,1776,349,0,2 M .. 5 M,322,0,43,0,2.59,1299,80,0,0.835764705882353
426,42700,Call of Duty: Black Ops,Treyarch,Activision,,31546,3203,0,2 M .. 5 M,1041,1,438,1,19.99,3999,50,436,0.9078246856024634
427,285900,Gang Beasts,"Boneloaf, Coatsink",Boneloaf,,43196,8528,0,2 M .. 5 M,346,39,139,56,7.99,1999,60,887,0.8351248936663831
428,295110,Just Survive,Daybreak Game Company,Daybreak Game Company,,46292,32116,0,2 M .. 5 M,3386,0,871,0,0.0,0,0,3,0.5903989388837874
429,418370,Resident Evil 7 Biohazard,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,72061,3713,0,2 M .. 5 M,876,582,606,879,7.99,1999,60,528,0.9509990234117244
430,1454400,Cookie Clicker,"Orteil, DashNet",Playsaurus,,48837,1452,0,2 M .. 5 M,12952,10,6532,15,4.99,499,0,9764,0.9711268865954782
431,646910,The Crew 2,Ivory Tower,Ubisoft,,55822,12882,0,2 M .. 5 M,1966,79,1164,79,49.99,4999,0,1174,0.8125
432,12220,Grand Theft Auto: Episodes from Liberty City,Rockstar North / Toronto,Rockstar Games,,7593,2692,0,2 M .. 5 M,0,0,0,0,0.0,0,0,0,0.7382596013612056
433,581320,Insurgency: Sandstorm,New World Interactive,Focus Entertainment,,95210,16791,0,2 M .. 5 M,6648,843,814,1103,9.89,2999,67,2703,0.8500816956991455
434,703080,Planet Zoo,Frontier Developments,Frontier Developments,,65124,6687,0,2 M .. 5 M,1504,0,401,0,44.99,4499,0,3702,0.9068805614738689
435,412020,Metro Exodus,4A Games,Deep Silver,,84858,10387,0,2 M .. 5 M,1092,299,859,446,29.99,2999,0,1312,0.8909444065305265
436,648350,Jurassic World Evolution,Frontier Developments,Frontier Developments,,44681,6791,0,2 M .. 5 M,1436,0,530,0,8.99,4499,80,283,0.8680641902393534
437,447040,Watch_Dogs 2,Ubisoft,Ubisoft,,54818,11272,0,2 M .. 5 M,1759,37,640,37,49.99,4999,0,511,0.8294446966258133
438,424370,Wolcen: Lords of Mayhem,WOLCEN Studio,WOLCEN Studio,,37549,29019,0,2 M .. 5 M,1815,0,1066,0,39.99,3999,0,110,0.564069823338541
439,221040,Resident Evil 6,Capcom,Capcom,,35502,9160,0,2 M .. 5 M,1303,40,797,40,7.49,2999,75,425,0.7949039451883032
440,641990,The Escapists 2,"Team17, Mouldy Toof Studios",Team17,,24952,2602,0,2 M .. 5 M,722,21,349,21,19.99,1999,0,304,0.9055672497640996
441,50300,Spec Ops: The Line,YAGER,"2K, Missing Link Games",,47715,3519,0,2 M .. 5 M,397,0,270,0,29.99,2999,0,51,0.9313151422883241
442,1259420,Days Gone,Bend Studio,PlayStation PC LLC,,61982,4805,0,2 M .. 5 M,1514,689,920,689,49.99,4999,0,2864,0.9280548609759385
443,427730,Who's Your Daddy?!,Evil Tortilla Games,Evil Tortilla Games,,21963,5536,0,2 M .. 5 M,160,0,104,0,9.99,999,0,71,0.798683588494127
444,238090,Sniper Elite 3,Rebellion,Rebellion,,20504,4415,0,2 M .. 5 M,791,15,407,15,29.99,2999,0,465,0.8228259560977568
445,325610,Total War: ATTILA,CREATIVE ASSEMBLY,SEGA,,25617,5835,0,2 M .. 5 M,3175,140,584,140,44.99,4499,0,2141,0.8144792064097672
446,346010,Besiege,Spiderling Studios,Spiderling Studios,,43806,2031,0,2 M .. 5 M,556,40,226,40,14.99,1499,0,205,0.9556908174618758
447,1184370,Pathfinder: Wrath of the Righteous - Enhanced Edition,Owlcat Games,"META Publishing, Owlcat Games",,24439,4883,0,2 M .. 5 M,4330,243,1395,243,39.99,3999,0,2357,0.8334697496760112
448,434650,Lost Castle / 失落城堡,Hunter Studio,Neon Doctrine,,19639,2714,0,2 M .. 5 M,899,0,494,0,9.99,999,0,208,0.8785845300407105
449,201810,Wolfenstein: The New Order,MachineGames,Bethesda Softworks,,45512,4432,0,2 M .. 5 M,1009,628,753,628,19.99,1999,0,276,0.9112606118853116
450,47870,Need For Speed: Hot Pursuit,Criterion Games,Electronic Arts,,16298,3474,0,2 M .. 5 M,425,0,252,0,0.0,0,0,56,0.8242969856362533
451,305620,The Long Dark,Hinterland Studio Inc.,Hinterland Studio Inc.,,90113,8907,0,2 M .. 5 M,1971,0,388,0,19.99,1999,0,1701,0.9100484750555443
452,1142710,Total War: WARHAMMER III,"CREATIVE ASSEMBLY, Feral Interactive","SEGA, Feral Interactive",,53150,32384,0,2 M .. 5 M,9045,2143,3960,1748,59.99,5999,0,19289,0.6213903243154769
453,212070,Star Conflict,Star Gem Inc.,Gaijin Distribution KFT,,10652,3726,0,2 M .. 5 M,322,0,130,0,0.0,0,0,154,0.7408540826262345
454,15620,"Warhammer 40,000: Dawn of War II","Relic Entertainment, Feral Interactive (Mac/Linux)","SEGA, Feral Interactive (Mac/Linux)",,9809,1199,0,2 M .. 5 M,1385,0,736,0,4.99,1999,75,158,0.8910792151162791
455,202170,Sleeping Dogs,United Front Games,Square Enix,,15918,923,0,2 M .. 5 M,1513,0,1451,0,0.0,0,0,27,0.945193278308889
456,740130,Tales of Arise,Bandai Namco Studios Inc.,Bandai Namco Entertainment,,27174,3219,0,2 M .. 5 M,2615,101,2465,101,59.99,5999,0,311,0.8940874543480407
457,12110,Grand Theft Auto: Vice City,Rockstar Games,Rockstar Games,,25705,2049,0,2 M .. 5 M,284,0,82,0,0.0,0,0,189,0.9261728039201557
458,200260,Batman: Arkham City - Game of the Year Edition,Rocksteady Studios,Warner Bros. Interactive Entertainment,,52549,2216,0,2 M .. 5 M,706,219,528,323,19.99,1999,0,530,0.9595362001278188
459,310560,DiRT Rally,"Codemasters, Feral Interactive (Linux), Feral Interactive (Mac)","Codemasters, Feral Interactive (Linux), Feral Interactive (Mac), Electronic Arts",,34191,4720,0,2 M .. 5 M,223,2,77,2,0.0,0,0,157,0.8786975405412352
460,35700,Trine Enchanted Edition,Frozenbyte,Frozenbyte,,13644,594,0,2 M .. 5 M,451,0,329,0,14.99,1499,0,70,0.9582806573957017
461,992300,嗜血印 Bloody Spell,艺龙游戏,艺龙游戏,,27450,3379,0,2 M .. 5 M,748,0,305,0,24.99,2499,0,298,0.8903954069220539
462,17390,SPORE,Maxis™,Electronic Arts,,49530,4180,0,2 M .. 5 M,1041,0,259,0,3.99,1999,80,971,0.9221746415937442
463,210770,Sanctum 2,Coffee Stain Studios,Coffee Stain Publishing,,12609,1404,0,2 M .. 5 M,266,0,132,0,14.99,1499,0,9,0.8998073217726397
464,310950,Street Fighter V,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,28275,14034,0,2 M .. 5 M,2018,0,283,0,9.99,1999,50,280,0.6682975253492165
465,335240,Transformice,Atelier 801,Atelier 801,,21774,3121,0,2 M .. 5 M,3699,41,75,41,0.0,0,0,1327,0.8746334605342438
466,206210,Gotham City Impostors Free to Play,"Monolith Productions, Inc.",Warner Bros. Interactive Entertainment,,10118,1783,0,2 M .. 5 M,112,0,62,0,0.0,0,0,6,0.8501806570876397
467,841370,NBA 2K19,Visual Concepts,2K,,8926,13908,0,2 M .. 5 M,11217,141,4580,141,0.0,0,0,218,0.39090829464833143
468,871720,Ultimate Custom Night,Scott Cawthon,Scott Cawthon,,47836,2294,0,2 M .. 5 M,335,11,44,21,0.0,0,0,250,0.9542389786554957
469,1254120,Bless Unleashed,VALOFE,VALOFE,,15665,14405,0,2 M .. 5 M,1399,0,178,0,0.0,0,0,515,0.5209511140671765
470,108710,Alan Wake,Remedy Entertainment,Remedy Entertainment,,36074,3642,0,2 M .. 5 M,1228,0,181,0,14.99,1499,0,158,0.9082989223486756
471,242920,Banished,Shining Rock Software LLC,Shining Rock Software LLC,,36217,3911,0,2 M .. 5 M,1710,329,512,657,6.79,1999,66,813,0.9025368819776715
472,236110,Dungeon Defenders II,Chromatic Games,Chromatic Games,,16119,4653,0,2 M .. 5 M,1139,20,130,20,0.0,0,0,544,0.7759965337954939
473,389570,Mitos.is: The Game,Freakinware Studios,Freakinware Studios,,9459,2261,0,2 M .. 5 M,305,0,87,0,0.0,0,0,48,0.8070819112627986
474,225260,Brutal Legend,Double Fine Productions,Double Fine Productions,,16481,1223,0,2 M .. 5 M,393,0,186,0,14.99,1499,0,32,0.9309195661997288
475,9900,Star Trek Online,Cryptic Studios,Gearbox Publishing,,14386,3865,0,2 M .. 5 M,3001,0,217,0,0.0,0,0,2047,0.7882307818749658
476,431240,Golf With Your Friends,"Blacklight Interactive, Team17",Team17,,52135,6543,0,2 M .. 5 M,553,61,358,60,14.99,1499,0,1022,0.8884931320085893
477,268420,Aura Kingdom,X-Legend,Aeria Games,,6781,1876,0,2 M .. 5 M,82,0,43,0,0.0,0,0,0,0.7832967540718494
478,41070,Serious Sam 3: BFE,Croteam,Devolver Digital,,23051,3035,0,2 M .. 5 M,533,0,215,0,29.99,2999,0,75,0.8836540673158015
479,303390,Dead Bits,Microblast Games,SA Industry,,4987,3457,0,2 M .. 5 M,276,0,332,0,0.99,99,0,2,0.590596873519659
480,1217060,Gunfire Reborn,Duoyi Games,Duoyi Games,,83787,5555,0,2 M .. 5 M,2181,354,1500,232,19.99,1999,0,2919,0.9378231962570795
481,1515950,Capcom Arcade Stadium,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,1923,1697,0,2 M .. 5 M,219,0,199,0,10.0,1000,0,274,0.5312154696132597
482,50620,Darksiders,Vigil Games,THQ Nordic,,10642,1272,0,2 M .. 5 M,471,0,186,0,19.99,1999,0,18,0.8932348497565888
483,204300,Awesomenauts - the 2D moba,Ronimo Games,Ronimo Games,,22485,4068,0,2 M .. 5 M,2627,0,310,0,0.0,0,0,128,0.8467969720935488
484,1520470,封灵档案,(Hong Kong)GKD,(Hong Kong)GKD,,17144,3891,0,2 M .. 5 M,334,115,23,115,0.0,0,0,509,0.8150225814119325
485,3830,Psychonauts,Double Fine Productions,Double Fine Productions,,15256,766,0,2 M .. 5 M,477,42,200,42,9.99,999,0,63,0.9521907377356136
486,967050,Pacify,Shawn Hitchcock,Hitchcock Games,,33280,4865,0,2 M .. 5 M,191,0,108,0,9.99,999,0,85,0.8724603486695504
487,12200,Bully: Scholarship Edition,Rockstar New England,Rockstar Games,,23991,4340,0,2 M .. 5 M,405,0,79,0,14.99,1499,0,169,0.8468109138399633
488,783770,Ironsight,"WipleGames Inc.,","WipleGames Inc.,",,14978,5664,0,2 M .. 5 M,205,0,57,0,0.0,0,0,365,0.7256079837225075
489,388410,Darksiders II Deathinitive Edition,"Gunfire Games, Vigil Games, THQ Nordic",THQ Nordic,,12266,3493,0,2 M .. 5 M,670,0,204,0,29.99,2999,0,163,0.7783488800050765
490,259080,Just Cause 2: Multiplayer Mod,Avalanche Studios,Square Enix,,13806,1257,0,2 M .. 5 M,407,0,204,0,0.0,0,0,15,0.9165504879506075
491,7940,Call of Duty 4: Modern Warfare (2007),Infinity Ward,Activision,,20286,1413,0,2 M .. 5 M,546,175,353,175,9.99,1999,50,328,0.93488179178764
492,1128810,RISK: Global Domination,SMG Studio,SMG Studio,,26581,5992,0,2 M .. 5 M,476,88,81,126,0.0,0,0,2504,0.8160439627912689
493,343710,Kholat,IMGN.PRO,IMGN.PRO,,4290,2084,0,2 M .. 5 M,1313,0,303,0,19.99,1999,0,2,0.673046752431754
494,470220,UNO,Ubisoft Entertainment,Ubisoft Entertainment,,33716,12286,0,2 M .. 5 M,882,65,316,70,9.99,999,0,339,0.732924655449763
495,530700,Argo,Bohemia Interactive,Bohemia Interactive,,5684,5398,0,2 M .. 5 M,188,0,32,0,0.0,0,0,1,0.5129038079768995
496,254700,Resident Evil 4 (2005),Capcom,Capcom,,61989,4793,0,2 M .. 5 M,676,0,230,0,4.99,1999,75,426,0.9282291635470635
497,261570,Ori and the Blind Forest,Moon Studios GmbH,Xbox Game Studios,,48984,2502,0,2 M .. 5 M,698,0,682,0,0.0,0,0,154,0.9514042652371518
498,110800,L.A. Noire,"Team Bondi, Rockstar Leeds",Rockstar Games,,25762,4381,0,2 M .. 5 M,722,162,340,162,19.99,1999,0,172,0.8546594565902531
499,323580,Jotun: Valhalla Edition,Thunder Lotus Games,Thunder Lotus Games,,6368,1834,0,2 M .. 5 M,133,0,103,0,14.99,1499,0,5,0.7763960009753719
500,65930,The Bureau: XCOM Declassified,2K Marin,2K,,7992,3418,0,2 M .. 5 M,281,0,155,0,19.99,1999,0,15,0.7004382120946538
501,1222140,Detroit: Become Human,Quantic Dream,Quantic Dream,,84956,5041,0,2 M .. 5 M,1004,273,762,374,19.99,3999,50,1124,0.9439870217896152
502,848450,Subnautica: Below Zero,Unknown Worlds Entertainment,Unknown Worlds Entertainment,,73582,7139,0,2 M .. 5 M,2332,0,1292,0,14.99,2999,50,1046,0.9115595693809542
503,464920,Surviving Mars,"Haemimont Games, Abstraction",Paradox Interactive,,20771,3758,0,2 M .. 5 M,1171,0,194,0,29.99,2999,0,675,0.8467935912593257
504,1250410,Microsoft Flight Simulator 40th Anniversary Edition,Asobo Studio,Xbox Game Studios,,39429,10929,0,2 M .. 5 M,4158,16,1931,16,38.99,5999,35,5977,0.7829739068271179
505,337000,Deus Ex: Mankind Divided,"Eidos Montreal, Feral Interactive (Linux), Feral Interactive (Mac)","Eidos Interactive Corp., Feral Interactive (Linux), Feral Interactive (Mac)",,29041,9552,0,2 M .. 5 M,1198,375,678,375,4.49,2999,85,316,0.7524939755914285
506,630100,SoulWorker - Anime Action MMO,"Lion Games Co., Ltd.",Gameforge 4D GmbH,,11434,2960,0,2 M .. 5 M,771,0,97,0,0.0,0,0,1,0.7943587605946922
507,900883,The Elder Scrolls IV: Oblivion Game of the Year Edition Deluxe,Bethesda Game Studios®,Bethesda Softworks,,40427,1860,0,2 M .. 5 M,0,0,0,0,14.99,1499,0,0,0.9560148508998038
508,35140,Batman: Arkham Asylum Game of the Year Edition,Rocksteady Studios,Warner Bros. Interactive Entertainment,,51873,1995,0,2 M .. 5 M,627,41,343,41,19.99,1999,0,327,0.9629650256181778
509,19680,Alice: Madness Returns,Spicy Horse Games,Electronic Arts,,12333,1491,0,2 M .. 5 M,562,0,346,0,3.99,1999,80,123,0.8921440972222222
510,1569040,Football Manager 2022,Sports Interactive,SEGA,,19336,1562,0,2 M .. 5 M,24721,807,17406,1336,0.0,0,0,9186,0.9252560053593646
511,204450,Call of Juarez: Gunslinger,Techland,Techland Publishing,,32815,1707,0,2 M .. 5 M,264,0,186,0,14.99,1499,0,97,0.9505532703783095
512,47890,The Sims 3,The Sims Studio,Electronic Arts,,25813,3933,0,2 M .. 5 M,2322,0,761,0,19.99,1999,0,1587,0.8677805419216029
513,22370,Fallout 3: Game of the Year Edition,Bethesda Game Studios,Bethesda Softworks,,33438,8223,0,2 M .. 5 M,867,37,302,73,19.99,1999,0,505,0.8026211564772809
514,1274570,DEVOUR,Straight Back Games,Straight Back Games,,59899,5398,0,2 M .. 5 M,293,240,236,327,4.99,499,0,861,0.9173315772546977
515,482730,Football Manager 2017,Sports Interactive,SEGA,,6555,4489,0,2 M .. 5 M,24887,0,13982,0,0.0,0,0,667,0.5935349511046722
516,629730,Blade and Sorcery,WarpFrog,WarpFrog,,42207,1407,0,2 M .. 5 M,2052,59,331,80,19.99,1999,0,403,0.96773971660476
517,317360,Double Action: Boogaloo,Double Action Factory,Double Action Factory,,10423,802,0,2 M .. 5 M,124,0,87,0,0.0,0,0,10,0.9285523385300668
518,238010,Deus Ex: Human Revolution - Director's Cut,Eidos Montreal,Eidos Interactive Corp.,,23901,2044,0,2 M .. 5 M,900,0,312,0,2.99,1999,85,231,0.9212179610714974
519,436520,Line of Sight,BlackSpot Entertainment,BlackSpot Entertainment,,5410,3702,0,2 M .. 5 M,185,0,64,0,0.0,0,0,18,0.5937225636523266
520,269210,Hero Siege,Panic Art Studios Ltd.,Panic Art Studios Ltd.,,27348,8914,0,2 M .. 5 M,1107,19,548,19,6.99,699,0,473,0.7541779273068225
521,774171,Muse Dash,peropero,hasuhasu,,88254,11164,0,2 M .. 5 M,1431,58,125,33,2.99,299,0,1163,0.8877064515480094
522,47780,Dead Space 2,Visceral Games,Electronic Arts,,20454,1294,0,2 M .. 5 M,484,0,417,0,4.99,1999,75,126,0.9405002758874379
523,1824220,Chivalry 2,Torn Banner Studios,Tripwire Presents,,23959,5303,0,2 M .. 5 M,1988,125,713,55,39.99,3999,0,1674,0.8187752033353838
524,524220,NieR:Automata,"Square Enix, PlatinumGames Inc.",Square Enix,,103400,16847,0,2 M .. 5 M,1263,0,605,0,39.99,3999,0,749,0.8598967125998985
525,244450,Men of War: Assault Squad 2,Digitalmindsoft,Fulqrum Publishing,,35819,3516,0,2 M .. 5 M,3309,730,777,730,29.99,2999,0,1453,0.9106139570357188
526,1057240,Crucible Beta,Relentless Studios,Amazon Games,,4693,6222,0,2 M .. 5 M,186,0,71,0,0.0,0,0,0,0.4299587723316537
527,367500,Dragon's Dogma: Dark Arisen,Capcom,Capcom,,31974,3601,0,2 M .. 5 M,1416,1346,501,2212,4.79,2999,84,683,0.8987772312016866
528,640820,Pathfinder: Kingmaker - Enhanced Plus Edition,Owlcat Games,Prime Matter,,24043,6724,0,2 M .. 5 M,3196,70,835,70,19.99,1999,0,885,0.7814541554262684
529,823130,Totally Accurate Battlegrounds,Landfall,Landfall,,71494,9546,0,2 M .. 5 M,311,67,81,86,0.0,0,0,587,0.8822063178677196
530,204100,Max Payne 3,Rockstar Studios,Rockstar Games,,40877,6759,0,2 M .. 5 M,932,0,589,0,19.99,1999,0,168,0.8581115123016206
531,1466860,Age of Empires IV: Anniversary Edition,"Relic Entertainment, Forgotten Empires, Climax Studios, World's Edge",Xbox Game Studios,,47873,7514,0,2 M .. 5 M,5874,365,1212,392,39.99,3999,0,8892,0.8643363966273674
532,314160,Microsoft Flight Simulator X: Steam Edition,Microsoft Game Studios,Xbox Game Studios,,20563,3291,0,2 M .. 5 M,6588,0,499,0,24.99,2499,0,764,0.8620357172801207
533,527230,For The King,IronOak Games,Curve Games,,31792,4082,0,2 M .. 5 M,1419,179,1018,176,19.99,1999,0,1660,0.8862128561074873
534,1282100,Remnant II,Gunfire Games,Gearbox Publishing,,24768,5158,0,2 M .. 5 M,1854,456,1373,291,49.99,4999,0,5276,0.8276415157388224
535,282140,SOMA,Frictional Games,Frictional Games,,35239,1492,0,2 M .. 5 M,387,0,305,0,7.49,2999,75,78,0.9593803599139691
536,266840,Age of Mythology: Extended Edition,"SkyBox Labs, Ensemble Studios",Xbox Game Studios,,28488,2253,0,2 M .. 5 M,1459,0,173,0,29.99,2999,0,1635,0.926710256660486
537,645630,Car Mechanic Simulator 2018,Red Dot Games,PlayWay S.A.,,42399,4226,0,2 M .. 5 M,1827,1,642,1,19.99,1999,0,422,0.9093619302949062
538,1840,Source Filmmaker,Valve,Valve,,31683,2298,0,2 M .. 5 M,671,82,73,82,0.0,0,0,1170,0.9323739736911804
539,433340,Slime Rancher,Monomi Park,Monomi Park,,108494,2323,0,2 M .. 5 M,888,47,593,47,4.99,1999,75,1212,0.979037512295045
540,394510,HELLDIVERS Dive Harder Edition,Arrowhead Game Studios,PlayStation PC LLC,,22575,2088,0,2 M .. 5 M,804,62,355,62,19.99,1999,0,335,0.9153387665734095
541,104900,ORION: Prelude,DANKIE,DANKIE,,21653,7121,0,2 M .. 5 M,244,0,125,0,0.99,99,0,10,0.7525196357823035
542,493340,Planet Coaster,"Frontier Developments, Aspyr (Mac)","Frontier Developments, Aspyr (Mac)",,55702,5319,0,2 M .. 5 M,1832,441,263,795,11.24,4499,75,1673,0.9128332869012308
543,2310,Quake,"id Software, Nightdive Studios, MachineGames",Bethesda Softworks,,11955,443,0,2 M .. 5 M,200,71,50,120,9.99,999,0,124,0.9642684303919987
544,504230,Celeste,"Maddy Makes Games Inc., Extremely OK Games, Ltd.",Maddy Makes Games Inc.,,77998,1894,0,2 M .. 5 M,725,0,364,0,19.99,1999,0,1004,0.9762929955439844
545,414340,Hellblade: Senua's Sacrifice,Ninja Theory,Ninja Theory,,52293,5178,0,2 M .. 5 M,363,0,390,0,29.99,2999,0,68,0.9099023855509736
546,881100,Noita,Nolla Games,Nolla Games,,53834,2665,0,2 M .. 5 M,1497,64,420,63,19.99,1999,0,1565,0.952831023557939
547,644930,They Are Billions,Numantian Games,Numantian Games,,37194,6517,0,2 M .. 5 M,7083,0,1304,0,29.99,2999,0,2567,0.8509070943240832
548,17470,Dead Space (2008),EA Redwood Shores,Electronic Arts,,23436,2160,0,2 M .. 5 M,435,0,293,0,19.99,1999,0,45,0.9156118143459916
549,319510,Five Nights at Freddy's,Scott Cawthon,Scott Cawthon,,37934,2973,0,2 M .. 5 M,263,0,95,0,4.99,499,0,103,0.9273229520619943
550,10500,Total War: EMPIRE – Definitive Edition,"CREATIVE ASSEMBLY, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,28349,2846,0,2 M .. 5 M,4924,186,1514,186,24.99,2499,0,2853,0.9087674306779933
551,1943950,Escape the Backrooms,Fancy Games,Fancy Games,,35247,3860,0,2 M .. 5 M,608,140,203,165,9.99,999,0,1698,0.9012964430920296
552,307690,Sleeping Dogs: Definitive Edition,"United Front Games, Feral Interactive (Mac)","Square Enix, Feral Interactive (Mac)",,51429,3929,0,2 M .. 5 M,743,0,189,0,19.99,1999,0,425,0.9290256150872502
553,389430,Knight Online,"Noah System, Mgame",NTTGame,,5141,5194,0,2 M .. 5 M,5359,0,46,0,0.0,0,0,1016,0.49743589743589745
554,1399780,Spellbreak,"Proletariat, Inc.","Proletariat, Inc.",,11924,1927,0,2 M .. 5 M,232,0,86,0,0.0,0,0,1,0.8608764710129233
555,1868140,DAVE THE DIVER,MINTROCKET,MINTROCKET,,52516,1602,0,2 M .. 5 M,1472,133,1069,147,19.99,1999,0,4107,0.9703980191433534
556,788100,Neon Abyss,Veewo Games,"Team17, Yooreka Studio (China)",,18416,2703,0,2 M .. 5 M,719,745,672,745,6.79,1999,66,633,0.8720109853686254
557,454650,DRAGON BALL XENOVERSE 2,"QLOC, DIMPS",BANDAI NAMCO Entertainment,,38938,4424,0,2 M .. 5 M,2310,72,1360,72,49.99,4999,0,792,0.8979751856464185
558,342200,MechWarrior Online Solaris 7,Piranha Games Inc.,Piranha Games Inc.,,8589,2237,0,2 M .. 5 M,356,0,119,0,0.0,0,0,460,0.7933678182154074
559,57690,Tropico 4,Haemimont Games,Kalypso Media Digital,,10980,993,0,2 M .. 5 M,1188,0,268,0,14.99,1499,0,111,0.9170633926334252
560,578310,BRAIN / OUT,Desertkun,Desertkun,,12587,2778,0,2 M .. 5 M,511,33,50,33,0.0,0,0,37,0.8191994793361536
561,12100,Grand Theft Auto III,Rockstar Games,Rockstar Games,,11895,1859,0,2 M .. 5 M,268,0,56,0,0.0,0,0,48,0.8648393194706995
562,391460,WARMODE,Novalink,Novalink,,10414,6418,0,1 M .. 2 M,262,0,52,0,0.0,0,0,17,0.6187024714828897
563,67370,The Darkness II,Digital Extremes,2K,,16766,1567,0,1 M .. 2 M,352,0,296,0,29.99,2999,0,25,0.91452571864943
564,234650,Shadowrun Returns,Harebrained Schemes,Paradox Interactive,,11400,1472,0,1 M .. 2 M,686,0,284,0,14.99,1499,0,19,0.8856432566811684
565,738060,Freddy Fazbear's Pizzeria Simulator,Scott Cawthon,Scott Cawthon,,23605,1475,0,1 M .. 2 M,140,0,78,0,0.0,0,0,105,0.9411881977671451
566,480490,Prey,Arkane Studios,Bethesda Softworks,,39896,4109,0,1 M .. 2 M,936,0,802,0,29.99,2999,0,336,0.9066242472446313
567,113020,Monaco: What's Yours Is Mine,Pocketwatch Games,Humble Games,,7680,787,0,1 M .. 2 M,147,0,84,0,14.99,1499,0,13,0.9070509035077359
568,767560,War Robots,Pixonic,Pixonic,,11722,7101,0,1 M .. 2 M,91,0,25,0,0.0,0,0,1610,0.6227487648090102
569,606150,Moonlighter,Digital Sun,11 bit studios,,13669,2858,0,1 M .. 2 M,509,0,347,0,2.99,1999,85,248,0.8270708537544624
570,437900,Party Jousting,vikingfabian.com,vikingfabian.com,,654,60,0,1 M .. 2 M,1,0,1,0,0.0,0,0,0,0.9159663865546218
571,554620,Life is Strange: Before the Storm,"Deck Nine, Feral Interactive (Mac), Feral Interactive (Linux)","Square Enix, Feral Interactive (Mac), Feral Interactive (Linux)",,33751,2445,0,1 M .. 2 M,469,0,380,0,16.99,1699,0,27,0.9324510995690132
572,611500,Quake Champions,id Software,Bethesda Softworks,,27067,9839,0,1 M .. 2 M,288,0,61,0,0.0,0,0,506,0.7334037825827778
573,312530,Duck Game,Landon Podbielski,Adult Swim Games,,34689,1250,0,1 M .. 2 M,959,0,341,0,12.99,1299,0,299,0.9652188430395948
574,1888160,ARMORED CORE VI FIRES OF RUBICON,FromSoftware Inc.,"FromSoftware Inc., Bandai Namco Entertainment Inc.",,38677,5080,0,1 M .. 2 M,1765,1227,1289,978,59.99,5999,0,24118,0.8839042895993784
575,845070,The Awesome Adventures of Captain Spirit,DONTNOD Entertainment,Square Enix,,12148,963,0,1 M .. 2 M,153,0,108,0,0.0,0,0,11,0.9265502250019068
576,678960,CODE VEIN,Bandai Namco Studios,Bandai Namco Entertainment,,43083,7171,0,1 M .. 2 M,1342,914,696,1728,14.39,7999,82,494,0.8573048911529431
577,330020,Children of Morta,Dead Mage,11 bit studios,,15581,1846,0,1 M .. 2 M,405,62,330,113,5.49,2199,75,1515,0.89407241636541
578,1716740,Starfield,Bethesda Game Studios,Bethesda Softworks,,49662,18175,0,1 M .. 2 M,1735,1735,1436,1436,69.99,6999,0,204524,0.7320783643144596
579,41700,S.T.A.L.K.E.R.: Call of Pripyat,GSC Game World,GSC Game World,,24281,1203,0,1 M .. 2 M,652,0,98,0,19.99,1999,0,359,0.9527939099042536
580,952060,Resident Evil 3,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,59324,14573,0,1 M .. 2 M,806,26,474,26,9.99,3999,75,396,0.8027930768502104
581,1627140,Sabre Team,Krisalis Software,Ziggurat,,1,2,0,1 M .. 2 M,0,0,0,0,6.99,699,0,0,0.3333333333333333
582,414700,Outlast 2,Red Barrels,Red Barrels,,41109,3971,0,1 M .. 2 M,244,34,141,34,29.99,2999,0,417,0.9119121561668145
583,460950,Katana ZERO,Askiisoft,Devolver Digital,,58712,1122,0,1 M .. 2 M,419,0,279,0,14.99,1499,0,87,0.9812481197981081
584,893520,Creative Destruction,NetEase Games,NetEase Games,,14774,4084,0,1 M .. 2 M,346,0,80,0,0.0,0,0,0,0.7834340863294093
585,1277400,Monster Hunter Stories 2: Wings of Ruin,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,12016,2541,0,1 M .. 2 M,2792,95,2515,95,19.99,3999,50,212,0.8254448031874699
586,206500,AirMech Strike,Carbon Games,Carbon Games,,8616,1636,0,1 M .. 2 M,362,0,101,0,0.0,0,0,25,0.8404213811939134
587,349700,Romero's Aftermath,Free Reign Entertainment,"OP Productions LLC, Free Reign East LLC",,5458,5776,0,1 M .. 2 M,214,0,57,0,0.0,0,0,0,0.4858465372974898
588,485510,Nioh: Complete Edition,"KOEI TECMO GAMES CO., LTD.","KOEI TECMO GAMES CO., LTD.",,25733,6316,0,1 M .. 2 M,2806,0,847,0,49.99,4999,0,211,0.802926768385909
589,22330,The Elder Scrolls IV: Oblivion Game of the Year Edition,Bethesda Game Studios,Bethesda Softworks,,40427,1860,0,1 M .. 2 M,1834,30,648,24,14.99,1499,0,874,0.9560148508998038
590,319830,AX:EL - Air XenoDawn,Alex Piola,KISS ltd,,930,283,0,1 M .. 2 M,99,0,31,0,0.0,0,0,0,0.7666941467436109
591,1167630,Teardown,Tuxedo Labs,Tuxedo Labs,,73180,2761,0,1 M .. 2 M,856,154,421,223,29.99,2999,0,2319,0.963642827984883
592,212160,Vindictus,devCAT,NEXON Korea Corp. & NEXON America Inc.,,5147,2408,0,1 M .. 2 M,1286,0,113,0,0.0,0,0,196,0.6812706816677697
593,287290,Resident Evil Revelations 2,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,19443,5353,0,1 M .. 2 M,966,0,172,0,5.99,599,0,135,0.7841184061945475
594,349040,NARUTO SHIPPUDEN: Ultimate Ninja STORM 4,CyberConnect2 Co. Ltd.,BANDAI NAMCO Entertainment,,71898,7095,0,1 M .. 2 M,1328,315,592,629,5.99,2999,80,1153,0.9101819148532149
595,516750,My Summer Car,Amistech Games,Amistech Games,,53406,3323,0,1 M .. 2 M,1337,18,732,18,14.99,1499,0,1717,0.9414232579456715
596,1248130,Farming Simulator 22,Giants Software,Giants Software,,48989,4746,0,1 M .. 2 M,12581,601,3921,826,39.99,3999,0,28853,0.911677677491393
597,206440,To the Moon,Freebird Games,Freebird Games,,67200,2510,0,1 M .. 2 M,225,0,229,0,9.99,999,0,42,0.9639936881365657
598,238370,Magicka 2,Pieces Interactive,Paradox Interactive,,9732,2088,0,1 M .. 2 M,270,0,219,0,10.0,1000,0,55,0.8233502538071066
599,393380,Squad,Offworld Industries,Offworld Industries,,123846,20002,0,1 M .. 2 M,5331,590,1239,1046,49.99,4999,0,8084,0.8609504476947889
600,519860,DUSK,David Szymanski,New Blood Interactive,,18796,471,0,1 M .. 2 M,402,0,360,0,19.99,1999,0,60,0.9755540561581979
601,1483870,Draw & Guess,Acureus,Acureus,,25344,4699,0,1 M .. 2 M,384,59,269,59,2.99,299,0,486,0.8435908531105416
602,32370,STAR WARS Knights of the Old Republic,"BioWare, Aspyr (Mac)","LucasArts, Aspyr (Mac), Disney, Lucasfilm",,26113,2568,0,1 M .. 2 M,1174,0,373,0,9.99,999,0,209,0.9104633729646805
603,208140,ENDLESS Space - Definitive Edition,AMPLITUDE Studios,SEGA,,7366,1779,0,1 M .. 2 M,788,0,363,0,9.99,999,0,63,0.8054674685620558
604,809960,Radical Heights,Boss Key Productions,Boss Key Productions,,6108,3823,0,1 M .. 2 M,181,0,20,0,0.0,0,0,0,0.6150438022354244
605,1522820,Orcs Must Die! 3,Robot Entertainment,Robot Entertainment,,9675,1704,0,1 M .. 2 M,1242,0,728,0,29.99,2999,0,310,0.8502504613762194
606,1364780,Street Fighter 6,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,20460,2650,0,1 M .. 2 M,2271,941,1874,773,59.99,5999,0,12299,0.8853310255300736
607,815370,Green Hell,Creepy Jar,Creepy Jar,,52102,7916,0,1 M .. 2 M,1034,0,628,0,24.99,2499,0,2736,0.8681062347962278
608,555160,Pavlov VR,Vankrupt Games,Vankrupt Games,,34428,2681,0,1 M .. 2 M,896,13,185,13,24.99,2499,0,263,0.927753375192002
609,729040,Borderlands Game of the Year Enhanced,"Gearbox Software, Blind Squirrel Games",2K,,15819,2520,0,1 M .. 2 M,751,0,251,0,29.99,2999,0,532,0.8625879273679045
610,9340,Company of Heroes: Opposing Fronts,Relic Entertainment,SEGA,,928,81,0,1 M .. 2 M,1241,0,68,0,9.24,3699,75,50,0.9197224975222993
611,21690,Resident Evil 5,Capcom,Capcom,,32895,4663,0,1 M .. 2 M,1057,18,814,28,4.99,1999,75,439,0.875845359177805
612,537180,Digimon Masters Online,"Move Games Co., Ltd.",MOVE ON USA CO.,,5486,2631,0,1 M .. 2 M,193,0,44,0,0.0,0,0,189,0.6758654675372675
613,1313140,Cult of the Lamb,Massive Monster,Devolver Digital,,54158,3232,0,1 M .. 2 M,924,47,826,94,24.99,2499,0,1223,0.9436835685659523
614,612880,Wolfenstein II: The New Colossus,Machine Games,Bethesda Softworks,,30185,7517,0,1 M .. 2 M,944,0,858,0,39.99,3999,0,353,0.800620656729086
615,750920,Shadow of the Tomb Raider: Definitive Edition,"Eidos-Montréal, Crystal Dynamics, Nixxes, Feral Interactive (Mac), Feral interactive (Linux)","Crystal Dynamics, Feral Interactive (Mac), Feral interactive (Linux)",,56948,10818,0,1 M .. 2 M,980,57,637,96,0.0,0,0,658,0.8403624236342708
616,680420,OUTRIDERS,People Can Fly,Square Enix,,38984,20123,0,1 M .. 2 M,2377,0,1418,0,39.99,3999,0,195,0.6595496303314329
617,214420,Gear Up,Doctor Entertainment AB,Doctor Entertainment AB,,6320,2156,0,1 M .. 2 M,216,0,65,0,0.0,0,0,0,0.7456347333647947
618,298240,War Trigger 3,"Rocketeer Games Studio, LLC","Rocketeer Games Studio, LLC",,4913,3333,0,1 M .. 2 M,116,0,34,0,0.0,0,0,11,0.5958040261945186
619,1408720,Krunker,FRVR,FRVR,,18593,4638,0,1 M .. 2 M,125,0,29,0,0.0,0,0,179,0.80035297662606
620,24740,Burnout Paradise: The Ultimate Box,Criterion Games,Electronic Arts,,11518,1700,0,1 M .. 2 M,597,31,278,31,0.0,0,0,30,0.8713875018913603
621,606280,Darksiders III,Gunfire Games,THQ Nordic,,10282,3231,0,1 M .. 2 M,927,0,910,0,39.99,3999,0,73,0.7608969140827352
622,365450,Hacknet,Team Fractal Alligator,Fellow Traveller,,21617,1487,0,1 M .. 2 M,240,0,273,0,9.99,999,0,53,0.9356388504155124
623,787860,Farming Simulator 19,Giants Software,Giants Software,,65287,3975,0,1 M .. 2 M,11964,7,2352,7,19.99,1999,0,4194,0.9426092229505356
624,268050,The Evil Within,Tango Gameworks,Bethesda Softworks,,22298,3902,0,1 M .. 2 M,1168,0,594,0,9.99,999,0,168,0.8510687022900764
625,570940,DARK SOULS: REMASTERED,QLOC,"FromSoftware, Inc, Bandai Namco Entertainment",,77645,7888,0,1 M .. 2 M,2597,383,1315,266,39.99,3999,0,3805,0.9077782844048496
626,632470,Disco Elysium - The Final Cut,ZA/UM,ZA/UM,,75634,5291,0,1 M .. 2 M,821,563,476,590,39.99,3999,0,1094,0.9346184738955823
627,544810,KARDS - The WWII Card Game,1939 Games,1939 Games,,21961,5751,0,1 M .. 2 M,2056,333,78,663,0.0,0,0,670,0.7924725750577367
628,872790,Football Manager 2019,Sports Interactive,SEGA,,10807,1660,0,1 M .. 2 M,10289,0,7621,0,0.0,0,0,1239,0.8668484799871661
629,629520,Soundpad,Leppsoft,Leppsoft,,57482,2234,0,1 M .. 2 M,12233,123,2524,85,4.99,499,0,14047,0.9625895907294527
630,880940,Pummel Party,Rebuilt Games,Rebuilt Games,,40700,5056,0,1 M .. 2 M,734,179,428,223,14.99,1499,0,1193,0.8895008304921759
631,4700,Total War: MEDIEVAL II – Definitive Edition,"CREATIVE ASSEMBLY, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,27464,1173,0,1 M .. 2 M,1853,0,730,0,6.24,2499,75,3851,0.9590390054824178
632,1058020,"STAR WARS Battlefront (Classic, 2004)",Pandemic Studios,"Lucasfilm, LucasArts, Disney",,3516,128,0,1 M .. 2 M,303,0,256,0,9.99,999,0,34,0.964873765093304
633,858820,Tribes of Midgard,Norsfell,Gearbox Publishing,,14682,4534,0,1 M .. 2 M,1068,478,536,819,19.99,1999,0,385,0.7640507910074937
634,417860,Emily is Away,Kyle Seeley,Kyle Seeley,,27548,3549,0,1 M .. 2 M,53,37,42,37,0.0,0,0,16,0.8858732353603241
635,368260,Marvel's Midnight Suns,Firaxis Games,2K,,11137,2750,0,1 M .. 2 M,3107,0,3117,0,23.99,5999,60,686,0.8019730683372939
636,24980,Mass Effect 2 (2010 Edition),BioWare,Electronic Arts,,14617,906,0,1 M .. 2 M,1876,0,1473,0,0.0,0,0,20,0.9416349932358435
637,228280,Baldur's Gate: Enhanced Edition,Beamdog,Beamdog,,12790,1153,0,1 M .. 2 M,1375,23,495,23,6.99,1999,65,1045,0.9173061751416481
638,706990,BLOCKPOST,Skullcap Studios,Skullcap Studios,,11965,4115,0,1 M .. 2 M,529,0,40,0,0.0,0,0,56,0.744092039800995
639,1343400,RuneScape ,Jagex Ltd,Jagex Ltd,,18456,3464,0,1 M .. 2 M,1785,1,39,1,0.0,0,0,2993,0.841970802919708
640,1029690,Sniper Elite 5,Rebellion,Rebellion,,10793,2662,0,1 M .. 2 M,2030,19,1297,34,49.99,4999,0,3671,0.8021553325901152
641,239820,Game Dev Tycoon,Greenheart Games,Greenheart Games,,34126,1657,0,1 M .. 2 M,864,1,474,1,9.99,999,0,199,0.9536930944862085
642,224540,Ace of Spades: Battle Builder,Jagex Limited,Jagex Limited,,12028,6463,0,1 M .. 2 M,1225,0,342,0,0.0,0,0,0,0.6504786112162674
643,102600,Orcs Must Die!,Robot Entertainment,Robot Entertainment,,7207,273,0,1 M .. 2 M,377,0,119,0,9.99,999,0,17,0.9635026737967914
644,291650,Pillars of Eternity,Obsidian Entertainment,Xbox Game Studios,,19818,2669,0,1 M .. 2 M,2199,0,1484,0,29.99,2999,0,381,0.8813092008716147
645,368500,Assassin's Creed Syndicate,"Ubisoft Quebec, in collaboration with Ubisoft Annecy, Bucharest, Kiev, Montreal, Montpellier, Shanghai, Singapore, Sofia, Toronto studios",Ubisoft,,20369,5008,0,1 M .. 2 M,1367,0,906,0,7.49,2999,75,510,0.8026559482996414
646,280790,Creativerse,Playful Corp.,Playful Corp.,,24208,6806,0,1 M .. 2 M,1138,0,100,0,24.99,2499,0,99,0.7805507190301154
647,1536610,OpenTTD,OpenTTD,OpenTTD,,9810,408,0,1 M .. 2 M,0,0,0,0,0.0,0,0,519,0.9600704638872578
648,65980,Sid Meier's Civilization: Beyond Earth,"Firaxis Games, Aspyr (Mac), Aspyr (Linux)","2K, Aspyr (Mac), Aspyr (Linux)",,12873,8809,0,1 M .. 2 M,1422,0,926,0,39.99,3999,0,378,0.59371829167051
649,6860,Hitman: Blood Money,Io-Interactive A/S,Io-Interactive A/S,,10962,674,0,1 M .. 2 M,541,0,255,0,2.99,999,70,70,0.9420763148848401
650,637090,BATTLETECH,Harebrained Schemes,Paradox Interactive,,23849,4805,0,1 M .. 2 M,7558,0,809,0,39.99,3999,0,1308,0.8323096251832205
651,228380,Wreckfest,Bugbear,THQ Nordic,,30005,4276,0,1 M .. 2 M,1064,0,476,0,29.99,2999,0,550,0.8752661824334179
652,621060,PC Building Simulator,"Claudiu Kiss, The Irregular Corporation",The Irregular Corporation,,45458,2954,0,1 M .. 2 M,1207,0,336,0,19.99,1999,0,360,0.9389820705610179
653,409720,BioShock 2 Remastered,"2K Marin, 2K China, Digital Extremes, 2K Australia, Blind Squirrel, Feral Interactive (Mac)","2K, Feral Interactive (Mac)",,15080,6902,0,1 M .. 2 M,333,0,181,0,19.99,1999,0,143,0.6860158311345647
654,216150,MapleStory,Nexon,Nexon America Inc.,,7567,3738,0,1 M .. 2 M,7830,1636,282,2403,0.0,0,0,6601,0.6693498452012384
655,248820,Risk of Rain,Hopoo Games,Chucklefish,,27248,1856,0,1 M .. 2 M,611,0,342,0,9.99,999,0,65,0.9362286970863112
656,302510,Ryse: Son of Rome,Crytek,Crytek,,30718,4929,0,1 M .. 2 M,379,0,317,0,9.99,999,0,71,0.8617274945998261
657,239160,Thief,"Eidos-Montréal, Feral Interactive (Mac)","Eidos Interactive Corp., Feral Interactive (Mac)",,16289,5682,0,1 M .. 2 M,622,10,240,10,2.99,1999,85,150,0.7413863729461563
658,633230,NARUTO TO BORUTO: SHINOBI STRIKER,Soleil Ltd.,Bandai Namco Entertainment,,45384,7950,0,1 M .. 2 M,1097,0,220,0,9.99,1999,50,431,0.8509393632579593
659,265210,Viscera Cleanup Detail: Santa's Rampage,RuneStorm,RuneStorm,,4950,482,0,1 M .. 2 M,170,0,129,0,2.49,249,0,9,0.9112665684830633
660,447820,Day of Infamy,New World Interactive,New World Interactive,,18118,3810,0,1 M .. 2 M,1490,0,391,0,14.99,1499,0,34,0.8262495439620576
661,1404210,Red Dead Online,Rockstar Games,Rockstar Games,,48137,9046,0,1 M .. 2 M,2502,38,1006,38,19.99,1999,0,2347,0.841806131192837
662,17330,Crysis Warhead,Crytek,Electronic Arts,,2997,511,0,1 M .. 2 M,134,0,93,0,19.99,1999,0,5,0.8543329532497149
663,204340,Serious Sam 2,Croteam,Devolver Digital,,9889,1135,0,1 M .. 2 M,240,0,130,0,9.99,999,0,53,0.8970428156748912
664,1947070,Broken Edge,TREBUCHET,Fast Travel Games,,303,48,0,1 M .. 2 M,0,0,0,0,14.99,1499,0,10,0.8632478632478633
665,1139900,Ghostrunner,"One More Level, 3D Realms, Slipgate Ironworks™, All in! Games",505 Games,,49111,4507,0,1 M .. 2 M,318,37,224,58,8.99,2999,70,797,0.9159424074004998
666,1361210,"Warhammer 40,000: Darktide",Fatshark,Fatshark,,40022,32305,0,1 M .. 2 M,3829,502,1866,737,39.99,3999,0,2599,0.553347988994428
667,383870,Firewatch,Campo Santo,"Panic, Campo Santo",,54646,6801,0,1 M .. 2 M,277,0,217,0,19.99,1999,0,35,0.8893192507364069
668,638070,Murderous Pursuits,Blazing Griffin,Blazing Griffin,,1775,1019,0,1 M .. 2 M,1175,0,305,0,3.39,999,66,5,0.6352899069434502
669,491950,Orwell: Keeping an Eye On You,Osmotic Studios,Osmotic Studios,,12955,1277,0,1 M .. 2 M,256,0,253,0,9.99,999,0,11,0.9102726250702642
670,364470,The Elder Scrolls: Legends,"Sparkypants Studios, LLC",Bethesda Softworks,,7730,2674,0,1 M .. 2 M,2453,0,103,0,0.0,0,0,307,0.7429834678969627
671,392110,ENDLESS Space 2,AMPLITUDE Studios,SEGA,,17261,3415,0,1 M .. 2 M,1616,0,626,0,39.99,3999,0,458,0.8348326562197718
672,438040,Shakes and Fidget,Playa Games GmbH,Playa Games GmbH,,29756,2054,0,1 M .. 2 M,4986,279,230,279,0.0,0,0,2540,0.9354291103426595
673,17080,Tribes: Ascend,Hi-Rez Studios,Hi-Rez Studios,,6882,1661,0,1 M .. 2 M,275,0,54,0,0.0,0,0,1,0.8055718131803816
674,569480,Kingdoms and Castles,"Lion Shield, LLC","Lion Shield, LLC",,23854,1806,0,1 M .. 2 M,782,0,442,0,14.99,1499,0,470,0.929618082618862
675,627690,Idle Champions of the Forgotten Realms,Codename Entertainment Inc.,Codename Entertainment Inc.,,9941,2707,0,1 M .. 2 M,5761,21,107,21,0.0,0,0,6092,0.7859740670461733
676,40100,Supreme Commander 2,Gas Powered Games,Square Enix,,10102,1349,0,1 M .. 2 M,1513,0,114,0,12.99,1299,0,193,0.8821936948738102
677,704270,Generation Zero,Systemic Reaction™,Systemic Reaction™,,23793,10079,0,1 M .. 2 M,1482,0,369,0,4.99,2499,80,1126,0.7024385923476618
678,638970,Yakuza 0,Ryu Ga Gotoku Studio,SEGA,,58128,2801,0,1 M .. 2 M,2046,0,1119,0,19.99,1999,0,584,0.9540284593543304
679,4920,Natural Selection 2,Unknown Worlds Entertainment,Unknown Worlds Entertainment,,10904,1862,0,1 M .. 2 M,1577,0,234,0,4.99,499,0,112,0.8541438195206016
680,327690,Gigantic,Motiga Inc.,Perfect World Entertainment,,5712,1757,0,1 M .. 2 M,342,0,60,0,0.0,0,0,1,0.7647610121836926
681,322500,SUPERHOT,SUPERHOT Team,SUPERHOT Team,,31723,3211,0,1 M .. 2 M,199,0,131,0,24.99,2499,0,79,0.9080838151943665
682,34440,Sid Meier's Civilization IV,Firaxis Games,2K,,1473,145,0,1 M .. 2 M,3866,0,5796,0,19.99,1999,0,11,0.9103831891223733
683,1237950,STAR WARS Battlefront II,DICE,Electronic Arts,,44595,6408,0,1 M .. 2 M,1191,176,760,255,9.99,3999,75,964,0.8743603317451915
684,527430,"Warhammer 40,000: Inquisitor - Martyr",NeocoreGames,NeocoreGames,,13220,4401,0,1 M .. 2 M,1603,0,780,0,49.99,4999,0,222,0.7502411894898133
685,1313860,EA SPORTS FIFA 21,EA Canada,Electronic Arts,,43492,13577,0,1 M .. 2 M,9506,697,5522,697,0.0,0,0,559,0.7620950077975783
686,6000,STAR WARS Republic Commando,LucasArts,"LucasArts, Lucasfilm, Disney",,13645,617,0,1 M .. 2 M,238,0,154,0,9.99,999,0,39,0.9567381853877437
687,225080,Brothers - A Tale of Two Sons,Starbreeze Studios AB,505 Games,,37865,2199,0,1 M .. 2 M,168,0,170,0,3.74,1499,75,12,0.9451128194888179
688,1213210,Command & Conquer Remastered Collection,"Petroglyph, Lemon Sky Studios",Electronic Arts,,26377,2768,0,1 M .. 2 M,751,187,229,187,6.99,1999,65,917,0.9050265911820209
689,1030840,Mafia: Definitive Edition,Hangar 13,2K,,52262,7790,0,1 M .. 2 M,601,0,573,0,13.99,3999,65,698,0.8702790914540731
690,332950,Dark Deception,Glowstick Entertainment,Glowstick Entertainment,,14508,1647,0,1 M .. 2 M,37,0,29,0,0.0,0,0,149,0.898050139275766
691,8980,Borderlands Game of the Year,Gearbox Software,2K,,27969,2895,0,1 M .. 2 M,1722,0,585,0,29.99,2999,0,120,0.906201399688958
692,1284410,GWENT: The Witcher Card Game,CD PROJEKT RED,CD PROJEKT RED,,22103,4915,0,1 M .. 2 M,504,20,84,20,0.0,0,0,1065,0.8180842401362055
693,636480,Ravenfield,SteelRaven7,SteelRaven7,,60189,1931,0,1 M .. 2 M,5389,958,646,958,17.99,1799,0,693,0.968915003219575
694,34030,Total War: NAPOLEON – Definitive Edition,"CREATIVE ASSEMBLY, Feral Interactive (Mac)","SEGA, Feral Interactive (Mac)",,19775,1923,0,1 M .. 2 M,1934,0,1318,0,24.99,2499,0,1401,0.9113743202138446
695,20570,"Warhammer 40,000: Dawn of War II Chaos Rising","Relic Entertainment, Feral Interactive (Mac/Linux)","SEGA, Feral Interactive (Mac/Linux)",,2755,266,0,1 M .. 2 M,904,0,364,0,13.74,5499,75,26,0.9119496855345912
696,207230,ArcheBlade,CodeBrush Games,Codebrush Games,,5641,2060,0,1 M .. 2 M,154,0,39,0,0.0,0,0,1,0.7325022724321517
697,233720,Surgeon Simulator,Bossa Studios,tinyBuild,,13222,2832,0,1 M .. 2 M,244,0,173,0,9.99,999,0,17,0.8235953656409618
698,495420,State of Decay 2: Juggernaut Edition,Undead Labs,Xbox Game Studios,,37932,7959,0,1 M .. 2 M,1482,13,819,26,29.99,2999,0,1262,0.8265673007779303
699,311560,Assassin’s Creed Rogue,"Ubisoft Sofia, Ubisoft Kiev",Ubisoft,,12033,2159,0,1 M .. 2 M,1282,0,704,0,5.99,1999,70,379,0.8478720405862458
700,287450,Rise of Nations: Extended Edition,"SkyBox Labs, Big Huge Games",Xbox Game Studios,,12098,714,0,1 M .. 2 M,1868,0,451,0,19.99,1999,0,635,0.944270995941305
701,1049410,Superliminal,Pillow Castle,Pillow Castle,,22459,1266,0,1 M .. 2 M,260,0,183,0,19.99,1999,0,50,0.9466385669125396
702,939960,Far Cry New Dawn,"Ubisoft Montreal, Ubisoft Kiev, Ubisoft Shanghai",Ubisoft,,20046,6149,0,1 M .. 2 M,1551,0,1393,0,39.99,3999,0,300,0.7652605459057072
703,1284210,Guild Wars 2,ArenaNet®,NCSOFT,,10057,1343,0,1 M .. 2 M,345,103,228,113,0.0,0,0,4089,0.8821929824561403
704,1222700,A Way Out,Hazelight,Electronic Arts,,44695,6183,0,1 M .. 2 M,500,252,355,252,5.99,2999,80,478,0.878473996619364
705,237310,Elsword,KOG,KOG Games,,6891,2373,0,1 M .. 2 M,375,0,162,0,0.0,0,0,281,0.7438471502590673
706,41500,Torchlight,Runic Games,Gearbox Publishing,,5826,551,0,1 M .. 2 M,787,0,312,0,14.99,1499,0,26,0.9135957346714756
707,40990,Mafia,Illusion Softworks,2K,,11098,1646,0,1 M .. 2 M,346,0,60,0,4.94,1499,67,146,0.8708411801632141
708,1377580,Soulworker,"Lion Games Co., Ltd.","Lion Games Co., Ltd.",,7123,2589,0,1 M .. 2 M,2819,0,104,0,0.0,0,0,884,0.7334225700164745
709,683320,GRIS,Nomada Studio,Devolver Digital,,63553,2242,0,1 M .. 2 M,289,24,189,24,14.99,1499,0,61,0.965924462345163
710,308040,Back to Bed,Bedtime Digital Games,Bedtime Digital Games,,2131,497,0,1 M .. 2 M,201,0,198,0,3.11,599,48,1,0.810882800608828
711,102500,Kingdoms of Amalur: Reckoning,"Big Huge Games, 38 Studios","38 Studios, Electronic Arts",,11269,1519,0,1 M .. 2 M,1418,0,1331,0,0.0,0,0,42,0.8812167657178605
712,437920,Tricky Towers,WeirdBeard,WeirdBeard,,12423,1310,0,1 M .. 2 M,357,19,182,19,14.99,1499,0,102,0.9046093351780383
713,1659040,HITMAN 3,IO Interactive A/S,IO Interactive A/S,,13437,2472,0,1 M .. 2 M,1117,1077,690,1077,69.99,6999,0,2500,0.8446162549500282
714,311860,Data Hacker: Initiation,New Reality Games,New Reality Games,,154,86,0,1 M .. 2 M,306,0,323,0,1.99,199,0,2,0.6416666666666667
715,237930,Transistor,Supergiant Games,Supergiant Games,,27861,1683,0,1 M .. 2 M,282,0,201,0,19.99,1999,0,14,0.943034118602762
716,1466640,Road 96 ,Digixart,"Digixart, Ravenscourt",,13531,1253,0,1 M .. 2 M,329,69,452,69,19.96,1996,0,83,0.9152462121212122
717,442080,Riders of Icarus,"WeMade, VALOFE",VALOFE,,6953,3571,0,1 M .. 2 M,439,0,76,0,0.0,0,0,106,0.6606803496769289
718,15100,Assassin's Creed: Director's Cut Edition,Ubisoft Montreal,Ubisoft,,14123,2735,0,1 M .. 2 M,773,0,324,0,19.99,1999,0,105,0.8377624866532211
719,502500,ACE COMBAT 7: SKIES UNKNOWN,Bandai Namco Studios Inc.,Bandai Namco Entertainment,,31898,4606,0,1 M .. 2 M,1549,343,660,640,59.99,5999,0,1036,0.87382204689897
720,232890,Stronghold Crusader 2,FireFly Studios,FireFly Studios,,10671,4343,0,1 M .. 2 M,671,386,232,386,39.99,3999,0,457,0.7107366457972559
721,22320,The Elder Scrolls III: Morrowind Game of the Year Edition,Bethesda Game Studios,Bethesda Softworks,,21611,1053,0,1 M .. 2 M,954,71,126,114,14.99,1499,0,322,0.9535386516060713
722,427270,Orcs Must Die! Unchained,Robot Entertainment,Robot Entertainment,,4182,1930,0,1 M .. 2 M,576,0,119,0,0.0,0,0,2,0.6842277486910995
723,218680,Scribblenauts Unlimited,5th Cell Media,Warner Bros. Interactive Entertainment,,10089,680,0,1 M .. 2 M,325,0,215,0,19.99,1999,0,35,0.9368557897669236
724,304240,Resident Evil,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,19516,1561,0,1 M .. 2 M,660,0,647,0,4.99,1999,75,144,0.925938226502823
725,510840,Evolvation,"Eric Ruts, Jacob Kooiman",HyperReuts,,627,292,0,1 M .. 2 M,1412,0,330,0,1.99,199,0,1,0.6822633297062024
726,47790,Medal of Honor,Electronic Arts,Electronic Arts,,6409,2200,0,1 M .. 2 M,241,0,267,0,19.99,1999,0,42,0.744453478917412
727,285190,"Warhammer 40,000: Dawn of War III","Relic Entertainment, Feral Interactive (Mac), Feral Interactive (Linux)","SEGA, Feral Interactive (Mac), Feral Interactive (Linux)",,9917,11024,0,1 M .. 2 M,1000,0,319,0,39.99,3999,0,110,0.4735685974881811
728,17460,Mass Effect (2007),BioWare,Electronic Arts,,15137,1016,0,1 M .. 2 M,1217,0,401,0,29.99,2999,0,37,0.9371014672197115
729,242860,Verdun,"M2H, Blackmill Games",M2H,,31440,5135,0,1 M .. 2 M,782,0,369,0,3.99,1999,80,167,0.8596035543403965
730,492720,Tropico 6,"Limbic Entertainment, Realmforge Studios",Kalypso Media,,20681,3064,0,1 M .. 2 M,2000,0,705,0,39.99,3999,0,804,0.8709623078542851
731,3910,Sid Meier's Civilization III Complete,Firaxis Games,2K,,5593,659,0,1 M .. 2 M,2985,0,35,0,4.99,499,0,1052,0.894593730006398
732,224760,FEZ,Polytron Corporation,Trapdoor,,13061,1056,0,1 M .. 2 M,205,0,99,0,9.99,999,0,30,0.9251965715095275
733,228200,Company of Heroes,Relic Entertainment,SEGA,,13664,803,0,1 M .. 2 M,4134,0,673,0,4.99,1999,75,1270,0.9444943664892514
734,56437,"Warhammer 40,000: Dawn of War II: Retribution","Relic Entertainment, Feral Interactive (Mac/Linux)","SEGA, Feral Interactive (Mac/Linux)",,10309,1065,0,1 M .. 2 M,0,0,0,0,7.49,2999,75,0,0.9063653947599789
735,332070,School of Dragons,"JumpStart Games, Inc.","JumpStart Games, Inc.",,3315,2164,0,1 M .. 2 M,266,0,115,0,0.0,0,0,0,0.6050374155867859
736,65790,ARMA: Cold War Assault,Bohemia Interactive,Bohemia Interactive,,4577,1218,0,1 M .. 2 M,15,0,11,0,0.99,499,80,12,0.7898188093183779
737,346330,BrainBread 2,Reperio Studios,Reperio Studios,,3635,1325,0,1 M .. 2 M,97,0,47,0,0.0,0,0,7,0.7328629032258065
738,34270,SEGA Mega Drive and Genesis Classics,D3T Limited,SEGA,,8840,1640,0,1 M .. 2 M,166,0,33,0,24.79,2479,0,70,0.8435114503816794
739,476600,Call of Duty: WWII,"Sledgehammer Games, Raven Software",Activision,,25522,12320,0,1 M .. 2 M,505,11,473,11,19.79,5999,67,287,0.6744358120606734
740,6880,Just Cause,Avalanche Studios,Square Enix,,2987,1504,0,1 M .. 2 M,2868,0,22,0,6.99,699,0,8,0.6651079937653084
741,32800,Lord of the Rings: War in the North,Snowblind Studios,Warner Bros. Interactive Entertainment,,7251,1749,0,1 M .. 2 M,733,0,536,0,0.0,0,0,18,0.8056666666666666
742,460790,Bayonetta,PlatinumGames,SEGA,,22782,1877,0,1 M .. 2 M,446,0,275,0,19.99,1999,0,66,0.9238817470294821
743,289130,ENDLESS Legend,AMPLITUDE Studios,SEGA,,14358,2697,0,1 M .. 2 M,1290,0,469,0,29.99,2999,0,95,0.8418645558487247
744,48190,Assassin’s Creed Brotherhood,Ubisoft Montreal,Ubisoft,,16388,2050,0,1 M .. 2 M,1373,0,925,0,19.99,1999,0,198,0.8888165744657772
745,4500,S.T.A.L.K.E.R.: Shadow of Chernobyl,GSC Game World,GSC Game World,,34532,2005,0,1 M .. 2 M,1202,0,192,0,19.99,1999,0,453,0.9451241207543039
746,4570,"Warhammer 40,000: Dawn of War - Game of the Year Edition",Relic Entertainment,SEGA,,8688,429,0,1 M .. 2 M,497,0,132,0,12.99,1299,0,87,0.9529450477130635
747,582500,We Were Here,Total Mayhem Games,Total Mayhem Games,,21511,2132,0,1 M .. 2 M,109,0,91,0,0.0,0,0,189,0.9098253182760225
748,834910,ATLAS,"Grapeshot Games, Instinct Games",Grapeshot Games,,19895,21847,0,1 M .. 2 M,2103,0,602,0,29.99,2999,0,1043,0.47661827416031816
749,1147560,Skul: The Hero Slayer,SOUTHPAW GAMES,NEOWIZ,,41033,3026,0,1 M .. 2 M,2689,13,1051,20,19.99,1999,0,918,0.9313193672121474
750,1942280,Brotato,Blobfish,Blobfish,,46482,1562,0,1 M .. 2 M,1515,102,750,86,4.99,499,0,5516,0.9674881358754475
751,265590,The Red Solstice,Ironward,Ironward,,1736,670,0,1 M .. 2 M,251,0,303,0,3.49,999,65,2,0.7215295095594347
752,436150,Governor of Poker 3,"Azerion, YoudaGames","Azerion, Youda Games Holding B.V.",,8832,3867,0,1 M .. 2 M,995,1427,195,2854,0.0,0,0,5516,0.695487833687692
753,251060,Wargame: Red Dragon,Eugen Systems,Eugen Systems,,15597,1876,0,1 M .. 2 M,15356,695,502,1390,29.99,2999,0,732,0.8926343501402163
754,263500,Dragons and Titans,Wyrmbyte,Versus Evil,,2687,741,0,1 M .. 2 M,691,0,250,0,0.0,0,0,0,0.7838389731621938
755,535930,Two Point Hospital,Two Point Studios,SEGA,,28002,2543,0,1 M .. 2 M,1581,0,372,0,29.99,2999,0,519,0.9167457849075135
756,215080,WAKFU,Ankama Studio,Ankama Games,,6980,2356,0,1 M .. 2 M,1107,0,125,0,0.0,0,0,227,0.7476435304198801
757,924970,Back 4 Blood,Turtle Rock Studios,Warner Bros. Games,,31858,16670,0,1 M .. 2 M,2382,36,795,54,59.99,5999,0,994,0.6564869765908341
758,10680,Aliens vs. Predator,Rebellion,SEGA,,15914,1588,0,1 M .. 2 M,469,0,232,0,14.99,1499,0,64,0.9092675122843104
759,453480,Shadowverse CCG,"Cygames, Inc.","Cygames, Inc., Cygames Korea Inc.",,10461,3553,0,1 M .. 2 M,2343,0,290,0,0.0,0,0,1831,0.7464678178963893
760,459820,Crush Crush,Sad Panda Studios,Sad Panda Studios,,21592,2395,0,1 M .. 2 M,1954,0,374,0,0.0,0,0,1131,0.9001542502188685
761,270150,RUNNING WITH RIFLES,Osumia Games,Osumia Games,,13010,1761,0,1 M .. 2 M,715,0,281,0,14.99,1499,0,214,0.8807799065736917
762,209670,Cortex Command,Data Realms,"Data Realms, LLC",,4216,1670,0,1 M .. 2 M,863,0,242,0,19.99,1999,0,8,0.7162759089364594
763,418240,Shadow Tactics: Blades of the Shogun,Mimimi Games,Daedalic Entertainment,,33149,1321,0,1 M .. 2 M,497,0,187,0,39.99,3999,0,175,0.9616768204235567
764,235600,Tom Clancy’s Splinter Cell Blacklist,Ubisoft Toronto,Ubisoft,,14629,3299,0,1 M .. 2 M,1467,0,916,0,29.99,2999,0,95,0.8159861668897813
765,585690,Minimalism,PixelMouse,PixelMouse,,1276,465,0,1 M .. 2 M,244,0,363,0,0.99,99,0,3,0.7329121194715681
766,373420,Divinity: Original Sin - Enhanced Edition,Larian Studios,Larian Studios,,22129,2448,0,1 M .. 2 M,2036,92,952,92,39.99,3999,0,1420,0.9003946779509298
767,1509960,PICO PARK,TECOPARK,TECOPARK,,19556,1933,0,1 M .. 2 M,176,60,149,85,4.99,499,0,294,0.9100470007911025
768,240320,Panzar,Panzar Studio,OVALIS INVESTMENTS LIMITED,,3331,1737,0,1 M .. 2 M,606,0,127,0,0.0,0,0,13,0.6572612470402526
769,235540,Warhammer: End Times - Vermintide,Fatshark,Fatshark,,16336,4070,0,1 M .. 2 M,629,0,277,0,29.99,2999,0,46,0.8005488581789669
770,19900,Far Cry 2,Ubisoft Montreal,Ubisoft,,11038,3229,0,1 M .. 2 M,648,0,325,0,9.99,999,0,81,0.7736735123011145
771,350640,Sherlock Holmes: The Devil's Daughter,Frogwares,Frogwares,,10198,2627,0,1 M .. 2 M,265,0,157,0,29.99,2999,0,40,0.7951656920077973
772,206480,Dungeons & Dragons Online,"Standing Stone Games, LLC","Standing Stone Games, LLC",,4474,1839,0,1 M .. 2 M,459,1,103,1,0.0,0,0,251,0.7086963408838903
773,32430,STAR WARS - The Force Unleashed Ultimate Sith Edition,LucasArts,"LucasArts, Lucasfilm, Disney",,6866,2428,0,1 M .. 2 M,264,0,143,0,19.99,1999,0,56,0.7387561867871745
774,96100,Defy Gravity Extended,Paul Fisch,Fish Factory Games,,7405,1201,0,1 M .. 2 M,180,0,142,0,1.99,199,0,4,0.8604462003253543
775,6020,STAR WARS Jedi Knight - Jedi Academy,Raven Software,"LucasArts, Lucasfilm, Disney",,11866,484,0,1 M .. 2 M,531,0,293,0,9.99,999,0,95,0.9608097165991902
776,47810,Dragon Age: Origins - Ultimate Edition,BioWare,Electronic Arts,,19012,2217,0,1 M .. 2 M,1408,150,461,150,4.49,2999,85,526,0.8955673842385417
777,39140,FINAL FANTASY VII,Square Enix,Square Enix,,22248,1690,0,1 M .. 2 M,1522,0,507,0,5.99,1199,50,243,0.929400952460523
778,292910,Deponia: The Complete Journey,Daedalic Entertainment,Daedalic Entertainment,,5313,810,0,1 M .. 2 M,480,0,189,0,29.99,2999,0,47,0.8677119059284665
779,323850,Move or Die,Those Awesome Guys,Those Awesome Guys,,19978,2228,0,1 M .. 2 M,232,0,132,0,14.99,1499,0,60,0.8996667567324147
780,274940,Depth,Digital Confectioners,Digital Confectioners,,28523,3932,0,1 M .. 2 M,556,0,225,0,19.99,1999,0,27,0.8788476351871822
781,635260,CarX Drift Racing Online,"CarX Technologies, LLC","CarX Technologies, LLC",,64327,3022,0,1 M .. 2 M,2202,531,595,1051,14.99,1499,0,2748,0.9551292521047083
782,942970,Unheard - Voices of Crime,NEXT Studios,"NEXT Studios, 505 Games",,26979,981,0,1 M .. 2 M,535,39,298,39,2.79,699,60,111,0.9649141630901288
783,704850,Thief Simulator,Noble Muffins,PlayWay S.A.,,21416,3039,0,1 M .. 2 M,394,72,112,127,19.99,1999,0,251,0.8757309343692496
784,2280,DOOM (1993),id Software,id Software,,15202,497,0,1 M .. 2 M,84,0,38,0,4.99,499,0,67,0.9683419326071724
785,261110,Killer is Dead - Nightmare Edition,KADOKAWA GAMES / GRASSHOPPER MANUFACTURE,Deep Silver,,6048,1967,0,1 M .. 2 M,218,0,118,0,19.99,1999,0,8,0.754585152838428
786,378540,The Surge,Deck13,Focus Entertainment,,6951,2279,0,1 M .. 2 M,1161,0,243,0,2.99,1499,80,127,0.7530877573131094
787,1343370,Old School RuneScape,Jagex Ltd,Jagex Ltd,,12717,1343,0,1 M .. 2 M,1880,95,207,95,0.0,0,0,969,0.9044807965860597
788,657200,Hand Simulator,HFM Games,HFM Games,,30136,5702,0,1 M .. 2 M,178,0,94,0,1.99,199,0,63,0.8408951392376807
789,1755910,Capcom Arcade 2nd Stadium,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,354,167,0,1 M .. 2 M,333,0,363,0,59.52,5952,0,14,0.6794625719769674
790,1380400,Saving Grace,Thomas JC Ironmonger,Ironmonger Games,,26,2,0,1 M .. 2 M,0,0,0,0,1.99,199,0,0,0.9285714285714286
791,324800,Shadow Warrior 2,Flying Wild Hog,Devolver Digital,,21456,3130,0,1 M .. 2 M,454,0,202,0,29.99,2999,0,113,0.87269177580737
792,298630,The Escapists,Mouldy Toof Studios,Team17,,14131,1529,0,1 M .. 2 M,834,1,340,1,17.99,1799,0,45,0.9023627075351214
793,4760,Rome: Total War - Collection,CREATIVE ASSEMBLY,SEGA,,14331,815,0,1 M .. 2 M,1284,0,452,0,0.0,0,0,905,0.946190413310445
794,1238000,Mass Effect: Andromeda Deluxe Edition,BioWare,Electronic Arts,,9807,3086,0,1 M .. 2 M,1686,0,1781,0,7.99,3999,80,419,0.7606453114092918
795,583950,Artifact,Valve,Valve,,11559,13232,0,1 M .. 2 M,1232,0,921,0,0.0,0,0,51,0.4662579161792586
796,1353950,Ring of Fire: Prologue,"de Fault, Chard",Far Few Giants,,13,2,0,1 M .. 2 M,0,0,0,0,0.0,0,0,0,0.8666666666666667
797,24010,Train Simulator Classic,Dovetail Games,"Dovetail Games - Trains, Dovetail Games",,18115,7679,0,1 M .. 2 M,2825,0,889,0,24.99,2499,0,1193,0.7022951073893153
798,2100,Dark Messiah of Might & Magic,Arkane Studios,Ubisoft,,8472,797,0,1 M .. 2 M,715,14,332,14,9.99,999,0,28,0.9140144567914554
799,1258080,Shop Titans,"Kabam Games, Inc.","Kabam Games, Inc.",,11118,3094,0,1 M .. 2 M,843,0,37,0,0.0,0,0,4590,0.7822966507177034
800,723780,Modern Combat Versus,Gameloft,Gameloft,,4470,2393,0,1 M .. 2 M,142,0,16,0,0.0,0,0,17,0.6513186653067172
801,474960,Quantum Break,Remedy Entertainment,Xbox Game Studios,,21080,3581,0,1 M .. 2 M,501,0,478,0,39.99,3999,0,49,0.8547909654920725
802,752590,A Plague Tale: Innocence,Asobo Studio,Focus Entertainment,,50916,3535,0,1 M .. 2 M,545,0,627,0,7.99,3999,80,347,0.9350792455602285
803,302670,Call to Arms,Digitalmindsoft,Digitalmindsoft,,16638,4270,0,1 M .. 2 M,1305,0,115,0,14.99,1499,0,400,0.7957719533193036
804,55110,Red Faction: Armageddon,Volition,Deep Silver,,3346,1256,0,1 M .. 2 M,330,0,183,0,19.99,1999,0,6,0.7270751847023034
805,774861,Project Winter,Other Ocean Interactive,Other Ocean Group,,15348,3142,0,1 M .. 2 M,676,0,230,0,9.99,999,0,89,0.8300703082747432
806,108800,Crysis 2 - Maximum Edition,Crytek Studios,Electronic Arts,,11235,1976,0,1 M .. 2 M,395,0,197,0,29.99,2999,0,46,0.8504276739081069
807,511470,Glass Masquerade,Onyx Lute,Onyx Lute,,5843,180,0,1 M .. 2 M,385,0,286,0,4.99,499,0,8,0.9701145608500747
808,493520,GTFO,10 Chambers,10 Chambers,,42336,7374,0,1 M .. 2 M,689,40,386,67,26.79,3999,33,693,0.8516596258298129
809,1238860,Battlefield 4,DICE,Electronic Arts,,47914,7210,0,1 M .. 2 M,1071,37,517,37,39.99,3999,0,1050,0.8692039764893694
810,237110,Mortal Kombat Komplete Edition,"NetherRealm Studios, High Voltage Software",Warner Bros. Interactive Entertainment,,16289,1575,0,1 M .. 2 M,869,0,394,0,0.0,0,0,85,0.911833855799373
811,6850,Hitman 2: Silent Assassin,Io-Interactive A/S,Io-Interactive A/S,,2780,535,0,1 M .. 2 M,415,7,111,7,8.99,899,0,12,0.8386123680241327
812,6910,Deus Ex: Game of the Year Edition,Ion Storm,Eidos Interactive Corp.,,12244,665,0,1 M .. 2 M,526,0,42,0,1.04,699,85,66,0.94848555271516
813,666220,CS2D,Unreal Software,Unreal Software,,8051,893,0,1 M .. 2 M,184,0,28,0,0.0,0,0,27,0.9001565295169947
814,40950,Stronghold HD,FireFly Studios,FireFly Studios,,8335,392,0,1 M .. 2 M,695,0,125,0,5.99,599,0,338,0.9550819296436347
815,242700,Injustice: Gods Among Us Ultimate Edition,"NetherRealm Studios, High Voltage Software",Warner Bros. Interactive Entertainment,,15656,2558,0,1 M .. 2 M,563,0,145,0,19.99,1999,0,38,0.8595585813110794
816,39500,Gothic 3,Piranha Bytes,THQ Nordic,,7875,1730,0,1 M .. 2 M,945,0,42,0,9.99,999,0,379,0.8198854763144195
817,977950,A Dance of Fire and Ice,7th Beat Games,"7th Beat Games, indienova",,53419,3435,0,1 M .. 2 M,441,19,217,19,5.99,599,0,1426,0.9395820874520702
818,231060,Ragnarok Online 2,"Gravity, Inc.",Gravity Interactive,,1818,1289,0,1 M .. 2 M,1927,0,241,0,0.0,0,0,1,0.5851303508207274
819,311340,METAL GEAR SOLID V: GROUND ZEROES,KONAMI,KONAMI,,12799,2516,0,1 M .. 2 M,245,0,152,0,19.99,1999,0,48,0.8357166176950702
820,297000,Heroes of Might & Magic III - HD Edition,Dotemu,Ubisoft Entertainment,,14898,4120,0,1 M .. 2 M,1127,83,457,83,14.99,1499,0,1823,0.7833631296666316
821,13520,Far Cry,Crytek Studios,Ubisoft,,6615,1407,0,1 M .. 2 M,323,0,232,0,9.99,999,0,56,0.824607329842932
822,26800,Braid,Number None,Number None,,8575,561,0,1 M .. 2 M,381,0,107,0,4.99,499,0,10,0.9385945709281961
823,32470,STAR WARS Empire at War - Gold Pack,Petroglyph,"LucasArts, Lucasfilm, Disney",,32112,809,0,1 M .. 2 M,5476,6084,197,6084,19.99,1999,0,1660,0.9754260198657392
824,245620,Tropico 5,Haemimont Games,Kalypso Media Digital,,10714,2926,0,1 M .. 2 M,916,0,527,0,19.99,1999,0,135,0.785483870967742
825,7760,X-COM: UFO Defense,"MicroProse Software, Inc",2K,,3266,182,0,1 M .. 2 M,930,0,51,0,4.99,499,0,33,0.947215777262181
826,736220,Post Scriptum,Periscope Games,Offworld Industries,,15132,4778,0,1 M .. 2 M,2694,1,586,1,29.99,2999,0,134,0.7600200904068307
827,675010,MudRunner,Saber Interactive,Focus Entertainment,,26673,2807,0,1 M .. 2 M,2077,1,451,1,3.99,1999,80,818,0.9047829036635007
828,1096530,Solasta: Crown of the Magister,Tactical Adventures,Tactical Adventures,,15575,2218,0,1 M .. 2 M,1590,883,1217,883,29.99,2999,0,530,0.875344236497499
829,1089090,ONE PIECE: PIRATE WARRIORS 4,Koei Tecmo,BANDAI NAMCO Entertainment,,13648,1178,0,1 M .. 2 M,1145,302,908,445,8.99,5999,85,2242,0.9205449885336571
830,1262580,Need for Speed Payback,Ghost Games,Electronic Arts,,17113,2803,0,1 M .. 2 M,572,71,117,71,4.49,2999,85,1135,0.8592588873267725
831,674020,World War 3,The Farm 51,"Wishlist Games, The 4 Winds Entertainment",,28396,24201,0,1 M .. 2 M,692,1,201,1,0.0,0,0,339,0.5398787003061011
832,40970,Stronghold Crusader HD,FireFly Studios,FireFly Studios,,15803,392,0,1 M .. 2 M,1323,298,262,298,9.99,999,0,1362,0.9757949984563137
833,334230,Town of Salem,BlankMediaGames,BlankMediaGames,,32174,4128,0,1 M .. 2 M,2092,0,652,0,3.34,499,33,159,0.8862872569004463
834,462780,Darksiders Warmastered Edition,"KAIKO, Vigil Games",THQ Nordic,,11822,1724,0,1 M .. 2 M,436,0,157,0,19.99,1999,0,99,0.8727299571829322
835,239350,Spelunky,Mossmouth,Mossmouth,,14367,1228,0,1 M .. 2 M,390,51,99,51,14.99,1499,0,82,0.9212568130811157
836,22350,BRINK,Splash Damage,Bethesda Softworks,,4683,2860,0,1 M .. 2 M,276,0,67,0,0.0,0,0,9,0.6208405143841973
837,301640,Zombie Army Trilogy,Rebellion,Rebellion,,13932,2016,0,1 M .. 2 M,426,0,259,0,44.99,4499,0,146,0.873589164785553
838,448470,Bacteria,Sometimes You,Sometimes You,,222,163,0,1 M .. 2 M,433,0,394,0,0.99,99,0,4,0.5766233766233766
839,226700,Infestation: Survivor Stories 2020,Fredaikis AB,OP Productions LLC,,10648,14838,0,1 M .. 2 M,3757,0,310,0,0.0,0,0,25,0.41779800674880324
840,445980,Wizard of Legend,Contingent99,"Contingent99, Humble Games",,16769,1655,0,1 M .. 2 M,651,46,258,46,15.99,1599,0,127,0.9101715154146766
841,17300,Crysis,Crytek,Electronic Arts,,10245,2624,0,1 M .. 2 M,409,0,198,0,29.99,2999,0,7,0.7960991530033413
842,250400,How to Survive,Eko Software,505 Games,,13930,2925,0,1 M .. 2 M,258,0,142,0,3.74,1499,75,40,0.8264609908039158
843,226840,Age of Wonders III,Triumph Studios,Paradox Interactive,,9658,2351,0,1 M .. 2 M,664,0,90,0,29.99,2999,0,286,0.8042301607127987
844,341800,Keep Talking and Nobody Explodes,Steel Crate Games,Steel Crate Games,,12268,275,0,1 M .. 2 M,243,61,170,61,14.99,1499,0,100,0.9780754205532967
845,601430,The Evil Within 2,Tango Gameworks,Bethesda Softworks,,23500,1926,0,1 M .. 2 M,973,0,706,0,39.99,3999,0,133,0.9242507669314874
846,208580,STAR WARS Knights of the Old Republic II - The Sith Lords,"Obsidian Entertainment, Aspyr (Mac, Linux, & Windows Update)","LucasArts, Lucasfilm, Aspyr (Mac, Linux)",,20510,1410,0,1 M .. 2 M,1752,0,724,0,9.99,999,0,298,0.9356751824817519
847,257350,Baldur's Gate II: Enhanced Edition,Beamdog,Beamdog,,7760,716,0,1 M .. 2 M,1399,0,194,0,19.99,1999,0,693,0.9155261915998112
848,293180,Overcast - Walden and the Werewolf,Microblast Games,SA Industry,,1727,1111,0,1 M .. 2 M,207,0,211,0,0.99,99,0,1,0.6085271317829457
849,1282730,Loop Hero,Four Quarters,Devolver Digital,,29547,2110,0,1 M .. 2 M,1009,199,724,288,14.99,1499,0,316,0.9333480746754272
850,70000,Dino D-Day,800 North and Digital Ranch,800 North and Digital Ranch,,12579,2423,0,1 M .. 2 M,172,0,80,0,9.99,999,0,5,0.8384882015731235
851,418070,Turbo Pug,"Space Cat Studios, SnowFlame, Back To Basics Gaming",Back To Basics Gaming,,3071,312,0,1 M .. 2 M,234,0,210,0,1.99,199,0,4,0.9077741649423589
852,209160,Call of Duty: Ghosts,Infinity Ward,Activision,,18261,10905,0,1 M .. 2 M,374,30,280,30,19.79,5999,67,69,0.6261057395597613
853,257510,The Talos Principle,Croteam,"Devolver Digital, Croteam",,26051,1182,0,1 M .. 2 M,698,0,473,0,29.99,2999,0,119,0.9565967759703301
854,253900,Knights and Merchants,Topware Interactive,Topware Interactive,,3630,679,0,1 M .. 2 M,225,1,250,1,6.99,699,0,48,0.8424228359248085
855,212740,TERA - Action MMORPG,"Bluehole, Inc.",Gameforge 4D GmbH,,6002,1693,0,1 M .. 2 M,469,0,260,0,0.0,0,0,0,0.7799870045484081
856,1030830,Mafia II: Definitive Edition,"Hangar 13, D3T",2K,,14093,5862,0,1 M .. 2 M,776,0,347,0,9.89,2999,67,422,0.7062390378351291
857,383150,Dead Island Definitive Edition,Techland,Deep Silver,,17251,3801,0,1 M .. 2 M,517,0,254,0,3.99,1999,80,412,0.8194470834125024
858,475550,Beholder,Warm Lamp Games,Alawar Premium,,22192,2030,0,1 M .. 2 M,285,0,182,0,9.99,999,0,81,0.9161918916687309
859,2400,The Ship: Murder Party,Outerlight Ltd.,Blazing Griffin,,5073,841,0,1 M .. 2 M,293,0,265,0,3.39,999,66,4,0.8577950625634089
860,701160,Kingdom Two Crowns,Stumpy,Raw Fury,,6244,819,0,1 M .. 2 M,897,148,417,148,19.99,1999,0,743,0.8840436075322101
861,383080,Sakura Clicker,Winged Cloud,Winged Cloud,,12373,2409,0,1 M .. 2 M,2062,0,84,0,0.0,0,0,59,0.8370315248274929
862,460920,Steep,"Ubisoft Annecy, Ubisoft Montpellier, Ubisoft Kiev",Ubisoft,,20720,4515,0,1 M .. 2 M,868,0,313,0,29.99,2999,0,55,0.8210818307905686
863,955050,Bright Memory,FYQD-Studio,"FYQD-Studio, PLAYISM",,29224,2770,0,1 M .. 2 M,80,0,60,0,7.99,799,0,5,0.9134212664874664
864,979690,The Ascent,Neon Giant,Curve Games,,14417,4878,0,1 M .. 2 M,702,0,384,0,29.99,2999,0,116,0.7471883907748121
865,448510,Overcooked,Ghost Town Games Ltd.,Team17 Digital Ltd,,12311,1267,0,1 M .. 2 M,275,0,131,0,16.99,1699,0,59,0.9066872882604212
866,622650,Bendy and the Ink Machine,Joey Drew Studios,Joey Drew Studios,,20326,2724,0,1 M .. 2 M,114,0,36,0,19.99,1999,0,35,0.881822125813449
867,870780,Control Ultimate Edition,Remedy Entertainment,505 Games,,34091,4749,0,1 M .. 2 M,781,496,412,938,9.99,3999,75,523,0.8777291452111226
868,544730,Catan Universe,Client/Frontend: Endava  / Backend: SuperNimbus,USM,,6449,5901,0,1 M .. 2 M,461,0,49,0,0.0,0,0,820,0.5221862348178138
869,6900,Hitman: Codename 47,IO Interactive A/S,IO Interactive A/S,,2373,881,0,1 M .. 2 M,204,9,32,9,7.99,799,0,9,0.7292562999385371
870,780310,The Riftbreaker,EXOR Studios,"EXOR Studios, Surefire.Games",,13396,1275,0,1 M .. 2 M,1973,271,1336,271,29.99,2999,0,440,0.9130938586326767
871,690790,DiRT Rally 2.0,Codemasters,"Codemasters, Electronic Arts",,30402,4496,0,1 M .. 2 M,917,94,171,128,3.99,1999,80,1343,0.8711674021433893
872,232050,Eador. Masters of the Broken World,Snowbird Games,Snowbird Games,,1799,833,0,1 M .. 2 M,288,0,273,0,19.99,1999,0,27,0.6835106382978723
873,41000,Serious Sam HD: The First Encounter,Croteam,Devolver Digital,,6698,450,0,1 M .. 2 M,244,0,201,0,14.99,1499,0,17,0.9370453273642977
874,230230,Divinity: Original Sin (Classic),Larian Studios,Larian Studios,,10700,965,0,1 M .. 2 M,805,0,194,0,39.99,3999,0,31,0.9172738962708958
875,488790,South Park: The Fractured But Whole,Ubisoft San Francisco,Ubisoft,,19148,3784,0,1 M .. 2 M,1740,11,1516,11,49.99,4999,0,837,0.8349904064189778
876,1296830,暖雪 Warm Snow,BadMudStudio,bilibili,,25358,1955,0,1 M .. 2 M,1765,0,1460,0,17.99,1799,0,489,0.9284223629773368
877,239200,Amnesia: A Machine for Pigs,The Chinese Room,Frictional Games,,7115,3124,0,1 M .. 2 M,148,0,39,0,4.99,1999,75,15,0.6948920793046196
878,299460,Woodle Tree Adventures,Fabio Ferrara,Chubby Pixel,,3707,1787,0,1 M .. 2 M,171,0,164,0,3.99,399,0,1,0.6747360757189661
879,410320,EARTH DEFENSE FORCE 4.1 The Shadow of New Despair,SANDLOT,D3PUBLISHER,,8470,439,0,1 M .. 2 M,648,755,633,755,19.99,1999,0,112,0.9507239869794589
880,392160,X4: Foundations,Egosoft,Egosoft,,13575,4000,0,1 M .. 2 M,5189,609,1021,846,49.99,4999,0,2232,0.7724039829302988
881,577800,NBA 2K18,Visual Concepts,2K,,5482,13395,0,1 M .. 2 M,10183,107,7862,107,0.0,0,0,81,0.29040631456269533
882,278080,DYNASTY WARRIORS 8: Xtreme Legends Complete Edition,"KOEI TECMO GAMES CO., LTD.","KOEI TECMO GAMES CO., LTD.",,10065,1875,0,1 M .. 2 M,2052,0,178,0,16.99,4999,66,388,0.842964824120603
883,450390,The Lab,Valve,Valve,,5540,283,0,1 M .. 2 M,85,0,40,0,0.0,0,0,21,0.9513996221878757
884,637650,FINAL FANTASY XV WINDOWS EDITION,Square Enix,Square Enix,,38636,8053,0,1 M .. 2 M,1540,3,764,3,17.49,3499,50,357,0.8275182591188502
885,246900,Viscera Cleanup Detail,RuneStorm,RuneStorm,,17592,1273,0,1 M .. 2 M,519,0,282,0,12.99,1299,0,154,0.932520540683806
886,457330,High Octane Drift,Cruderocks,Cruderocks,,3281,2654,0,1 M .. 2 M,45,0,12,0,0.0,0,0,11,0.5528222409435551
887,1286680,Tiny Tina's Wonderlands,Gearbox Software,2K,,9678,2984,0,1 M .. 2 M,1102,147,763,100,59.99,5999,0,1215,0.7643342283999368
888,1089980,The Henry Stickmin Collection,PuffballsUnited,Innersloth,,39255,531,0,1 M .. 2 M,714,0,415,0,14.99,1499,0,124,0.9866535967425728
889,252150,Grimm,Spicyhorse Games,Spicyhorse Games,,30621,911,0,1 M .. 2 M,2615,0,272,0,0.0,0,0,119,0.971108714956235
890,374040,Portal Knights,Keen Games GmbH,505 Games,,17212,3489,0,1 M .. 2 M,847,0,570,0,6.99,1999,65,213,0.8314574175160621
891,242640,Styx: Master of Shadows,Cyanide Studio,"Cyanide Studio, Nacon",,7814,1597,0,1 M .. 2 M,476,0,264,0,19.99,1999,0,35,0.8303049622781851
892,1887990,Deep Night Runner,DODRECK,kazakovstudios,,14,2,0,1 M .. 2 M,0,0,0,0,2.49,2499,90,1,0.875
893,21100,F.E.A.R. 3,Day 1 Studios,Warner Bros. Interactive Entertainment,,8078,3177,0,1 M .. 2 M,346,0,203,0,19.99,1999,0,32,0.7177254553531763
894,12810,Overlord II,Triumph Studios,"Codemasters, Electronic Arts",,3734,477,0,1 M .. 2 M,411,0,217,0,9.99,999,0,33,0.8867252434101164
895,921060,Modern Combat 5,Gameloft,Gameloft,,3100,2617,0,1 M .. 2 M,133,0,25,0,0.0,0,0,54,0.5422424348434494
896,21120,F.E.A.R.,"Monolith Productions, Inc., Timegate","Warner Bros. Games, Warner Bros. Interactive Entertainment",,0,0,0,1 M .. 2 M,254,0,203,0,54.99,5499,0,4,0.0
897,339280,Strife,S2 Games,S2 Games,,3631,1150,0,1 M .. 2 M,203,0,60,0,0.0,0,0,0,0.7594645471658649
898,21110,F.E.A.R.,"Monolith Productions, Inc., Timegate","Warner Bros. Games, Warner Bros. Interactive Entertainment",,0,0,0,1 M .. 2 M,171,0,69,0,54.99,5499,0,16,0.0
899,360430,Mafia III: Definitive Edition,"Hangar 13, Aspyr (Mac)","2K, Aspyr (Mac)",,27005,20372,0,1 M .. 2 M,1635,13,947,13,9.89,2999,67,685,0.5700023218017182
900,261030,The Walking Dead: Season Two,Telltale Games,Skybound Games,,27194,1051,0,1 M .. 2 M,601,0,571,0,14.99,1499,0,106,0.9627898743140378
901,71340,Sonic Generations Collection,Devil's Details,SEGA,,20384,1478,0,1 M .. 2 M,418,50,83,50,19.99,1999,0,78,0.932394108498765
902,1335200,Action Taimanin,LiLith,Infini-Brain inc.,,13664,2701,0,1 M .. 2 M,143,0,92,0,0.0,0,0,822,0.8349526428353192
903,356670,Spooky's Jump Scare Mansion,Lag Studios,Lag Studios,,12909,993,0,1 M .. 2 M,88,0,41,0,0.0,0,0,11,0.9285714285714286
904,34870,Sniper: Ghost Warrior 2,City Interactive,CI Games,,12747,4240,0,1 M .. 2 M,295,0,166,0,9.99,999,0,55,0.7503973626891152
905,3900,Sid Meier's Civilization IV,Firaxis Games,2K,,2720,204,0,1 M .. 2 M,615,0,81,0,19.99,1999,0,501,0.9302325581395349
906,304030,ArcheAge,XLGAMES,Kakao Games Europe B.V.,,3769,3455,0,1 M .. 2 M,13681,0,433,0,0.0,0,0,112,0.521733111849391
907,1676130,Deadlink,Gruby Entertainment,SuperGG.com,,2096,207,0,1 M .. 2 M,207,0,360,0,24.99,2499,0,66,0.9101172383847156
908,12900,AudioSurf,Dylan Fitterer,Pixel After Pixel,,10217,444,0,1 M .. 2 M,263,0,50,0,9.99,999,0,8,0.958352874964825
909,31280,Poker Night at the Inventory,Telltale Games,Soldak Entertainment,,8093,958,0,1 M .. 2 M,553,0,321,0,0.0,0,0,10,0.8941553419511656
910,602960,Barotrauma,"FakeFish, Undertow Games",Daedalic Entertainment,,46645,3650,0,1 M .. 2 M,1698,0,674,0,34.99,3499,0,1903,0.9274281737747291
911,17480,Command & Conquer: Red Alert 3,EA Los Angeles,Electronic Arts,,10793,1830,0,1 M .. 2 M,1639,0,550,0,19.99,1999,0,522,0.8550265388576408
912,293540,Guns and Robots,Masthead Studios Ltd,"Masthead Studios Ltd, Thegamewallstudios, Gamigo AG",,1112,583,0,1 M .. 2 M,57,0,18,0,0.0,0,0,0,0.656047197640118
913,921630,音灵 INVAXION,Nanjing AQUATRAX,bilibili,,3352,2874,0,1 M .. 2 M,285,0,116,0,0.0,0,0,0,0.5383874076453582
914,39000,Moonbase Alpha,"Virtual Heroes, Army Game Studio",NASA,,11455,1225,0,1 M .. 2 M,56,0,41,0,0.0,0,0,2,0.9033911671924291
915,599140,Graveyard Keeper,Lazy Bear Games,tinyBuild,,30009,4772,0,1 M .. 2 M,2037,9,1232,9,19.99,1999,0,1344,0.8627986544377677
916,1178830,Bright Memory: Infinite,FYQD-Studio,"FYQD-Studio, PLAYISM",,32486,2662,0,1 M .. 2 M,162,0,130,0,19.99,1999,0,56,0.9242631159667691
917,200170,Worms Revolution,Team17 Digital Ltd,Team17 Digital Ltd,,7106,1062,0,1 M .. 2 M,516,0,176,0,14.99,1499,0,30,0.8699804113614104
918,1789480,Marauders,Small Impact Games,Team17,,13278,4427,0,1 M .. 2 M,881,0,323,0,29.99,2999,0,795,0.7499576390850042
919,38420,Fallout Tactics: Brotherhood of Steel,14° East,Bethesda Softworks,,1699,452,0,1 M .. 2 M,123,0,59,0,9.99,999,0,17,0.7898651789865179
920,247120,Portal 2 Sixense Perceptual Pack,,Sixense,,292,235,0,1 M .. 2 M,1783,0,14,0,0.0,0,0,0,0.5540796963946869
921,292730,Call of Duty: Infinite Warfare,Infinity Ward,Activision,,14557,11105,0,1 M .. 2 M,1006,0,848,0,19.79,5999,67,157,0.5672589821525992
922,668630,Tricolour Lovestory,HL-Galgame,SakuraGame,,22662,3412,0,1 M .. 2 M,2944,0,210,0,1.99,199,0,32,0.8691416736979366
923,736590,Operation: Harsh Doorstop,Drakeling Labs,Benjamin B,,5179,2234,0,1 M .. 2 M,105,0,30,0,0.0,0,0,302,0.6986375286658573
924,568220,Lobotomy Corporation | Monster Management Simulation,ProjectMoon,ProjectMoon,,26593,2014,0,1 M .. 2 M,817,0,252,0,24.99,2499,0,877,0.9295976509245989
925,323470,DRAGON BALL XENOVERSE,DIMPS,BANDAI NAMCO Entertainment,,16228,1928,0,1 M .. 2 M,4330,0,738,0,39.99,3999,0,58,0.8938092090768892
926,8230,Sam & Max 104: Abe Lincoln Must Die!,Telltale Games,Telltale Games,,399,67,0,1 M .. 2 M,94,0,44,0,0.0,0,0,1,0.8562231759656652
927,444640,Bloons TD Battles,Ninja Kiwi,Ninja Kiwi,,25344,2587,0,1 M .. 2 M,680,0,86,0,0.0,0,0,467,0.9073788979986395
928,312520,Rain World,Videocult,Akupara Games,,19082,1391,0,1 M .. 2 M,573,0,263,0,12.49,2499,50,947,0.932056855370488
929,382490,Relic Hunters Zero: Remix,Rogue Snail,Akupara Games,,6335,445,0,1 M .. 2 M,121,0,56,0,0.0,0,0,9,0.9343657817109144
930,202750,Alan Wake's American Nightmare,Remedy Entertainment,Remedy Entertainment,,5149,2090,0,1 M .. 2 M,169,10,93,10,8.99,899,0,11,0.7112860892388452
931,843380,Super Animal Royale,Pixile,Modus Games,,35096,2287,0,1 M .. 2 M,534,49,107,49,0.0,0,0,762,0.9388224594066822
932,24780,SimCity 4 Deluxe Edition,"EA - Maxis, Aspyr (Mac)","Electronic Arts, Aspyr (Mac)",,6483,1487,0,1 M .. 2 M,574,235,76,235,19.99,1999,0,384,0.8134253450439147
933,509980,BIGFOOT,CyberLight Game Studio,CyberLight Game Studio,,13907,3033,0,1 M .. 2 M,231,0,192,0,19.99,1999,0,104,0.8209563164108619
934,673950,Farm Together,Milkstone Studios,Milkstone Studios,,18930,1153,0,1 M .. 2 M,2107,0,1701,0,19.99,1999,0,881,0.9425882587262859
935,1987080,Inside the Backrooms,MrFatcat,"MrFatcat, Dropsiick",,31495,5701,0,1 M .. 2 M,369,0,187,0,6.99,699,0,557,0.8467308312721799
936,437220,The Culling,Xaviant,Xaviant Games,,10145,7574,0,1 M .. 2 M,645,0,238,0,0.0,0,0,1,0.5725492409278176
937,1113000,Persona 4 Golden,ATLUS,SEGA,,62255,1859,0,1 M .. 2 M,3235,77,3563,77,19.99,1999,0,786,0.9710047727485417
938,230290,Universe Sandbox,Giant Army,Giant Army,,20570,809,0,1 M .. 2 M,865,0,150,0,29.99,2999,0,254,0.9621591281163758
939,447020,Farming Simulator 17,GIANTS Software,GIANTS Software,,21443,1507,0,1 M .. 2 M,9762,1,4957,1,14.99,1499,0,799,0.9343355119825708
940,378860,Project CARS 2,Slightly Mad Studios,BANDAI NAMCO Entertainment,,14486,3434,0,1 M .. 2 M,934,0,411,0,0.0,0,0,286,0.8083705357142857
941,996470,eFootball  PES 2020,Konami Digital Entertainment,Konami Digital Entertainment,,18625,7641,0,1 M .. 2 M,2216,0,533,0,0.0,0,0,340,0.709091601309678
942,250820,SteamVR,Valve,Digital Leisure Inc.,,42522,4842,0,1 M .. 2 M,0,0,0,0,0.0,0,0,0,0.8977704585761338
943,243470,Watch_Dogs,Ubisoft,Ubisoft,,27335,9081,0,1 M .. 2 M,2064,0,1035,0,4.49,2999,85,178,0.7506315905096661
944,1549970,Aliens: Fireteam Elite,Cold Iron Studios,"Cold Iron Studios, Focus Entertainment",,15717,3987,0,1 M .. 2 M,665,32,628,32,14.99,2999,50,369,0.7976552984165651
945,1207590,Builders of Egypt: Prologue,Strategy Labs,"Strategy Labs, PlayWay S.A., CreativeForge Games",,2900,1047,0,1 M .. 2 M,0,0,0,0,0.0,0,0,2,0.7347352419559159
946,262280,Dungeons 2,Realmforge Studios,Kalypso Media Digital,,4030,917,0,1 M .. 2 M,444,0,204,0,19.99,1999,0,14,0.8146351324034768
947,220440,DmC: Devil May Cry,Ninja Theory,Capcom,,24472,1738,0,1 M .. 2 M,542,138,450,138,7.49,2999,75,84,0.9336894315146891
948,244930,SNOW - The Ultimate Edition,"Poppermost Productions, WastedStudios, Crytek",Crytek,,7848,4187,0,1 M .. 2 M,210,0,35,0,14.99,1499,0,1,0.6520980473618613
949,1151640,Horizon Zero Dawn Complete Edition,Guerrilla,PlayStation PC LLC,,88029,12427,0,1 M .. 2 M,1371,281,890,360,49.99,4999,0,2743,0.876294098908975
950,603850,Age of History II,Łukasz Jakowski,Łukasz Jakowski Games,,31234,3994,0,1 M .. 2 M,2561,1,3711,1,4.99,499,0,1507,0.8866242761439764
951,1150690,OMORI,"OMOCAT, LLC","OMOCAT, LLC",,58750,1364,0,1 M .. 2 M,1015,0,1286,0,19.99,1999,0,482,0.9773097780882989
952,368370,Her Story,Sam Barlow,Sam Barlow,,7703,892,0,1 M .. 2 M,117,0,172,0,9.99,999,0,7,0.896218731820826
953,233270,Far Cry 3 - Blood Dragon,Ubisoft Montreal,Ubisoft,,13657,1804,0,1 M .. 2 M,502,0,353,0,14.99,1499,0,16,0.8833193195782938
954,851850,DRAGON BALL Z: KAKAROT,CyberConnect2 Co. Ltd.,Bandai Namco Entertainment Inc.,,40572,2957,0,1 M .. 2 M,1857,103,1910,103,59.99,5999,0,685,0.9320682763215328
955,9450,"Warhammer 40,000: Dawn of War - Soulstorm",Relic Entertainment,SEGA,,14108,658,0,1 M .. 2 M,1597,22,386,22,12.99,1299,0,821,0.9554381687660842
956,673130,AMID EVIL,Indefatigable,New Blood Interactive,,5768,316,0,1 M .. 2 M,778,644,1131,644,19.99,1999,0,32,0.948060486522025
957,250320,The Wolf Among Us,Telltale,Telltale,,30590,696,0,1 M .. 2 M,628,0,498,0,14.99,1499,0,62,0.9777536278207505
958,249130,LEGO Marvel Super Heroes,Traveller's Tales,Warner Bros. Interactive Entertainment,,19603,1056,0,1 M .. 2 M,1244,0,332,0,19.99,1999,0,218,0.9488842635171112
959,429470,Space Pilgrim Episode I: Alpha Centauri,"Pilgrim Adventures, GrabTheGames Studios","GrabTheGames, TheGamesFortress",,1047,143,0,1 M .. 2 M,236,0,242,0,0.0,0,0,1,0.8798319327731092
960,313120,Stranded Deep,Beam Team Games,Beam Team Publishing,,31121,10334,0,1 M .. 2 M,657,0,444,0,19.99,1999,0,408,0.7507176456398504
961,329050,Devil May Cry 4 Special Edition,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd. ",,12633,1390,0,1 M .. 2 M,644,0,566,0,7.49,2499,70,98,0.9008771304285816
962,337320,Paint the Town Red,South East Games,South East Games,,22605,1016,0,1 M .. 2 M,1314,0,496,0,19.99,1999,0,245,0.9569874264425723
963,753640,Outer Wilds,Mobius Digital,Annapurna Interactive,,51150,2400,0,1 M .. 2 M,609,1,195,1,24.99,2499,0,613,0.9551820728291317
964,367450,Poly Bridge,Dry Cactus,Dry Cactus,,14776,1372,0,1 M .. 2 M,316,8,142,8,9.99,999,0,83,0.9150359177607134
965,450540,"Hot Dogs, Horseshoes & Hand Grenades",RUST LTD.,RUST LTD.,,18138,553,0,1 M .. 2 M,2294,155,563,226,19.99,1999,0,227,0.9704135680273929
966,1304930,The Outlast Trials,Red Barrels,Red Barrels,,28861,2102,0,1 M .. 2 M,752,690,539,690,29.99,2999,0,999,0.9321125213965055
967,249050,Dungeon of the ENDLESS,AMPLITUDE Studios,SEGA,,11046,1765,0,1 M .. 2 M,402,0,209,0,11.99,1199,0,154,0.8622277730075716
968,911400,Assassin's Creed III Remastered,Ubisoft Entertainment,Ubisoft Entertainment,,5026,3613,0,1 M .. 2 M,893,0,117,0,39.99,3999,0,327,0.5817802986456766
969,536930,MOBIUS FINAL FANTASY,Square Enix,Square Enix,,3176,1182,0,1 M .. 2 M,2507,0,56,0,0.0,0,0,0,0.7287746672785681
970,681660,Bless Online,NEOWIZ BLESS STUDIO,NEOWIZ,,3737,6253,0,1 M .. 2 M,801,0,449,0,0.0,0,0,0,0.37407407407407406
971,813630,Supraland,Supra Games,Supra Games,,10385,509,0,1 M .. 2 M,1166,0,980,0,19.99,1999,0,53,0.9532770332293006
972,265550,Dead Rising 3 Apocalypse Edition,Capcom Game Studio Vancouver,Capcom,,12541,4064,0,1 M .. 2 M,814,0,502,0,8.99,2999,70,109,0.7552544414333032
973,333420,Cossacks 3,GSC Game World,GSC Game World,,9890,2280,0,1 M .. 2 M,4702,30,380,30,19.99,1999,0,831,0.8126540673788003
974,1301210,Knockout City,Velan Studios,Velan Studios,,7065,1227,0,1 M .. 2 M,524,0,238,0,0.0,0,0,3,0.8520260492040521
975,1418100,Swords of Legends Online,"Wangyuan Shengtang Entertainment Technology CO., 上海烛龙信息科技有限公司",Gameforge 4D GmbH,,3905,1940,0,1 M .. 2 M,5722,0,2852,0,0.0,0,0,1,0.6680923866552609
976,1129580,Medieval Dynasty,Render Cube,Toplitz Productions,,29106,2970,0,1 M .. 2 M,3010,0,877,0,34.99,3499,0,2352,0.9074074074074074
977,9420,Supreme Commander: Forged Alliance,Gas Powered Games,Square Enix,,11571,374,0,1 M .. 2 M,1283,0,105,0,12.99,1299,0,875,0.9686898283800753
978,4580,"Warhammer 40,000: Dawn of War - Dark Crusade",Relic Entertainment,SEGA,,7279,253,0,1 M .. 2 M,1185,0,574,0,12.99,1299,0,276,0.9664099840679766
979,205230,Hell Yeah! Wrath of the Dead Rabbit,Arkedo,SEGA,,3062,515,0,1 M .. 2 M,101,0,69,0,14.99,1499,0,2,0.8560246016214705
980,258970,Gauntlet Slayer Edition,Arrowhead Game Studios,WB Games,,7305,1704,0,1 M .. 2 M,315,0,257,0,19.99,1999,0,34,0.8108558108558108
981,747660,Five Nights at Freddy's: Security Breach,Steel Wool Studios,ScottGames,,47422,7655,0,1 M .. 2 M,794,0,616,0,39.99,3999,0,414,0.8610127639486537
982,217200,Worms Armageddon,Team17 Digital Ltd,Team17 Digital Ltd,,8309,508,0,1 M .. 2 M,668,0,168,0,14.99,1499,0,169,0.9423840308494953
983,590380,Into the Breach,Subset Games,Subset Games,,16682,933,0,1 M .. 2 M,1022,0,322,0,14.99,1499,0,241,0.947033778030088
984,1173690,Resident Evil 3: Raccoon City Demo,"CAPCOM Co., Ltd.","CAPCOM Co., Ltd.",,9038,1060,0,1 M .. 2 M,0,0,0,0,0.0,0,0,9,0.8950287185581304
985,6920,Deus Ex: Invisible War,Ion Storm,Eidos Interactive Corp.,,1157,865,0,1 M .. 2 M,182,0,33,0,1.04,699,85,5,0.5722057368941642
986,1919590,NBA 2K23,Visual Concepts,2K,,27777,16445,0,1 M .. 2 M,6153,285,3923,352,59.99,5999,0,11990,0.6281262719913165
987,1088150,Scribble It!,Detach Entertainment,Detach Entertainment,,5989,978,0,1 M .. 2 M,258,0,101,0,0.0,0,0,55,0.8596239414382087
988,311240,Zero Escape: Zero Time Dilemma,"Spike Chunsoft Co., Ltd.","Spike Chunsoft Co., Ltd.",,3037,544,0,1 M .. 2 M,485,0,92,0,19.99,1999,0,22,0.8480871265009774
989,823500,BONEWORKS,Stress Level Zero,Stress Level Zero,,31323,2646,0,1 M .. 2 M,1564,1,405,1,29.99,2999,0,67,0.9221054490859313
990,20510,S.T.A.L.K.E.R.: Clear Sky,GSC Game World,GSC World Publishing,,15185,2559,0,1 M .. 2 M,655,0,332,0,9.99,999,0,254,0.8557822362488728
991,505460,Foxhole,Siege Camp,Siege Camp,,25955,5613,0,1 M .. 2 M,1156,12,466,12,29.99,2999,0,1582,0.8221933603649265
992,22000,World of Goo,2D BOY,2D BOY,,5088,312,0,1 M .. 2 M,105,0,24,0,14.99,1499,0,5,0.9422222222222222
993,1637320,Dome Keeper,Bippinbits,Raw Fury,,6872,702,0,1 M .. 2 M,803,0,397,0,17.99,1799,0,261,0.9073144969632955
994,794600,LET IT DIE,"GRASSHOPPER MANUFACTURE INC., SUPERTRICK GAMES, Inc.","GungHo Online Entertainment America, Inc.",,3857,1371,0,1 M .. 2 M,3669,0,70,0,0.0,0,0,64,0.7377582249426167
995,1147550,Not For Broadcast,NotGames,tinyBuild,,9120,527,0,1 M .. 2 M,314,0,255,0,24.99,2499,0,24,0.9453716181196227
996,1259970,eFootball PES 2021 SEASON UPDATE,Konami Digital Entertainment,Konami Digital Entertainment,,28475,8709,0,1 M .. 2 M,6580,2,2019,2,0.0,0,0,2226,0.7657863597246127
997,214510,LEGO The Lord of the Rings,Traveller's Tales,Warner Bros. Interactive Entertainment,,10707,1164,0,1 M .. 2 M,388,11,112,11,19.99,1999,0,140,0.9019459186252211
998,625960,Stoneshard,Ink Stains Games,HypeTrain Digital,,18389,5921,0,1 M .. 2 M,1105,0,424,0,24.99,2499,0,219,0.7564376799670918