-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgameInfo.json
More file actions
3688 lines (3688 loc) · 129 KB
/
gameInfo.json
File metadata and controls
3688 lines (3688 loc) · 129 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": 40104,
"created_at": 1498435200,
"first_release_date": 536457600,
"name": "Dogou Souken",
"summary": "An overhead-view shoot\u0027em up game."
}
,
{
"id": 99234,
"cover": 91582,
"created_at": 1524843905,
"first_release_date": 1527120000,
"name": "Sword of the Black Stone",
"summary": "If your looking for action and adventure then Sword of the Black Stone is for you."
}
,
{
"id": 139538,
"cover": 117024,
"created_at": 1602368467,
"first_release_date": 1525910400,
"name": "sun machine",
"summary": "a story of dark days, chronic fatigue, optimism, and nostalgia"
}
,
{
"id": 85450,
"created_at": 1517405808,
"name": "Transformers Prime: The Game"
}
,
{
"id": 33284,
"created_at": 1495670400,
"first_release_date": 1457740800,
"name": "One way to exit",
"summary": "Move forward or backward in search of an exit, but remember, if you started moving you can not stop, and in any case, do not touch the walls, otherwise you have to start all over again."
}
,
{
"id": 89616,
"cover": 192106,
"created_at": 1519986874,
"name": "Bubble Whirl Shooter",
"summary": "Shoot bubbles and match colors to pop your way up to victory in this bubble shooting adventure, win magic keys to unlock more secret colorful bubble world, it�s time to enjoy the endless bubble shooting fun!"
}
,
{
"id": 104748,
"created_at": 1530489600,
"name": "Space station - build your own ISS"
}
,
{
"id": 146815,
"cover": 139338,
"created_at": 1620325446,
"first_release_date": 1230681600,
"name": "Parking Lot Maze",
"summary": "Parking Lot Maze is a puzzle game where as a parking lot manager, you need to free cars from gridlock before the stress level hits the roof."
}
,
{
"id": 135938,
"cover": 111232,
"created_at": 1595440348,
"first_release_date": 1586390400,
"name": "a sunny day in lockdown",
"summary": "a sketch of a spring day in self-isolation"
}
,
{
"id": 91579,
"created_at": 1521072000,
"name": "Racing Live"
}
,
{
"id": 193329,
"cover": 212201,
"created_at": 1646480216,
"name": "LEGO Hero Factory: Brain Attack"
}
,
{
"id": 124961,
"created_at": 1571616000,
"name": "Railroad Tycoon 2: Platinum Edition"
}
,
{
"id": 95080,
"created_at": 1521763200,
"name": "Dotra"
}
,
{
"id": 85031,
"cover": 61466,
"created_at": 1517392813,
"first_release_date": 1404345600,
"name": "City Mysteries",
"summary": "Search buildings, streets, landmarks as you seek and find hidden objects in New York, Paris, Moscow and London!"
}
,
{
"id": 3857,
"cover": 93033,
"created_at": 1390153964,
"first_release_date": 1131926400,
"name": "The Chronicles of Narnia: The Lion, the Witch and the Wardrobe",
"rating": 55.7900926511431,
"rating_count": 22,
"summary": "Based on the Walt Disney Pictures and Walden Media film capturing the renown and beloved book series from author C.S. Lewis.\n\nPlayers enter the world of Narnia, a land frozen in a 100 year winter by the evil powers of the malevolent and evil White Witch. In order to end this frigid captivity and free his people, the mighty lion Aslan, true ruler of Narnia, invokes an ancient prophecy. It will become the destiny of four young siblings from our world: Peter, Susan, Edmund and Lucy Pevensie to work together and use their unique combat skills, weaponry and abilities to defeat the Witch and her armies to save Narnia. These four unlikely heroes must battle the evil forces of the White Witch by waging war against a vast variety of creatures, including Centaurs, Minotaurs, Minoboars, Cyclops, Werewolves, Wraiths, Ankleslicers, Wolves, Satyrs, Boggles and more."
}
,
{
"id": 118536,
"created_at": 1558013499,
"first_release_date": 1528329600,
"name": "Football Nation VR Tournament 2018"
}
,
{
"id": 58674,
"cover": 83799,
"created_at": 1504728190,
"first_release_date": 1459987200,
"name": "PKTBALL",
"summary": "A hyper-charged arcade smash sport designed to test your skills and reflexes to the max. Fight your way through the leaderboard and become a PKTBALL master!"
}
,
{
"id": 18248,
"cover": 201029,
"created_at": 1457458737,
"first_release_date": 1271721600,
"name": "Beat City",
"rating": 60.0,
"rating_count": 0,
"summary": "A rhythm-based mini-game collection for the DS that trades on a colorful and bizarre art style."
}
,
{
"id": 174288,
"created_at": 1633375995,
"first_release_date": 1632441600,
"name": "Apollo LM",
"summary": "3D fly and land the Apollo Lunar Module on the moon! Easy and precise control with one finger. Real moon topology mapping. Rewrite humanity\u0027s greatest achievement and... Land the 1st woman on the moon! Place your country\u0027s flag on the moon! Apollo mission dialogue voices transcription. Be Miss or Mr Armstrong. Evolve your Astronaut level. Evolve the Lunar Module. Challenge your astronaut friends through the Game Center."
}
,
{
"id": 174291,
"created_at": 1633376121,
"first_release_date": 1629849600,
"name": "Minar",
"summary": "Take mine-sweeping to the next dimension with Minar. Challenge your brain with 4 game modes, including a classic 2d board just like you remember it! Battle for the highest ranks in the Global Leaderboards! Be the quickest (or smartest) in the world and make your mark! Earn over 40 unique Achievements as you play. Minar is a relaxing 3d puzzle game on the style of \u0027minesweeper\u0027. The 3rd dimension adds an additional degree of challenge which makes Minar truly unique. The game comes packed with game modes and difficulties, and supports multiple customizations (including themes and skins). Once yours, the game is completely unlocked for you to enjoy to its fullest!"
}
,
{
"id": 138142,
"cover": 113663,
"created_at": 1598923019,
"first_release_date": 1414713600,
"name": "Lime Ergot",
"summary": "The last two officers of a tropical colonial outpost wait for evacuation."
}
,
{
"id": 48468,
"created_at": 1499965750,
"first_release_date": 651456000,
"name": "Home Run Nighter \u002790: The Pennant League",
"summary": "Home Run Night \u002790: The Pennant League is a Sports game, developed and published by Data East, which was released in Japan in 1990."
}
,
{
"id": 71300,
"cover": 54330,
"created_at": 1506604565,
"name": "PixelShips",
"summary": "PixelShips is a side-scrolling 2D shooter consisting of randomly generated levels and missions."
}
,
{
"id": 130740,
"created_at": 1582329600,
"name": "Deathmatch Club"
}
,
{
"id": 100789,
"created_at": 1525651200,
"name": "Flying Arrow!.",
"rating": 34.16185,
"rating_count": 0,
"summary": "Flying Arrow is a game control throw your arrow reach the remote target most."
}
,
{
"id": 85137,
"created_at": 1517356800,
"first_release_date": 1253836800,
"name": "Family Trainer: Extreme Challenge",
"summary": "Family Trainer: Extreme Challenge is the follow up to the successful Family Trainer game/mat bundle."
}
,
{
"id": 176209,
"created_at": 1634289775,
"name": "YogKart",
"summary": "Yogkart is a racing fangame set in the Yogscast universe. The game has N64 style graphics, local multiplayer support and a variety of characters and items to use. YogKart was submitted to the 2019 Jingle Jam Game Jam."
}
,
{
"id": 154564,
"cover": 169661,
"created_at": 1625265917,
"name": "Cascadia Quest",
"summary": "Relive 1980s nostalgia in this classic adventure game. Cascadia Quest sends the player on an epic adventure though forests, mountains and mysterious lairs, on a mission of escape and retribution!"
}
,
{
"id": 109355,
"created_at": 1536741887,
"name": "Ballz Royale",
"summary": "A game about balls... and walls."
}
,
{
"id": 182726,
"created_at": 1638406377,
"name": "Maze: The Ritual",
"summary": "A horror-themed first-person dungeon crawler."
}
,
{
"id": 130742,
"cover": 127228,
"created_at": 1582360606,
"name": "Flashy Maze"
}
,
{
"id": 181285,
"created_at": 1636684894,
"name": "Pico Room4Joy",
"summary": "Provide the service of decorating and cleaning spaces so they spark joy!"
}
,
{
"id": 45932,
"cover": 246696,
"created_at": 1499522176,
"first_release_date": 760060800,
"name": "Effacer: Hangman from the 25th Century"
}
,
{
"id": 57729,
"cover": 38529,
"created_at": 1504656000,
"name": "Laserbreak: Esacpe",
"summary": "A puzzle game from errorsevendev."
}
,
{
"id": 183323,
"created_at": 1638518641,
"name": "Double Time Dash",
"summary": "Horses"
}
,
{
"id": 94975,
"created_at": 1521504000,
"name": "Wubble Bubbles"
}
,
{
"id": 86080,
"cover": 86910,
"created_at": 1517529600,
"first_release_date": 1451520000,
"name": "SingStar: Frozen",
"summary": "SingStar: Frozen is a karaoke game based on the animated movie Frozen. Except for the song Let It Go from Demi Lovato, which is the available in all language version, the other nine songs are translated and taken directly from the movie (including dialogue). There are no changes to the gameplay formula: player(s) sing into a microphone and the game gives points based on the performance. It is only rated if the correct not is hit at the correct time; the sung words or octave does not play into the result."
}
,
{
"id": 94831,
"created_at": 1521417600,
"name": "Lines"
}
,
{
"id": 125970,
"created_at": 1574035200,
"name": "Tie Break Tennis"
}
,
{
"id": 75935,
"cover": 106238,
"created_at": 1510766425,
"first_release_date": 1511740800,
"name": "Boinks",
"rating": 70.0,
"rating_count": 0,
"summary": "Populate the screen with the happy Boinks. Avoid the nasty bouncies. Fill enough of the screen to progress to the next level. \nUse your mouse to inflate the Boinks and remember to drop them before they are hit by any nasties, or you\u0027ll have to start again. Watch out for the timer and you have a limited number of Boinks per level so make the most of them."
}
,
{
"id": 79415,
"cover": 55991,
"created_at": 1514587809,
"first_release_date": 1195516800,
"name": "Beats",
"summary": "Downloadable rhythm game for PSP that can be played with the player\u0027s own MP3s stored on the memory stick. Available through the online PSP store or PSN."
}
,
{
"id": 28780,
"cover": 99888,
"created_at": 1494802760,
"first_release_date": 1494979200,
"name": "Lacuna Passage",
"rating": 50.0,
"rating_count": 0,
"summary": "Explore the vast terrains of Mars, generated from real NASA satellite data, and survive by discovering randomized supply caches and habitats. Adventure in an otherworldly first-person sandbox."
}
,
{
"id": 97894,
"cover": 120375,
"created_at": 1524581008,
"first_release_date": 1506729600,
"name": "16bit-Collection Data East Vol. 02",
"summary": "Three additional Data East games compiled together for the Super Famicom.\n\nIncluded on this cartridge:\n\nFighter\u0027s History: Mizoguchi Kiki Ippatsu!! (known as Fighter\u0027s History 2 in the West)\nTatakae Genshijin 2: Rookie no Bouken (known as Congo\u0027s Caper in the West)\nSuper Birdie Rush"
}
,
{
"id": 127416,
"cover": 193623,
"created_at": 1576222065,
"name": "Long loot the King",
"summary": "Pac-Man inspired retro action horror game about a king, who has to face his own made horrors in the dungeons. All because of his greed and selfishness."
}
,
{
"id": 101840,
"created_at": 1526601600,
"name": "Aisleen"
}
,
{
"id": 137233,
"created_at": 1598486400,
"name": "Pocket Color Mahjong"
}
,
{
"id": 126451,
"cover": 100265,
"created_at": 1574899200,
"name": "File",
"summary": "Raven is just a regular, young woman. She goes to work, she goes to sleep, she checks her e-mails� In fact, there\u0027s nothing special about her. She\u0027s just ordinary. \n \nIf she\u0027s so uninteresting then why was she targeted by an entity calling itself \u0027File\u0027? \n \nPart desktop simulator, part platformer, this is a game designed in 2.5 months for #PixelHorrorJam by myself \u0026 James_T_Ripper \n \nInspired by the popular titles Welcome To The Game \u0026 Pony Island, File requires the mouse to be controlled in order to maneuver Raven\u0027s computer in search of a set of programs, each more horrifying as you progress. \n \nControls: \n-Once a program is executed, the D/Right-Arrow Keys can be used to move the player right \n-Alternatively, the A/Left-Arrow Keys can be used to move the player left \nLike most platformers, the Spacebar is used for jumping in levels which require it"
}
,
{
"id": 6499,
"cover": 206656,
"created_at": 1398719345,
"first_release_date": 978220800,
"name": "LEGO Creator: Knights\u0027 Kingdom",
"summary": "LEGO Creator: Knights\u0027 Kingdom is a construction simulation video game for Microsoft Windows; it uses virtual Lego pieces to build a medieval kingdom and then use the kingdom in a battle against the character Cedric the Bull."
}
,
{
"id": 95081,
"created_at": 1521763200,
"name": "Soccer Rally Arena"
}
,
{
"id": 130745,
"created_at": 1582329600,
"name": "TS Online Mobile"
}
,
{
"id": 101761,
"created_at": 1526601600,
"name": "BackDoor- Door 1"
}
,
{
"id": 56167,
"cover": 126178,
"created_at": 1504271761,
"name": "8 beat Story",
"summary": "An idol music rhythm game released on iOS and Android devices, the game contains over 30 songs."
}
,
{
"id": 106509,
"created_at": 1532955607,
"first_release_date": 1534377600,
"name": "Project Skylab",
"summary": "Project Skylab is an educational Algebra Sci-fi FPS that takes place on the surface of Mars."
}
,
{
"id": 176266,
"created_at": 1634290522,
"name": "Red Slash",
"summary": "Slash your way through an endless swarm of wraiths."
}
,
{
"id": 191351,
"cover": 208703,
"created_at": 1644311116,
"first_release_date": 1645660800,
"name": "Asonde Shogi ga Tsuyoku Naru! Ginsei Shogi DX2",
"summary": "Shogi software with functions that even beginners can enjoy. Have fun learning and become stronger!"
}
,
{
"id": 70593,
"created_at": 1506556800,
"name": "Rilakkuma"
}
,
{
"id": 102637,
"created_at": 1527292800,
"name": "Word Champion!"
}
,
{
"id": 213973,
"cover": 238241,
"created_at": 1661152165,
"first_release_date": 1662076800,
"name": "The Backrooms Footage",
"summary": "You have found a camera with a footage in it. For some reason you can\u0027t rewind the video, and as soon as you try winding it forward you find yourself in the Backrooms. Figure out whats in the footage and try to ESCAPE AS FAST AS POSSIBLE!"
}
,
{
"id": 201439,
"cover": 255108,
"created_at": 1652695665,
"name": "Rhythm Quest",
"summary": "Rhythm Quest is a 2-button rhythm platformer game. Jump, attack, and fly to the beat through upbeat songs that are hand-crafted to highlight complex rhythms!"
}
,
{
"id": 24244,
"created_at": 1474570527,
"name": "Memorick: The Apprentice Knight"
}
,
{
"id": 108095,
"created_at": 1536019200,
"first_release_date": 1199059200,
"name": "Arthic",
"summary": "Flash-based action platformer."
}
,
{
"id": 56909,
"cover": 32199,
"created_at": 1504529613,
"first_release_date": 1459123200,
"name": "Kamen Rider Atsume",
"summary": "Hit-Point\u0027s follow-up to Neko Atsume has players collecting the heroes and villains of the famous tokusatsu franchise."
}
,
{
"id": 89713,
"created_at": 1519948800,
"name": "Modern Conflict 2"
}
,
{
"id": 87751,
"created_at": 1518912000,
"first_release_date": 1170979200,
"name": "Counter-Strike Avalon",
"summary": "He is a good game"
}
,
{
"id": 176242,
"created_at": 1634290363,
"name": "This hole in my chest",
"summary": "A game about feeling empty"
}
,
{
"id": 96085,
"created_at": 1522281600,
"name": "Rocky Climb"
}
,
{
"id": 101910,
"created_at": 1526601600,
"name": "Sugar, sugar 3"
}
,
{
"id": 75627,
"cover": 58596,
"created_at": 1510239885,
"name": "Roojack",
"summary": "Roojack is a 3D, Puzzle, Platformer, Isometric video game, where you control both Maple and Whippy alternately."
}
,
{
"id": 108686,
"created_at": 1536192000,
"name": "Little Panda\u0027s Dream Town"
}
,
{
"id": 118708,
"created_at": 1558051200,
"name": "The Crew 2 - Digital Deluxe Edition"
}
,
{
"id": 79315,
"cover": 57354,
"created_at": 1514505600,
"name": "Alien\u0027s Return",
"summary": "published 1983 by ITT Family Games for the Atari 2600"
}
,
{
"id": 118647,
"cover": 192306,
"created_at": 1558039981,
"name": "jwing - the next puzzle game",
"summary": "An indie casual strategy game with fascinating gameplay mechanics. Think tetris meets a match three bubble shooter with a dynamically changing field. Easy to learn, difficult to master, with endless replay value. Develop strategies and unlock features to climb up levels and achieve the best score."
}
,
{
"id": 27056,
"cover": 71348,
"created_at": 1486254248,
"name": "Em-8ER",
"summary": "What is EM-8ER? (pronounced Ember): \n \nEM-8ER is a multiplayer, open world, co-op shooter that pits players against a ruthless, shape-shifting, alien army called the Tsi-Hu. The game is a simulated war where massive battles ebb and flow across the planets surface. Hundreds of players will be fighting at any given time in skirmishes involving mechs, giant monsters, and military bases. EM-8ER combines high action, 1st and 3rd person shooting with crafting and RTS-like elements in a vast open world. We call this genre: Massive Planetary Wargame."
}
,
{
"id": 11304,
"cover": 232812,
"created_at": 1436024564,
"first_release_date": 21945600,
"name": "Highnoon",
"summary": "Highnoon is a BASIC game developed by Christopher Gaylo from Syosset High School, New York in early 1970 on a timeshared mainframe computer. The game is single-player and set in the Wild West in 1889.\n\nThe objective of the game is a showdown between the player and Black Bart. The status of the game, actions available and results of each action are written to the system console as textual descriptions. Turns are taken to either move closer, run, or shoot. Both the player and Bart have four shots and the odds of hitting each other increase as the player closes the 100 paces between each."
}
,
{
"id": 87677,
"cover": 98557,
"created_at": 1518825600,
"first_release_date": 1518480000,
"name": "Pop-up Pilgrams"
}
,
{
"id": 167359,
"cover": 208170,
"created_at": 1631006340,
"name": "Atopesu",
"summary": "Your will breaks the world."
}
,
{
"id": 60180,
"cover": 39828,
"created_at": 1504828800,
"name": "Inhumane",
"summary": "The first available piece of Interactive Fiction created by Andrew Plotkin, being a a parody of Infocom�s Infidel."
}
,
{
"id": 59860,
"cover": 29818,
"created_at": 1504742400,
"first_release_date": 1419984000,
"name": "Doom Warrior",
"summary": "Slaughter your way through an array of vicious opponents while gaining riches, power and glory. Crush your enemies, watch them beg for death and hear the cries of their women! \n \n \nCreate the ultimate warrior \nTake your barbarian gladiator from the humble beginnings of the arena to verge of god-hood. In Doom Warrior there is literally no limit to how powerful you can become and with so many stats and abilities to choose from the number of viable character builds are endless. \n \nForge your destiny, and your gear! \nDoom Warrior takes character customization to a whole new level. All pieces of equipment can be reforged into a design of your choosing. Create a masterpiece from hundreds of individual parts, which can be combined in several million different ways. \n \n\t \nLive or die \nIn Doom Warrior you hold the power of life or death. Do you execute your defeated opponent and risk incurring the wrath of his allies? Or do you show mercy in the hope of breaking the cycle of violence? Which-ever path you choose, the consequences will be serious and far reaching. \n \nAn epic journey \nEmbark on a journey spanning the breadth of the globe. From the rotting desert slum of Ras Khalat, to the frozen Blackfells and the sweltering jungles of Raktul; take part in an epic tale of power, corruption and lust. Will you fight to protect the weak, or see the rivers run red with the blood of the innocent?"
}
,
{
"id": 108614,
"created_at": 1536192000,
"name": "Leo Spanish Spelling Complete"
}
,
{
"id": 130751,
"created_at": 1582329600,
"name": "Tower of Fortune"
}
,
{
"id": 130752,
"created_at": 1582329600,
"name": "Kuma no Pooh-San: 100 Acre no Mori no Cooking Book"
}
,
{
"id": 130753,
"created_at": 1582329600,
"name": "Crazy Kong"
}
,
{
"id": 104739,
"created_at": 1530489600,
"name": "Word Nut: Word Games \u0026 Puzzles"
}
,
{
"id": 30661,
"cover": 38771,
"created_at": 1495549661,
"first_release_date": 1479427200,
"name": "Sphere Complex",
"summary": "Roll, jump and boost a path through over 40 single player levels in Sphere Complex! Race against your self with ghost saves of your best times and compete via our online leader boards. Customize your game with multiple skins and colors or make your own maps using our in-game level editor!"
}
,
{
"id": 160116,
"cover": 193646,
"created_at": 1627905600,
"name": "Lords of the Darkreign",
"summary": "Descend into the sunless lands! A three-way civil war ravages the realm, while an enigmatic order tries to conquer all for their draconic master. Take the role of a lord leading an army, and bring triumph to your cause! Annihilate all who defy you, and stand alone beneath the swirling sky!"
}
,
{
"id": 133355,
"cover": 167512,
"created_at": 1589040561,
"name": "XenovaderS",
"summary": "Arcade classic games are back! Test your skills shooting away the xenovader hordes and clean all the stages, wave after wave, in this frantic shoot\u0027em up from alternative 80\u0027s."
}
,
{
"id": 78105,
"cover": 55917,
"created_at": 1513238606,
"name": "Puzzle Guzzle",
"summary": "Get Puzzle Guzzle, Puzzle game for PSP, PSVita console from the official PlayStation� website. Know more about Puzzle Guzzle Game."
}
,
{
"id": 100487,
"created_at": 1525305600,
"name": "Catch It"
}
,
{
"id": 95372,
"cover": 248006,
"created_at": 1521824714,
"first_release_date": 751852800,
"name": "Famista 3"
}
,
{
"id": 171309,
"cover": 258140,
"created_at": 1631985537,
"first_release_date": 1631836800,
"name": "Neon Arena",
"summary": "Neon Arena is a space arcade scoring arena game."
}
,
{
"id": 201015,
"cover": 224700,
"created_at": 1652377694,
"name": "Punk Wars: Threat From Within",
"summary": "Threat from Within DLC brings two new game modes to the world of Punk Wars!Take control over a small squad of units and try to survive as long as you can in a competitive survival mode. Or embark on a journey of betrayal and retribution in a brand new, story-oriented Atompunk solo campaign!"
}
,
{
"id": 209901,
"cover": 232811,
"created_at": 1658240284,
"first_release_date": 1227052800,
"name": "Hidden Secrets: The Nightmare"
}
,
{
"id": 143104,
"cover": 129555,
"created_at": 1612324563,
"first_release_date": 1611273600,
"name": "i am still here.",
"summary": "A short experience about ghosts and places and people, set in the first days/weeks after the lockdown ended in Melbourne."
}
,
{
"id": 92040,
"created_at": 1521189075,
"name": "Bingo"
}
,
{
"id": 39058,
"created_at": 1498119035,
"first_release_date": 539136000,
"name": "Gryzor",
"summary": "The Amstrad CPC port of the Arcade game Contra."
}
,
{
"id": 91555,
"cover": 132963,
"created_at": 1521138440,
"name": "Spike the Hedgehog"
}
,
{
"id": 106781,
"created_at": 1533254400,
"name": "Jump Ball Blast"
}
,
{
"id": 57754,
"cover": 35012,
"created_at": 1504697441,
"first_release_date": 1452643200,
"name": "Iron Quest",
"summary": "Embark on a unique and exciting adventure! Mining and refining materials, crafting weapons and shields, and fighting the evil forces! Can you bring peace back to the kingdom of Thalia?"
}
,
{
"id": 145096,
"cover": 157557,
"created_at": 1616782065,
"first_release_date": 1616544000,
"name": "Pok�mon Blaze Online"
}
,
{
"id": 133071,
"cover": 125311,
"created_at": 1588586159,
"first_release_date": 1588032000,
"name": "Kill It With Fire: IGNITION",
"summary": "Kill It With Fire: IGNITION is a free sampler of a first-person action game about hunting spiders and causing collateral damage. The full game is OUT NOW!"
}
,
{
"id": 108071,
"cover": 195598,
"created_at": 1535964495,
"name": "Soul Rebellion",
"summary": "In the lands of Armelia, 10 people have been possessed by the soul of ancient heroes to participate in a evil game. Release your own soul in this Action-Adventure game."
}
,
{
"id": 45418,
"cover": 28284,
"created_at": 1499472000,
"name": "Beach de Reach!"
}
,
{
"id": 97156,
"created_at": 1524182400,
"name": "UFO Hunter"
}
,
{
"id": 130725,
"created_at": 1582329600,
"name": "Caution! Platforming Ahead"
}
,
{
"id": 74958,
"cover": 105541,
"created_at": 1509031008,
"first_release_date": 1509494400,
"name": "ALVAROK",
"summary": "Japanese Indie developer StudioGIW is back with ALVAROK, a fun and easy-to-play Tactical Defense game. Play locally with friends or hone your skills against the computer with its built-in deep learning AI system. Adapt and strategize, utilize your various troops to defend and attack simultaneously."
}
,
{
"id": 92009,
"created_at": 1521158400,
"name": "Morph Chess 3D"
}
,
{
"id": 159900,
"cover": 195431,
"created_at": 1627900540,
"name": "MagVigor",
"summary": "MagVigor � a third-person real-time multiplayer RPG. Confrontations of magicians and knights on separate arenas in PvP battles. Fight! Or run!"
}
,
{
"id": 43895,
"cover": 232814,
"created_at": 1499165253,
"first_release_date": 992563200,
"name": "Goofy\u0027s Fun House",
"rating": 69.8767271732295,
"rating_count": 11,
"summary": "Goofy must explore each a part of his home which consists of 15 distinct rooms. Each room includes elements such as a blender in the kitchen or table saw in the garage that the player can interact with. The main focus of play centers around collecting the 50 film canisters and certain objects Goofy has misplaced throughout his home. In addition to this, there are several mini-games that may be accessed via the paintings in the rec room of Goofy\u0027s house if the player finds all the objects that are needed. There\u0027s mini-games that range from golf and fishing to skiing and driving (based on How to play...) . After Goofy completes each mini-game and finds a few special items found somewhere in the house, a corresponding cartoon like: How to Play Golf will be unlocked. The game is considered \"Completed\" when the player completes all the mini-games, finds all of the cartoon-specific items, and collects at least 50 film canisters, unlocking the final cartoon."
}
,
{
"id": 209902,
"cover": 232813,
"created_at": 1658240378,
"first_release_date": 1054166400,
"name": "Hidden Stroke: APRM"
}
,
{
"id": 214850,
"cover": 261522,
"created_at": 1661773855,
"first_release_date": 1293235200,
"name": "The Citizen Part II",
"summary": "Set in and around City 17, \"The Citizen Part Two\" contains the next three chapters of our citizen\u0027s story. After the events of the previous two chapters, you find yourself rescued from the grave by rebels, among whom you are now a valuable asset. Taken to a makeshift field hospital, you recover in the hands of rebel medics. But the Combine are determined to crush the rebels out of existence, and the peace can\u0027t last long. You will face choices, and how you decide to proceed will ultimately dictate how the story plays out for you. Some choices are less obvious than others, and require you to take initiative where you otherwise might be distracted. One way or another, it\u0027s time to take back the city."
}
,
{
"id": 97454,
"created_at": 1524528000,
"name": "The Bananatree Brothers: Eat Carrots"
}
,
{
"id": 89689,
"created_at": 1519948800,
"name": "A Knight\u0027s Move"
}
,
{
"id": 47963,
"created_at": 1499886270,
"first_release_date": 1268092800,
"name": "World Cup of Pool",
"summary": "Become a World Champion! When you want to be the best you have to beat the best. This means taking on and defeating Earl \"the Pearl\" Strickland, Efren Reyes, Francisco Bustamante, Ronnie O�Sullivan and current World Champion Daryll Peach - and that\u0027s just what you can do in World Cup of Pool! \n \nFully licensed with over 60 of the best players from around the world \n \nThe top screen displays the whole table - use the touch screen for close action shots \n \nNumerous un-lockable extras include new cues, ball sets and table designs \n \nUnique Hall of Fame trophy room to track your career"
}
,
{
"id": 137234,
"created_at": 1598486400,
"name": "Slip Slop"
}
,
{
"id": 88217,
"created_at": 1519171200,
"name": "Duck Bow Hunt"
}
,
{
"id": 66013,
"cover": 47133,
"created_at": 1505310202,
"first_release_date": 911433600,
"name": "Simple 1500 Series Vol. 7: The Card",
"summary": "Simple 1500 vol. 7: the Card is a card game compilation by Success."
}
,
{
"id": 63293,
"cover": 33577,
"created_at": 1505001600,
"first_release_date": 900547200,
"name": "Jingle Cats",
"summary": "Released in 1998 for the PlayStation. Based on American novelty recordings."
}
,
{
"id": 56032,
"cover": 31071,
"created_at": 1504268715,
"name": "The Demon Rush",
"summary": "The Demon Rush is an independent two-dimensional fictional story-driven RPG created by Dragoon Entertainment in 2008. The Demon Rush contains material unsuitable for younger audiences and includes very strong language, violence and pixelated blood and gore."
}
,
{
"id": 137242,
"created_at": 1598486400,
"name": "Premier Collection III"
}
,
{
"id": 46210,
"cover": 232815,
"created_at": 1499541599,
"first_release_date": 728524800,
"name": "Goofy\u0027s Hysterical History Tour",
"summary": "In Goofy\u0027s Hysterical History Tour, the player takes command of Goofy himself who gets his dream job as janitor at The Ludwig von Drake History Museum. However, his rival Pete is determined to get him fired and sabotages the exhibits and scatters pieces throughout various time periods. Armed with a new gadget, the Extend-O-Hand, Goofy must travel to the past and recover the pieces before the morning.\n\nThe game is a platformer, where Goofy must travel through various stages ranging from Prehistoric times, Medieval times, Colonial America and the Wild West among many others, collecting items and power-ups and defeating Pete\u0027s henchmen using the Extend-O-Hand. After collecting all the pieces, Goofy then must face Pete himself."
}
,
{
"id": 139902,
"cover": 117353,
"created_at": 1602700137,
"first_release_date": 1602720000,
"name": "10mg: Locked In",
"summary": "Locked In is a two-player visual novel simulating the breakdown of a marriage during lockdown."
}
,
{
"id": 127806,
"cover": 174422,
"created_at": 1577447127,
"first_release_date": 1635292800,
"name": "Once More",
"summary": "Rewrite the past to create the future you deserve."
}
,
{
"id": 137244,
"created_at": 1598486400,
"name": "Line Simulator 2020"
}
,
{
"id": 104254,
"created_at": 1530102835,
"name": "Yo-kai Watch World"
}
,
{
"id": 52235,
"created_at": 1501328887,
"name": "Hospital Hustle"
}
,
{
"id": 88741,
"created_at": 1519257600,
"name": "Anime Dress Up",
"summary": "Create your own anime character by dressing and styling her. In this fun dress up game, explore kawaii style to make your character unique."
}
,
{
"id": 222552,
"cover": 261513,
"created_at": 1666301898,
"first_release_date": 1362009600,
"name": "Solomon\u0027s Ring: Kaze no Shou",
"summary": "Otome game by Plan Peace for PSP."
}
,
{
"id": 102490,
"created_at": 1527120000,
"name": "DinoSaur Ice Survival Craft"
}
,
{
"id": 90359,
"created_at": 1520899200,
"name": "iLudo"
}
,
{
"id": 91763,
"created_at": 1521072000,
"name": "What\u0027s Michael?"
}
,
{
"id": 73357,
"created_at": 1507161600,
"name": "Now with Sprinkles"
}
,
{
"id": 137232,
"created_at": 1598486400,
"name": "I Don\u0027t Want To Die"
}
,
{
"id": 64162,
"cover": 261512,