-
Notifications
You must be signed in to change notification settings - Fork 12
/
port_metadata.json
2972 lines (2972 loc) · 78.5 KB
/
port_metadata.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
[
{
"name": "2048",
"launcher": "2048.sh",
"description": "The 2048 puzzle game",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Abe's Amazing Adventure",
"launcher": "Abes Adventure.sh",
"description": "A scrolling, platform-jumping, key-collecting, ancient pyramid exploring game, vaguely in the style of similar games for the Commodore+4. Abe's Adventure files are already included and ready to go.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "adventure",
"rating": ""
},
{
"name": "Abombniball",
"launcher": "Abombniball.sh",
"description": "The objective of Abombniball is to defuse all the explosives on each level.\nAs a ball, this would normally be a simple task,\nhowever each level is filled with traps and devious puzzles.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Abu Simbel Profanation Deluxe",
"launcher": "Abu Simbel Profanation Deluxe.sh",
"description": "",
"releasedate": "20050222",
"developer": "M.A. Software",
"publisher": "",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Abuse",
"launcher": "Abuse.sh",
"description": "",
"releasedate": "19950101",
"developer": "Crack dot Com",
"publisher": "Crack dot Com",
"players": "",
"genre": "Action",
"rating": ""
},
{
"name": "Alchemy Quest",
"launcher": "Alchemy Quest.sh",
"description": "Alchemy Quest is a simple puzzle game where players combine alchemic elements to create exotic combinations and score points. A launcher for Open Alchemist is included.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Alchemy Quest",
"launcher": "Open Alchemist.sh",
"description": "Alchemy Quest is a simple puzzle game where players combine alchemic elements to create exotic combinations and score points. A launcher for Open Alchemist is included.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Marathon",
"launcher": "Marathon.sh",
"description": "",
"releasedate": "19941101",
"developer": "Bungie",
"publisher": "Bandai",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Marathon 2: Durandal",
"launcher": "Marathon 2.sh",
"description": "",
"releasedate": "19951124",
"developer": "Bungie",
"publisher": "Bandai",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Marathon: Infinity",
"launcher": "Marathon Infinity.sh",
"description": "",
"releasedate": "19961015",
"developer": "Bungie",
"publisher": "Bandai",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Alien vs Predator",
"launcher": "Alien vs Predator.sh",
"description": "The three most ferocious species in the universe in a bloodthirsty battle for the ultimate prize: survival. Take your pick: be a Colonial Marine, a Predator or an Alien. Fight through suspense-filled environments: from starships and space stations to colonial bases and eerie planetscapes. One wrong move turns you from hunter to prey.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "Another Metroid 2 Remake",
"launcher": "AM2R.sh",
"description": "",
"releasedate": "20160816",
"developer": "",
"publisher": "",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Anarch",
"launcher": "Anarch.sh",
"description": "Anarch is extremely small, completely public domain, no-dependency, no-file, portable suckless anarcho-pacifist from-scratch 90s-style Doom clone that runs everywhere, made for the benefit of all living beings",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "fps",
"rating": ""
},
{
"name": "Apoc Runner",
"launcher": "Apoc Runner.sh",
"description": "",
"releasedate": "20200601",
"developer": "Omnitron Studios",
"publisher": "Omnitron Studios",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "Caesar III",
"launcher": "Augustus.sh",
"description": "",
"releasedate": "19980930",
"developer": "",
"publisher": "",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Axiom Verge",
"launcher": "Axiom Verge.sh",
"description": "",
"releasedate": "20150514",
"developer": "Thomas Happ Games",
"publisher": "Thomas Happ Games",
"players": "",
"genre": "Platform / Run Jump Scrolling-Platform",
"rating": ""
},
{
"name": "Banana Duck",
"launcher": "Banana Duck.sh",
"description": "",
"releasedate": "20230801",
"developer": "Hamdy Elzanqali",
"publisher": "Hamdy Elzanqali",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "Beat of The PixelHeat",
"launcher": "PixelHeat.sh",
"description": "Beat of The Pixel Heat is a rhythm game in which you must control HEAT, an artificial intelligence responsible for defending cyberspace from a wave of viral elements that have invaded your home!",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rhythm",
"rating": ""
},
{
"name": "Beat2x",
"launcher": "Beat2x.sh",
"description": "Beat2x is DDR-style rythm game where the goal is to time the button presses to line up with the music beat.\n",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rhythm",
"rating": ""
},
{
"name": "Bermuda Syndrome",
"launcher": "Bermuda Syndrome.sh",
"description": "",
"releasedate": "19960101",
"developer": "Century Interactive",
"publisher": "BMG Interactive",
"players": "",
"genre": "Action / Adventure-Platform-Action",
"rating": ""
},
{
"name": "Billy Frontier",
"launcher": "BillyFrontier.sh",
"description": "This is Pangea Software's Billy Frontier updated to run on modern operating systems. Use the touchscreen to navigate the UI and gameplay.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "Blake Stone: Aliens of Gold",
"launcher": "Blake Stone - Aliens of Gold.sh",
"description": "",
"releasedate": "19931205T020000",
"developer": "JAM Productions",
"publisher": "Apogee Software",
"players": null,
"genre": "Shooter",
"rating": ""
},
{
"name": "Blake Stone: Planet Strike!",
"launcher": "Blake Stone - Planet Strike.sh",
"description": "",
"releasedate": "19941028T020000",
"developer": "JAM Productions",
"publisher": "Apogee Software",
"players": null,
"genre": "Shooter",
"rating": ""
},
{
"name": "Metal Blob Solid - Blob Wars",
"launcher": "Blobwars.sh",
"description": "",
"releasedate": "20150203",
"developer": "Gianfilippo Cimmino",
"publisher": "Gianfilippo Cimmino",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "Blobby Volley 2",
"launcher": "Blobby Volley 2.sh",
"description": "A head-to-head multiplayer ball game.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "sports",
"rating": ""
},
{
"name": "Block Attack",
"launcher": "Block Attack.sh",
"description": "A Tetris Attack Clone.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "BlockOut II",
"launcher": "Blockout 2.sh",
"description": "",
"releasedate": "19890208",
"developer": "",
"publisher": "",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Blood",
"launcher": "Blood.sh",
"description": "",
"releasedate": "19970531",
"developer": "Monolith Productions, Inc.",
"publisher": "GT Interactive",
"players": "40",
"genre": "Shooter",
"rating": ""
},
{
"name": "The Blues Brothers",
"launcher": "Blues Brothers.sh",
"description": "",
"releasedate": "19910101",
"developer": "Titus",
"publisher": "Titus",
"players": "",
"genre": "Platform / Run Jump Scrolling",
"rating": ""
},
{
"name": "The Blues Brothers: Jukebox Adventure",
"launcher": "Blues Brothers Jukebox Adventure.sh",
"description": "",
"releasedate": "19930101",
"developer": "Titus",
"publisher": "Titus",
"players": "1-2",
"genre": "Platform / Fighter Scrolling-Platform",
"rating": ""
},
{
"name": "Brogue",
"launcher": "Brogue.sh",
"description": "Brogue is a single-player strategy game set in the halls of a mysterious and randomly-generated dungeon. The objective is simple enough -- retrieve the fabled Amulet of Yendor from the 26th level -- but the dungeon is riddled with danger.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Bugdom",
"launcher": "Bugdom.sh",
"description": "This is Pangea Software's Bugdom updated to run on modern operating systems. Use the touchscreen to navigate the UI.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "Burst",
"launcher": "Burst.sh",
"description": "Your aura switches between red and blue every few seconds, hit balls the same color as your aura to gain points. The more balls there are on the screen, the more points you get. Game files are already included and ready to go.\n\nDPAD = Movement\nA / B = Dash\nR1 = Restart\nSTART = Pause\n",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "BZFlag",
"launcher": "Bzflag.sh",
"description": "BZFlag is a 3D multi-player tank battle game that allows users to play against each other\nin a networked environment. There are five teams: red, green, blue, purple and rogue\n(rogue tanks are black). Destroying a player on another team scores a win, while being\ndestroyed or destroying a teammate scores a loss. Rogues have no teammates (not even\nother rogues), so they cannot shoot teammates and they do not have a team score.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "Cyberdogs",
"launcher": "C-Dogs.sh",
"description": "",
"releasedate": "19940101",
"developer": "Freeware",
"publisher": "Freeware",
"players": "2",
"genre": "Action",
"rating": ""
},
{
"name": "Out Run [Enhanced Edition]",
"launcher": "Cannonball.sh",
"description": "",
"releasedate": "19860101",
"developer": "SEGA",
"publisher": "SEGA",
"players": "1",
"genre": "Race, Driving-Race 3rd Pers. view",
"rating": ""
},
{
"name": "Carmageddon",
"launcher": "Carmageddon.sh",
"description": "",
"releasedate": "19970620",
"developer": "Stainless Software",
"publisher": "SCi Games",
"players": "2",
"genre": "Race, Driving",
"rating": ""
},
{
"name": "Cave Story Evo",
"launcher": "Cave Story-evo.sh",
"description": "",
"releasedate": "20041220",
"developer": "NXEngine",
"publisher": "NXEngine",
"players": "1",
"genre": "Action / Adventure-Platform-Action",
"rating": ""
},
{
"name": "Cave Story",
"launcher": "Cave Story.sh",
"description": "",
"releasedate": "20041220",
"developer": "Studio Pixel",
"publisher": "Studio Pixel",
"players": "1",
"genre": "Action / Adventure-Platform-Action",
"rating": ""
},
{
"name": "Celeste",
"launcher": "Celeste Classic.sh",
"description": "",
"releasedate": "20180125",
"developer": "Matt Makes Games",
"publisher": "Matt Makes Games",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Chasm",
"launcher": "Chasm.sh",
"description": "",
"releasedate": "20180731",
"developer": "Bit Kid, Inc.",
"publisher": "Bit Kid, Inc.",
"players": "",
"genre": "Action / Adventure-Platform-Action",
"rating": ""
},
{
"name": "Chip 'N Dale Rescue Rangers - Remastered",
"launcher": "CHIPNDALE.sh",
"description": "",
"releasedate": "20150310",
"developer": "RR16 Studio",
"publisher": "RR16 Studio",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "Cliff Hanger",
"launcher": "Cliff Hanger.sh",
"description": "Traverse the different levels of this huge cave, in less than 12 seconds, or else, you die!\n\nFor some reason tho, time doesnt seem to keep going when you grab on ledges and maybe some other things, idk.\n\nMake sure to collect all of those shiny diamond thingies, they surely are important for you, I assure you!",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "platformer",
"rating": ""
},
{
"name": "Clockwind",
"launcher": "Clockwind.sh",
"description": "",
"releasedate": "20191228",
"developer": "alesan99",
"publisher": "alesan99",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "ColorLines",
"launcher": "ColorLines.sh",
"description": "A forked and updated version of SDL re-implementation of classic Color Lines game, originally written by Nikita Zimin in 2010.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Commander Keen Series",
"launcher": "Commander Genius.sh",
"description": "",
"releasedate": "19901214",
"developer": "id Software",
"publisher": "3D Realms",
"players": "",
"genre": "Platform / Run Jump Scrolling",
"rating": ""
},
{
"name": "Journey to the Center of Hawkthorne",
"launcher": "Hawkthorne.sh",
"description": "",
"releasedate": "20120601",
"developer": "Independent",
"publisher": "Independent",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "Theme Hospital",
"launcher": "CorsixTH.sh",
"description": "",
"releasedate": "19980201",
"developer": "Bullfrog",
"publisher": "Electronic Arts",
"players": "4",
"genre": "Strategy-Build And Management-Simulation",
"rating": ""
},
{
"name": "Cosmo's Cosmic Adventure - Forbidden Planet",
"launcher": "Cosmos Cosmic Adventure.sh",
"description": "",
"releasedate": "19920302",
"developer": "Apogee Software",
"publisher": "Apogee Software",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "Cro-Mag Rally",
"launcher": "CroMagRally.sh",
"description": "This is a port of Pangea Software\u2019s racing game Cro-Mag Rally. Take control of the caveman Brog as you race through the Stone, Bronze, and Iron Ages in primitive vehicles.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "racing",
"rating": ""
},
{
"name": "Daikatana",
"launcher": "Daikatana.sh",
"description": "",
"releasedate": "20000523",
"developer": "John Romero",
"publisher": "Eidos Interactive",
"players": "",
"genre": "Shooter",
"rating": ""
},
{
"name": "Dave Gnukem",
"launcher": "Dave Gnukem.sh",
"description": "Dave Gnukem is a cross-platform 2D scrolling platform shooter inspired by Duke Nukem 1.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "action",
"rating": ""
},
{
"name": "Deep Sleep",
"launcher": "Deep Sleep.sh",
"description": "",
"releasedate": "20200924",
"developer": "ItsGeppy",
"publisher": "ItsGeppy",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "Defshot",
"launcher": "Defshot.sh",
"description": "",
"releasedate": "20210503",
"developer": "securas",
"publisher": "securas",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "The Clue! [Der Clou!]",
"launcher": "Der Clou.sh",
"description": "",
"releasedate": "19940101",
"developer": "",
"publisher": "Kompart UK, Ltd.",
"players": "",
"genre": "Adventure",
"rating": ""
},
{
"name": "Diablo + Hellfire",
"launcher": "Devilutionx.sh",
"description": "",
"releasedate": "19970103",
"developer": "Blizzard Entertainment",
"publisher": "Blizzard Entertainment",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Dinothawr",
"launcher": "Dinothawr.sh",
"description": "",
"releasedate": "20140103",
"developer": "Libretro",
"publisher": "Libretro",
"players": "1",
"genre": "Puzzle",
"rating": ""
},
{
"name": "Diver Down",
"launcher": "DiverDown.sh",
"description": "",
"releasedate": "20180325",
"developer": "Escada-Games",
"publisher": "Escada-Games",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "Dome Romantik",
"launcher": "DomeRomantik.sh",
"description": "Dig your way through to the core of the planet. Mine minerals, bring them back to your dome and install upgrades just in time to defend from hostile lifeforms.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "strategy",
"rating": ""
},
{
"name": "Donut Dodo",
"launcher": "Donut Dodo.sh",
"description": "",
"releasedate": "20220603",
"developer": "pixel.games",
"publisher": "pixel.games",
"players": "",
"genre": "Action-Platform",
"rating": ""
},
{
"name": "Doom 3",
"launcher": "Doom 3.sh",
"description": "",
"releasedate": "20040803",
"developer": "id Software",
"publisher": "Activision",
"players": "",
"genre": "First Person Shooter",
"rating": ""
},
{
"name": "DROID7",
"launcher": "DROID7.sh",
"description": "",
"releasedate": "20200312",
"developer": "Juan Colacelli",
"publisher": "Juan Colacelli",
"players": "",
"genre": "Platform",
"rating": ""
},
{
"name": "Duke Nukem 3D",
"launcher": "Duke Nukem 3D.sh",
"description": "",
"releasedate": "19960129",
"developer": "3D Realms",
"publisher": "GT Interactive",
"players": "1",
"genre": "Shooter-Shooter / 1st person",
"rating": ""
},
{
"name": "DungeonRush",
"launcher": "DungeonRush.sh",
"description": "A opensource game inspired by Snake, written in pure C with SDL",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Echo Chamber",
"launcher": "Echo Chamber.sh",
"description": "Wizard roguelike\nTraverse a dungeon and add a new spell each time you clear a floor.\n\nYour spells cycle in a loop.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Eity",
"launcher": "Eity.sh",
"description": "Eity is a rhythm game with cool music.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rhythm",
"rating": ""
},
{
"name": "Enigma",
"launcher": "Enigma.sh",
"description": "Enigma is a puzzle game inspired by Oxyd on the Atari ST and Rock'n'Roll on the Amiga",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Escape",
"launcher": "Escape.sh",
"description": "Escape is a fun puzzle game in the tradition of Adventures of Lolo or Chip's Challenge \nUnlike either of those games, Escape doesn't rely at all on reflexes\u2014it's all about your brain.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "Powerslave [Exhumed]",
"launcher": "Exhumed.sh",
"description": "",
"releasedate": "19960101",
"developer": "Lobotomy Software",
"publisher": "Playmates Interactive",
"players": "",
"genre": "Shooter-Shooter / 1st person",
"rating": ""
},
{
"name": "Exult",
"launcher": "Exult-keyring.sh",
"description": "A port of Ultima 7.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Exult",
"launcher": "Exult-nokeyring.sh",
"description": "A port of Ultima 7.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "F1 Race",
"launcher": "F1 Race.sh",
"description": "F1 Race is a port of the F1 Race game from MTK OS.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "racing",
"rating": ""
},
{
"name": "Fade to Black",
"launcher": "F2bgl.sh",
"description": "",
"releasedate": "19950101",
"developer": "Delphine Software International",
"publisher": "Electronic Arts",
"players": "",
"genre": "Action / Adventure-Action",
"rating": ""
},
{
"name": "Falling Time",
"launcher": "Falling Time.sh",
"description": "Arcade game inspired by Fall Down.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "arcade",
"rating": ""
},
{
"name": "Fallout 1",
"launcher": "Fallout 1.sh",
"description": "Fallout is a post nuclear RPG.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Fallout 2",
"launcher": "Fallout 2.sh",
"description": "",
"releasedate": "19981029",
"developer": "Black Isle Studios",
"publisher": "Interplay",
"players": "1",
"genre": "Action RPG-Role playing games",
"rating": ""
},
{
"name": "Farmner",
"launcher": "Farmner.sh",
"description": "",
"releasedate": "20200530",
"developer": "jaydensippy",
"publisher": "jaydensippy",
"players": "",
"genre": "Survival",
"rating": ""
},
{
"name": "Final Quest",
"launcher": "Final Quest.sh",
"description": "Embark on an exciting journey in Final Quest: A Godot Research, a unique blend of a captivating 2D platform game and an in-depth research guide for the Godot game engine. ",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "platformer",
"rating": ""
},
{
"name": "Fire and Fondness 2",
"launcher": "Fire and Fondness 2.sh",
"description": "",
"releasedate": "20200808",
"developer": "JohnGabrielUK",
"publisher": "JohnGabrielUK",
"players": "",
"genre": "Puzzle",
"rating": ""
},
{
"name": "Fire Arrow",
"launcher": "Firearrow.sh",
"description": "",
"releasedate": "20130101",
"developer": "G System",
"publisher": "G System",
"players": "",
"genre": "Shoot'em Up",
"rating": ""
},
{
"name": "Flare Engine",
"launcher": "Flare Engine.sh",
"description": "",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "",
"rating": ""
},
{
"name": "Free Heroes of Might and Magic II",
"launcher": "Fheroes2.sh",
"description": "A a recreation of Heroes of Might and Magic 2 game engine by Ihar Hubchyk.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "strategy",
"rating": ""
},
{
"name": "Freedom Planet",
"launcher": "Freedom Planet.sh",
"description": "",
"releasedate": "20140721",
"developer": "GalaxyTrail Games",
"publisher": "GalaxyTrail Games",
"players": "",
"genre": "Platform / Run Jump Scrolling-Platform",
"rating": ""
},
{
"name": "FreedroidRPG",
"launcher": "Freedroid.sh",
"description": "The game tells the story of a world destroyed by a conflict between robots and their human masters. Play as Tux in a quest to save the world from the murderous rebel bots who know no mercy. You get to choose which path you wish to follow, and freedom of choice is everywhere in the game.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Freegemas",
"launcher": "Freegemas.sh",
"description": "Freegemas is an open source version of the well known Bejeweled.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "puzzle",
"rating": ""
},
{
"name": "The Settlers",
"launcher": "FreeSerf.sh",
"description": "",
"releasedate": "19930101",
"developer": "",
"publisher": "Blue Byte",
"players": "",
"genre": "Various",
"rating": ""
},
{
"name": "GemRB",
"launcher": "GemRB.sh",
"description": "GemRB (Game Engine Made with preRendered Background) is a portable open-source reimplementation of the Infinity Engine that underpinned Baldur's Gate, Icewind Dale and Planescape: Torment.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "rpg",
"rating": ""
},
{
"name": "Gigalomania",
"launcher": "Gigalomania.sh",
"description": "Gigalomania is an open source 2D Real Time Strategy god game.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "strategy",
"rating": ""
},
{
"name": "Gmu Music Player",
"launcher": "Gmu Music Player.sh",
"description": "Gmu is an open source music player for portable gaming consoles and handhelds.",
"releasedate": "",
"developer": "",
"publisher": "",
"players": "",
"genre": "other",
"rating": ""
},
{
"name": "GNU Robbo",
"launcher": "GNU Robbo.sh",
"description": "",
"releasedate": "20020927",
"developer": "Janusz Pelc",
"publisher": "LK Avalon",
"players": "",
"genre": "Puzzle",
"rating": ""
},
{
"name": "Gumgem",
"launcher": "Gumgem.sh",
"description": "",
"releasedate": "20181007",
"developer": "DAZEL",
"publisher": "DAZEL",
"players": "",
"genre": "Platform",