-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgames.json
More file actions
1739 lines (1739 loc) · 54.4 KB
/
games.json
File metadata and controls
1739 lines (1739 loc) · 54.4 KB
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
[
{
"id": 191499,
"cover": 213695,
"first_release_date": 1653004800,
"name": "Dolmen: Day One Edition",
"similar_games": [
25311,
80916,
81249,
86477,
96217,
103303,
105049,
105269,
106987,
115280
]
},
{
"id": 152336,
"cover": 161533,
"first_release_date": 1642636800,
"name": "Tom Clancy\u0027s Rainbow Six Extraction: Limited Edition",
"similar_games": [
185245,
32902,
34024,
38030,
76263,
102868,
103301,
105049,
106805,
119177
],
"summary": "The Limited Edition includes a copy of the Rainbow Six Extraction game as well as digital content, the Obscura Pack, which includes the universal Cephal Black and Cerulean weapon skins along with the Redacted and Anagram charms."
},
{
"id": 221074,
"cover": 261401,
"first_release_date": 1665705600,
"name": "Stroke The Spider",
"summary": "There are many out there that are scared of spiders, and those that would never touch one.\n\nWell now you can stroke one without the fear of it jumping on you. Just stick out your hand and stroke it, let your fears float away."
},
{
"id": 228027,
"cover": 278220,
"first_release_date": 1648080000,
"name": "Fuga: Melodies of Steel - Way of the Sword Costume Pack",
"similar_games": [
17613,
25311,
35994,
36258,
65827,
79134,
87485,
103232,
109339,
112754
],
"summary": "This costume pack features the 12 members of the Taranis crew in samurai or ninja attire. You can modify what the children are wearing under \"Change Costumes\" in the Options menu.\n\nContents:\nWay of the Sword Costumes for Malt, Mei, Hanna, Kyle, Boron, Socks, Chick, Hack, Sheena, Jin, Wappa, and Britz (can be used during intermission and expedition)"
},
{
"id": 185245,
"cover": 199926,
"name": "Wonder Woman",
"similar_games": [
152336,
152249,
37419,
49428,
81249,
82090,
100800,
103303,
113111,
113895
],
"summary": "Single player open-world action game will introduce an original story set in the DC Universe and allow players to become Diana of Themyscira in the fight to unite her Amazon family and the humans from the modern world."
},
{
"id": 209917,
"cover": 232834,
"name": "The Football T",
"summary": "Dribble the ball to become the best football player in the world."
},
{
"id": 130000,
"cover": 94110,
"first_release_date": 1593043200,
"name": "Hunting Simulator 2",
"similar_games": [
228376,
26574,
35994,
76263,
79134,
95340,
103232,
105049,
105269,
109339
],
"summary": "With your hunting dog by your side, explore the Texan desert and forests of Colorado and Europe as you track down 33 animal species. Choose your gear from over 160 official weapons, accessories and clothing items (including Browning, Winchester and Bushnell)."
},
{
"id": 150241,
"cover": 265570,
"first_release_date": 1703980800,
"name": "Luto",
"similar_games": [
142813,
185248,
38782,
55282,
68271,
87514,
106992,
110737,
111130,
120201
],
"summary": "Luto is a first person psychological horror narrative experience where you will embody a person unable to exit his own house. Finding the way to leave it will lead you through a series of paths that will challenge your senses.\n\nExplore the pain caused by the loss of a loved one, the horror of the insecurity to the deepest darkness hidden behind anxiety and depression..."
},
{
"id": 146505,
"cover": 138593,
"first_release_date": 1619049600,
"name": "Call of Duty: Black Ops Cold War - Season Three",
"similar_games": [
32902,
34024,
38030,
43367,
76263,
95340,
102868,
105049,
106805,
119177
],
"summary": "The Cold War heats up in Call of Duty: Black Ops Cold War - Season 3. Experience Verdansk in 1984 as Perseus\u0027 brainwashing scheme is revealed. With Wraith, a cold and calculated Perseus spy joining the fray, you\u0027re going to need plenty of backup. Fortunately, Season 3 delivers with new weaponry, Operator Skins, and Legendary Blueprints."
},
{
"id": 173033,
"cover": 218722,
"first_release_date": 1651190400,
"name": "Ravenous Devils",
"similar_games": [
27266,
28277,
29173,
37419,
55282,
55888,
65827,
79134,
89562,
111130
],
"summary": "An horror cooking simulator where you manage an evil family business. Improve your shops buying new tools and serve your customers."
},
{
"id": 217811,
"cover": 246452,
"first_release_date": 1662768000,
"name": "Pretty Bird 4",
"summary": "Pretty is a young bird learning to fly. Help Pretty get over different obstacles and most importantly get the highest score you can!"
},
{
"id": 96218,
"cover": 117016,
"first_release_date": 1650585600,
"name": "Bot Gaiden",
"similar_games": [
25646,
28070,
29032,
55190,
68582,
96217,
106987,
111130,
113360,
113895
],
"summary": "Stage completion time affects both boss health and rewards! Every 15 seconds, the Golden Skull will fill up a battery. If you haven\u0027t reached the Henchbot (boss) yet, it will be added to his health. After you defeat him, any remaining energy is converted to batteries you can spend on upgrades (which help you go faster)!"
},
{
"id": 214874,
"first_release_date": 1675382400,
"name": "Dead Island 2: Hell-a Edition"
},
{
"id": 172891,
"cover": 208183,
"first_release_date": 1680134400,
"name": "Bat Boy",
"similar_games": [
28070,
29032,
55190,
68582,
96217,
106987,
111130,
113360,
113631,
113895
],
"summary": "Ryosuke isn\u0027t just your regular high-school kid. He and his fellow sports-star friends secretly battle against the evil invading forces of Lord Vicious, hellbent on hosting sinister athletic events for his own amusement! Aided by the power granted to them by nameless deities, Ryosuke is Bat Boy!"
},
{
"id": 135671,
"cover": 109919,
"first_release_date": 1703980800,
"name": "Test Drive Unlimited Solar Crown",
"similar_games": [
3772,
27378,
37419,
44178,
44242,
105011,
107196,
118871,
119161,
120126
],
"summary": "Test Drive Unlimited Solar Crown is an open world driving and lifestyle experience. Grab your keys and live your life of luxury. Remember, social status is everything In the world of Test Drive Unlimited."
},
{
"id": 221233,
"cover": 260479,
"first_release_date": 1666224000,
"name": "The Jumping Wrap: Turbo",
"similar_games": [
17613,
28277,
65827,
76340,
87485,
100794,
101573,
105264,
112754,
116582
],
"summary": "Join Big W on his exciting journey through the kitchen and make him jump! Enjoy the colorful comic graphics accompanied by atmospheric music."
},
{
"id": 142812,
"cover": 125671,
"first_release_date": 1620345600,
"name": "Resident Evil Village: Collector\u0027s Edition",
"similar_games": [
11668,
13210,
25646,
68271,
102584,
105049,
109550,
111130,
114455,
115304
],
"summary": "The collector\u0027s edition comes with all the digital items from the deluxe edition, as well as the following items:\n- Chris Redfield figure\n- Artbook\n- Poster\n- Box and steelbook case\n- Trauma pack (same content as in the )"
},
{
"id": 142813,
"cover": 125672,
"first_release_date": 1620345600,
"name": "Resident Evil Village \u0026 Resident Evil 7 Complete Bundle",
"similar_games": [
150241,
185248,
25646,
68271,
102584,
105049,
109550,
111130,
114455,
115304
],
"summary": "Experience survival horror like never before in this bundle containing the definitive version of Resident Evil 7 biohazard, and Resident Evil Village, the 8th major installment in the franchise. With detailed graphics, intense first-person action and masterful storytelling, the terror has never felt more real in this heart-pounding narrative of family tragedy.\n\nThis pack includes the following content:\n• Resident Evil 7 biohazard Gold Edition\n• Resident Evil Village\n• Resident Evil Re:Verse\n• Trauma Pack"
},
{
"id": 132594,
"cover": 277296,
"first_release_date": 1645488000,
"name": "SCP: 5K",
"similar_games": [
17548,
19164,
47823,
96217,
103298,
106987,
109550,
111130,
113360,
116530
],
"summary": "SCP: 5K is an upcoming multiplayer tactical shooter title set within the SCP mythos. Succeeding the events of Tanhony\u0027s SCP-5000 — Why?, SCP: 5K follows the Anti-Foundation Alliance\u0027s attempts to impede the OMNICIDE: the SCP Foundation\u0027s plot to annihilate the human race as quickly as possible, by any means necessary."
},
{
"id": 229481,
"cover": 277134,
"first_release_date": 1674864000,
"name": "The Jumping Onigiri: Turbo",
"summary": "Join Big O on his exciting journey through the kitchen and make him jump! Enjoy the colorful comic graphics accompanied by atmospheric music."
},
{
"id": 114795,
"cover": 89412,
"first_release_date": 1549238400,
"name": "Apex Legends",
"rating": 77.7502276204032,
"similar_games": [
241,
1011,
2031,
7351,
8173,
8744,
11544,
17447,
25657,
103281
],
"summary": "Conquer with character in Apex Legends, a free-to-play Hero shooter where legendary characters with powerful abilities team up to battle for fame \u0026 fortune on the fringes of the Frontier.\n\nMaster an ever-growing roster of diverse Legends, deep tactical squad play and bold new innovations that go beyond the Battle Royale experience—all within a rugged world where anything goes. Welcome to the next evolution of Hero Shooter."
},
{
"id": 137591,
"cover": 118942,
"name": "BulletVille",
"similar_games": [
19164,
25901,
55042,
57187,
76263,
95340,
105049,
106805,
119177,
119385
],
"summary": "BulletVille is a free-to-play, multiplayer, third-person parkour hero shooter \u0026 platformer featuring a grapple hook, high-mobility and wacky characters."
},
{
"id": 145814,
"cover": 137289,
"first_release_date": 1631145600,
"name": "Life is Strange: True Colors - Deluxe Edition",
"similar_games": [
27092,
27725,
55984,
75240,
96217,
103266,
106987,
113360,
115653,
116530
],
"summary": "Alex Chen must embrace her volatile psychic power of Empathy to uncover the truth about her brother\u0027s death.\n\nThe Life is Strange: True Colors Deluxe edition contains:\n- Life is Strange: True Colors: the complete game.\n- Exclusive Bonus Story: ‘Wavelengths’: play as Steph in the year before Alex came to Haven Springs, in a standalone story set in the iconic Rocky Mountain Record Traders store and KRCT radio station.\n- Exclusive Life is Strange Hero Outfit Pack: change up Alex\u0027s look with 4 new outfits inspired by past protagonists. The pack includes clothing inspired by Chloe’s Misfit Skull, Sean’s Wolf Squad, Daniel’s Space Mission, and Max’s Jane Doe outfits, with one outfit available for Alex to wear in each chapter of the main game."
},
{
"id": 172814,
"cover": 182676,
"name": "Xenocider",
"similar_games": [
25311,
32902,
43367,
55042,
76263,
105049,
105269,
107318,
113362,
113895
],
"summary": "Blast through corrupted worlds in this HD remaster of a cult classic! Xenocider is a third-person rail shooter inspired by arcade classics and presented in nostalgic 32-bit style!"
},
{
"id": 59598,
"cover": 94929,
"first_release_date": 1677196800,
"name": "Clive \u0027N\u0027 Wrench",
"similar_games": [
19150,
21564,
24426,
28070,
55038,
55173,
55190,
56033,
58114,
89597
],
"summary": "Clive \u0027N\u0027 Wrench is a 3D platformer that takes inspiration from the collect-a-thon games of the 90\u0027s, but with an added time traveling element."
},
{
"id": 173110,
"cover": 209682,
"first_release_date": 1645142400,
"name": "Horizon Forbidden West: Regalla Edition",
"summary": "This edition includes the following:\n- Horizon Forbidden West (Digital) PS4 and PS5 versions\n- Horizon Forbidden West SteelBook Display Case\n- Download code for the game will be supplied via voucher in the box.\n- A Regalla-themed, custom sculpted Tremortusk and Aloy statue\n- Statues will require some assembly; detailed instructions will be provided with the box!\n- Replica Focus and custom stand\n- 2 Art Print Cards\n- Replica Sunwing and Clawstrider Machine Physical Strike Pieces\n- Mini Art Book\n- Canvas Map\n- 2 Special Outfits (Carja Behemoth Elite and Nora Thunder Elite)\n- 2 Special Weapons (Carja Behemoth Short Bow and Nora Thunder Sling)\n- In-game Resources Pack including ammunition, potions, and travel packs\n- In-game Apex Clawstrider Machine Strike Piece\n- Exclusive Photo Mode poses and face paints\n- Digital Soundtrack\n- Digital Version of The Sunhawk, the first Horizon Zero Dawn graphic novel"
},
{
"id": 185248,
"cover": 199900,
"name": "Slitterhead",
"similar_games": [
55282,
99307,
111130,
219368,
220571,
221301,
224167,
228751,
233460,
233830
],
"summary": "New horror game by the creator of Silent Hill, Siren, and Gravity Rush that takes place in Kowloon Walled City."
},
{
"id": 204524,
"cover": 280186,
"name": "Bread \u0026 Fred",
"similar_games": [
20342,
25646,
28070,
29032,
55190,
96217,
105269,
106987,
111130,
113360
],
"summary": "Grab your best bud for help in this new co-op challenge to help two adorable penguins, Bread and Fred, reach the top of the snowy summit. Time your jumps, cling to walls and swing across gaps to see how far you can make it before you tumble all the way back down the mountain."
},
{
"id": 27304,
"cover": 97364,
"first_release_date": 1469059200,
"name": "Ys VIII: Lacrimosa of Dana",
"rating": 89.8057825488909,
"similar_games": [
28366,
24426,
27092,
27209,
28168,
28309,
35994,
36198,
55038,
55199
],
"summary": "Ys returns with a brand new adventure for the first time in 8 years! Adol awakens shipwrecked and stranded on a cursed island. There, he and the other shipwrecked passengers he rescues form a village to challenge fearsome beasts and mysterious ruins on the isolated island."
},
{
"id": 222815,
"cover": 269029,
"first_release_date": 1623715200,
"name": "Assassin\u0027s Creed Valhalla: Mastery Challenge",
"similar_games": [
26574,
34155,
80916,
81249,
96217,
103303,
105049,
106987,
115280,
115653
],
"summary": "Mastery Challenge is a free update that introduces replayable trials to test your expertise against Melee, Range, and Stealth objectives. Unlock new unique rewards as you perfect your skills, including weapons, tattoos, decorations, and more!"
},
{
"id": 181616,
"cover": 202394,
"first_release_date": 1619049600,
"name": "Raiden IV x Mikado Remix: Limited Edition",
"similar_games": [
306,
22799,
27283,
55038,
68286,
89550,
105049,
105269,
106805,
113362
],
"summary": "This edition includes the following\n- Game: Raiden IV x Mikado Remix\n- Background Music and Soundtrack CD\n- Reprint Original Soundtrack CD \"Raiden IV -Ultimate of Raiden-\"\n- Reversible Cover"
},
{
"id": 159120,
"cover": 218504,
"first_release_date": 1653436800,
"name": "Knockout City: Season 1 - Welcome to Knockout City",
"similar_games": [
32902,
43367,
76263,
96217,
105049,
105269,
106987,
111130,
113360,
113895
],
"summary": "Now grab a ball, round up a crew, hit the streets, and make a name for yourself!"
},
{
"id": 135732,
"cover": 182239,
"name": "Dark Fracture",
"similar_games": [
142813,
185248,
18020,
18225,
25646,
26574,
28070,
55984,
107614,
111130
],
"summary": "Dark Fracture is an indie psychological horror game played in first-person, targeted for early access release in 2021.\n\nOver the course of the game, the player is faced with the character’s inner chaos – witnessing the world change around him as the barrier between reality and imagination seems to crumble."
},
{
"id": 191757,
"cover": 218875,
"first_release_date": 1655424000,
"name": "Final Vendetta: Collector\u0027s Edition",
"similar_games": [
25640,
43367,
59858,
90011,
96217,
103369,
107262,
111130,
113895,
121036
],
"summary": "Final Vendetta is a hard-hitting action packed beat ‘em up for 1 or 2 players in the vein of classic arcade titles. Featuring stunning pixel art and a thumping soundtrack with exclusive tracks from Utah Saints! Brawl with bad dudes and tough girls as you fight through dangerous environments.\n\nCollector\u0027s Edition includes:\n- Deck of 32 Collectible Character Cards complete with bio and stats to compete\n-The Original Soundtrack featuring the music of Utah Saints and Featurecast\n- A radical \"Bin Chicken\" sticker!"
},
{
"id": 52764,
"cover": 142369,
"first_release_date": 1502409600,
"name": "SturmFront: The Mutant War - Übel Edition",
"rating": 70.0,
"similar_games": [
22799,
25311,
28070,
43367,
54844,
55038,
55042,
76263,
105269,
107318
],
"summary": "Arcade action game in the vein of Commando, Ikari Warriors and Shock Troopers, mixed with bullet hell elements. You play as an experimental cyborg battle unit fighting against unrelenting mutant hordes to a soundtrack of aggressive heavy metal and psychedelic electronica."
},
{
"id": 206673,
"cover": 274078,
"first_release_date": 1670544000,
"name": "Death\u0027s Door: Ultimate Edition",
"similar_games": [
19164,
54775,
81249,
96217,
103168,
103303,
106987,
110474,
113109,
113636
],
"summary": "The Ultimate Edition includes: Physical PS5 or Nintendo Switch game, An exclusive artbook, The game´s Official Soundtrack CD in a carton sleeve, and A Collectible tuck-in box housing all the contents."
},
{
"id": 206828,
"cover": 229694,
"first_release_date": 1656460800,
"name": "The Basketball B",
"summary": "Dribble the ball to become the best baller in the world."
},
{
"id": 183112,
"cover": 199280,
"first_release_date": 1631577600,
"name": "Tom Clancy\u0027s Rainbow Six Siege: Crystal Guard",
"similar_games": [
19549,
34024,
38030,
76263,
102862,
102868,
105049,
106805,
118218,
119177
],
"summary": "Introducing Crystal Guard, Rainbow Six Siege\u0027s third season of Year 6! This season, we\u0027re introducing our latest Operator, Osa, an engineering prodigy from Croatia who brings expertise to Nighthaven with her quick wits and unapologetic enthusiasm for \u002760s sci-fi movies.\n\nThis season is packed with a plethora of updates including changes to Operator armor and DBNO scoring as well as balancing for Twitch, IQ, Mute, and Fuze. Players also have a new way to customize Elite Uniforms."
},
{
"id": 224918,
"cover": 270544,
"first_release_date": 1668124800,
"name": "The Jumping Falafel",
"similar_games": [
17613,
28277,
65827,
76340,
87485,
100794,
101573,
105264,
112754,
116582
],
"summary": "Join BIG F on his exciting journey through the kitchen and make him jump!\nEnjoy the colorful comic graphics accompanied by atmospheric music."
},
{
"id": 136712,
"cover": 199236,
"first_release_date": 1668643200,
"name": "171",
"similar_games": [
1877,
17379,
19164,
26574,
37419,
76263,
105011,
105269,
113360,
115785
],
"summary": "171 is an open world action adventure game with a Brazilian inspired ambience."
},
{
"id": 174188,
"cover": 186943,
"first_release_date": 1634774400,
"name": "Disciples: Liberation - Deluxe Edition",
"similar_games": [
7615,
13196,
26268,
36258,
93694,
99118,
102057,
112191,
115653,
119171
],
"summary": "The Deluxe Edition contains everything you need to take your journey even further. Within, you will find two unique sets of armor, two new weapons, an emotion shard for Avyanna, wallpapers, a digital compendium, the soundtrack, and two packs:\n\n• Yllian Resources Pack - get extra resources to build up your hometown\n\n• Pack with 5 Additional Skill Points - get extra skill points for Avyanna"
},
{
"id": 74653,
"cover": 104671,
"first_release_date": 1675123200,
"name": "8-Bit Adventures 2",
"similar_games": [
17548,
19150,
22387,
24426,
28309,
36198,
47823,
80916,
96217,
106987
],
"summary": "8-Bit Adventures 2 is everything you love about NES, SNES and PS1-era JRPGs - with all of the charm, heart and soul, but none of the inconvenience. Dynamic turn-based battles \u0026 pixels with personality!"
},
{
"id": 208418,
"cover": 231443,
"first_release_date": 1701388800,
"name": "Paradize Project",
"similar_games": [
25311,
26574,
35994,
81249,
96217,
103232,
105049,
106987,
109339,
113402
],
"summary": "Fight, Hack, and Survive! Alone or with friends, explore a mysterious open-world infested by zombies. Collect materials, craft weapons, and fight for your life. Learn to hack zombies to assist in fighting, protecting, or farming. Welcome to Paradize!"
},
{
"id": 223949,
"cover": 269108,
"first_release_date": 1667347200,
"name": "OlliOlli World: Finding the Flowzone",
"similar_games": [
32902,
37419,
76263,
96217,
105233,
106987,
111130,
113895,
121036,
121542
],
"summary": "OlliOlli World: Finding the Flowzone is the final expansion that can be purchased individually or as part of the OlliOlli World Expansion Pass or OlliOlli World Rad Edition. OlliOlli World base game is required to play expansions. Please be careful not to make duplicate purchases."
},
{
"id": 213264,
"cover": 237035,
"first_release_date": 1669680000,
"name": "Soccer Story",
"similar_games": [
19164,
25311,
26574,
35994,
37419,
80916,
81249,
96217,
105011,
106987
],
"summary": "It\u0027s been a year since The Calamity tore apart the very foundations of soccer as we know it, and since then, Soccer Inc. has made dang well sure that not a soul has been allowed to even look at a soccer ball, let alone kick it.\n\nSoccer may have been banned across the world... but now there is hope! A magical soccer ball has chosen you, our Savior of Soccer! Soccer Story is a physics-driven adventure RPG, where every problem can be solved with your trusty magic ball."
},
{
"id": 165316,
"cover": 170861,
"first_release_date": 1629763200,
"name": "Destiny 2: Beyond Light - Season of the Lost",
"similar_games": [
25311,
52189,
55038,
103292,
103301,
103329,
105049,
105269,
107318,
113362
],
"summary": "In Season of the Lost, players will blur the line between technology and magic to find Mara Sov\u0027s lost Awoken as they search for answers."
},
{
"id": 38782,
"cover": 96964,
"first_release_date": 1497916800,
"name": "Outbreak: The New Nightmare",
"rating": 80.0,
"similar_games": [
142813,
185248,
150241,
80916,
96217,
105049,
105269,
106987,
107318,
111130
],
"summary": "Return to the roots of co-op survival horror as you face monstrous hordes, scrounge for supplies and attempt to survive the nightmare. You have one life. Make it count!"
},
{
"id": 127749,
"cover": 125790,
"first_release_date": 1578960000,
"name": "Bunny Park",
"rating": 70.0,
"similar_games": [
17111,
17519,
29173,
31515,
36346,
55036,
55590,
55689,
65827,
79134
],
"summary": "Manage your own bunny park! Give snacks and toys to your bunnies. Improve and decorate your park to increase its popularity and collect all the bunnies!"
},
{
"id": 227712,
"cover": 272995,
"first_release_date": 1669507200,
"name": "Reckless Auto Racing 2",
"similar_games": [
25905,
27378,
90965,
103018,
109292,
111151,
233514,
233521,
233528,
233755
],
"summary": "Race like never before in this medieval style world. You are a miniaturized version of yourself. You will be racing in a world where everything will seem too big. So pay attention to the environment and your enemies. Finish the race first and become the winner."
},
{
"id": 228376,
"cover": 273431,
"first_release_date": 1637107200,
"name": "Firefighting Simulator: The Squad",
"similar_games": [
130000,
33603,
36258,
36962,
51577,
65827,
76340,
79134,
107992,
112754
],
"summary": "With Firefighting Simulator: The Squad, you can become part of a major US city\u0027s firefighting team and experience how it feels to fight fires.\n\nStart the siren of your fire truck, grab your hose, and fight realistic fires to save lives. Discover over 40 diverse deployment locations spread across the city inspired by the North American West Coast. Equip yourself with authentic firefighting gear such as helmets, firefighter boots, and a breathing apparatus model by well-known North American firefighting equipment manufacturers."
},
{
"id": 173211,
"cover": 248273,
"first_release_date": 1632787200,
"name": "Behind Closed Doors: A Developer\u0027s Tale",
"similar_games": [
28070,
28277,
75948,
81183,
87514,
103063,
106992,
110503,
111130,
117311
],
"summary": "In Behind Closed Doors, you plays as Ethan, who works for a small indie company, trying to support his pregnant wife. He gets an unexpected phone call during the middle of the night, and is teleports to another dimension, where he has to face a series of challenges to get back to the real world."
},
{
"id": 148182,
"cover": 140777,
"first_release_date": 1588032000,
"name": "SnowRunner: Year 1 Pass",
"similar_games": [
17613,
28277,
65827,
76340,
87485,
100794,
101573,
105264,
112754,
116582
],
"summary": "Expand your SnowRunner experience with the Year 1 Pass, granting you access to the exclusive Sabertooth skin for the Heavy Duty Derry Longhorn 4520, as well as new vehicles, new skins, new missions, new maps to explore and more."
},
{
"id": 201795,
"cover": 222421,
"first_release_date": 1703980800,
"name": "Miasma Chronicles",
"similar_games": [
25311,
35994,
79134,
87622,
96217,
105049,
106987,
107218,
111130,
119171
],
"summary": "From the creators of Mutant Year Zero: Road to Eden comes a beautifully crafted tactical adventure you won’t forget. Embark on a quest across a post-apocalyptic wasteland torn apart by a savage force known only as the ‘Miasma’."
},
{
"id": 133807,
"cover": 113265,
"first_release_date": 1593561600,
"name": "Trackmania",
"rating": 67.5162441240965,
"similar_games": [
15851,
23314,
43367,
47161,
87728,
118871,
119161,
119422,
120795,
121036
],
"summary": "Trackmania, the racing franchise from Ubisoft Nadeo, is back with the most compelling remake of Trackmania Nations."
},
{
"id": 231032,
"cover": 281451,
"first_release_date": 1673913600,
"name": "Mrs.Cat Between Worlds",
"similar_games": [
28070,
29032,
76253,
87622,
96217,
104008,
105049,
106987,
111130,
113360
],
"summary": "Two otherworldly games featuring the incredible leaping Mrs.Cat"
},
{
"id": 28366,
"cover": 141770,
"first_release_date": 1493683200,
"name": "Nioh: Dragon of the North",
"rating": 79.9944114131363,
"similar_games": [
27304,
28168,
54775,
55038,
55199,
81249,
96217,
103168,
103303,
106987
],
"summary": "Return once more to the Yokai infested landscape of Japan’s warring states and venture deep into its embattled northern provinces.\n\nIn this story expansion for Nioh - Dragon of the North follows William’s valiant struggle in the main game and opens up the Oshu region, where ambitious ruler Masamune Date is secretly gathering spirit stones.\n\nEncounter fearsome enemies and allies across three distinct stages, and develop William’s combat skills further with powerful new Ninjutsu, Onmyo magic and Guardian Spirits. Plus, discover legendary armor sets and weapons, including the Odachi great katana."
},
{
"id": 229482,
"cover": 276298,
"first_release_date": 1671667200,
"name": "Valkyrie Profile: Lenneth",
"summary": "An intricate and evocative tale of fates woven by gods and mortals, steeped in Norse mythology, punctuated by groundbreaking combat, and brought to life by a soundtrack considered among gaming\u0027s greatest. New features such as rewind function, quick save and load, visual presets, etc have been added."
},
{
"id": 128253,
"cover": 121529,
"first_release_date": 1621296000,
"name": "Guardian of Lore",
"similar_games": [
25311,
28309,
30245,
55199,
80916,
96217,
105049,
105269,
106987,