-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy patha.yaml
More file actions
2866 lines (2729 loc) · 68.6 KB
/
a.yaml
File metadata and controls
2866 lines (2729 loc) · 68.6 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
- name: The A-Team Disassembly
originals:
- The A-Team
type: remake
repo: 'https://www.qotile.net/minidig/disassembly/a-team.asm'
url: 'https://atariage.com/hack_page.php?SystemID=2600&SoftwareHackID=81'
development: complete
status: playable
content: commercial
langs:
- Assembly
licenses:
- As-is
added: 2025-10-13
updated: 2025-10-13
images:
- 'https://atariage.com/2600/hacks/screenshots/s_ATeam_Hack_1.png'
- 'https://atariage.com/2600/hacks/screenshots/s_ATeam_Hack_2.png'
- name: AB3D-RTG
originals:
- Alien Breed 3D
type: remake
repo: 'https://github.com/mheyer32/ab3d-rtg'
url: >-
https://web.archive.org/web/20160610175317/http://girv.net/blog/2009/alien-breed-3d.html
development: halted
status: unplayable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2025-11-05
updated: 2025-11-05
- name: Abbaye-SDL
originals:
- l'Abbaye des Morts
type: remake
repo: 'https://github.com/nevat/abbayedesmorts-gpl'
feed: 'https://github.com/nevat/abbayedesmorts-gpl/releases.atom'
development: sporadic
status: playable
content: free
langs:
- C
frameworks:
- SDL2
- OpenGL
licenses:
- CC-BY
- GPL3
added: 2025-08-27
updated: 2025-08-27
images:
- >-
https://raw.githubusercontent.com/nevat/abbayedesmorts-gpl/refs/heads/master/screenshots/title.png
- >-
https://raw.githubusercontent.com/nevat/abbayedesmorts-gpl/refs/heads/master/screenshots/title-md.png
- >-
https://raw.githubusercontent.com/nevat/abbayedesmorts-gpl/refs/heads/master/screenshots/ingame.png
- >-
https://raw.githubusercontent.com/nevat/abbayedesmorts-gpl/refs/heads/master/screenshots/ingame-md.png
- name: ABM Disassembly
originals:
- ABM
type: remake
repo: 'https://6502disassembly.com/a2-abm/ABM.html'
url: 'https://6502disassembly.com/a2-abm/'
development: complete
status: playable
langs:
- Assembly
licenses:
- As-is
added: 2025-11-23
updated: 2025-11-23
images:
- 'https://6502disassembly.com/a2-abm/images/title.gif'
- 'https://6502disassembly.com/a2-abm/images/action1.gif'
- 'https://6502disassembly.com/a2-abm/images/action2.gif'
- name: Abuse
images:
- https://abuse.zoy.org/raw-attachment/wiki/screenshots/abuse.png
- https://abuse.zoy.org/raw-attachment/wiki/screenshots/title.png
langs:
- C++
- Common Lisp
frameworks:
- SDL
licenses:
- PD
- WTFPL
- GPL2
- Custom
development: halted
originals:
- Abuse
repo: http://abuse.zoy.org/wiki/download
status: playable
type: remake
added: 2013-05-27
updated: 2023-08-26
url: http://abuse.zoy.org/
content: swappable
- name: Abuse (Xenoveritas)
originals:
- Abuse
type: remake
repo: https://github.com/Xenoveritas/abuse
development: halted
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
licenses:
- PD
- GPL2
- WTFPL
added: 2022-06-06
updated: 2024-11-25
images:
- https://holarse.de/sites/default/files/2011-12-11-313/abuse1.png
- https://holarse.de/sites/default/files/2011-12-11-313/abuse2.png
- name: Abuse 1996
originals:
- Abuse
type: remake
repo: 'https://github.com/antrad/Abuse_1996'
url: 'http://antonior-software.blogspot.com/2016/05/abuse-1996-sdl-port-09a.html'
development: halted
status: playable
content: free
langs:
- C++
- Lisp
frameworks:
- SDL2
licenses:
- Custom
- PD
- GPL2
- WTFPL
info: Updated SDL2 port with some additional features
added: 2020-11-17
updated: 2020-11-17
images:
- 'https://media.moddb.com/images/games/1/1/138/Abuse_007.png'
- 'https://media.moddb.com/images/games/1/1/138/Abuse_008.png'
- 'https://media.moddb.com/images/games/1/1/138/Abuse_006.png'
video:
youtube: 0Q0SbdDfnFI
- name: Abuse 2025
originals:
- Abuse
type: remake
repo: 'https://github.com/apancik/Abuse_2025'
development: sporadic
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
licenses:
- Custom
- GPL2
- WTFPL
info: >-
Abuse 2025 is a modern port of the original game, updated to run on modern
systems and with new features like high-resolution graphics, gamepad support,
and more.
added: '2025-09-01'
updated: '2025-09-01'
images:
- https://github.com/user-attachments/assets/143352b6-dfe5-474f-926d-dd7f74548a85
- https://github.com/user-attachments/assets/89ca0cb7-a63a-4a18-a804-3604b4fc0214
- https://github.com/user-attachments/assets/72f5c68b-0c2f-4da6-a372-be36dbafd9a4
- name: Abyss Engine
originals:
- Diablo II
type: remake
repo: 'https://github.com/AbyssEngine/AbyssEngine'
development: halted
status: unplayable
content: commercial
langs:
- C
licenses:
- MIT
added: 2025-08-20
updated: 2025-08-20
- name: Achtung, die Kurve! Classic
images:
- https://kurve.se/screenshots/kurve-round.png
- https://kurve.se/screenshots/kurve-splash.png
- https://kurve.se/screenshots/kurve-lobby.png
info: A clone that stays true to the mechanics and visuals of the 1995 MS-DOS game (ZATACKA.EXE).
langs:
- Elm
licenses:
- AGPL3
development: active
originals:
- Achtung, die Kurve!
repo: https://github.com/SimonAlling/kurve
content: open
status: playable
type: clone
multiplayer:
- Competitive
- Local
added: 2016-12-11
updated: 2026-02-15
url: https://kurve.se/
- name: achtungkurve.com
images:
- https://achtungkurve.com/dist/images/screenshot_1.png
- https://achtungkurve.com/dist/images/screenshot_2.png
- https://achtungkurve.com/dist/images/screenshot_3.png
langs:
- JavaScript
licenses:
- GPL3
development: sporadic
originals:
- Achtung, die Kurve!
repo: https://github.com/maechler/kurve
status: playable
type: clone
multiplayer:
- Competitive
- Local
added: 2016-12-11
updated: 2023-08-27
url: https://achtungkurve.com/
- name: Acorn Electron Elite
originals:
- Elite
type: official
repo: 'https://github.com/markmoxon/elite-source-code-acorn-electron'
url: 'https://elite.bbcelite.com/electron/'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
info: >-
The Electron version of Elite is essentially a cut-down version of the
cassette version that's missing the split-screen mode, suns and Thargoids, but
otherwise it is still very much Elite.
added: 2025-12-22
updated: 2025-12-22
images:
- 'https://elite.bbcelite.com/images/general/Elite-Electron.png'
- name: AdaDoom3
langs:
- Ada
licenses:
- As-is
development: halted
originals:
- Doom 3
repo: https://github.com/AdaDoom3/AdaDoom3
status: unplayable
type: remake
added: 2017-04-04
updated: 2024-12-01
images:
- https://raw.githubusercontent.com/AdaDoom3/AdaDoom3/master/Object/EP2PUGuX0AA2Pz_.jpg
- name: Advent
originals:
- Colossal Cave Adventure
type: remake
repo: 'https://github.com/Quuxplusone/Advent'
url: 'https://quuxplusone.github.io/Advent/'
development: sporadic
status: playable
langs:
- C
licenses:
- As-is
info: A modern ANSI C port of Crowther & Woods' "Adventure".
added: 2026-01-27
updated: 2026-01-27
- name: Adventure Disassembly
originals:
- Adventure
type: remake
repo: 'https://www.qotile.net/minidig/disassembly/adventure.asm'
url: 'https://www.biglist.com/lists/stella/archives/200206/msg00094.html'
development: complete
status: playable
content: commercial
langs:
- Assembly
licenses:
- As-is
added: 2025-10-17
updated: 2025-10-17
- name: Adventure In Time
originals:
- Adventure in Time
type: official
repo: 'https://github.com/savetz/Phoenix_AdventureInTime'
development: complete
status: playable
langs:
- Assembly
- BASIC
licenses:
- As-is
added: 2026-02-11
updated: 2026-02-11
images:
- https://raw.githubusercontent.com/savetz/Phoenix_AdventureInTime/main/Resources/Screenshot.png
- name: Advanced Strategic Command
images:
- https://www.asc-hq.org/screenshots/screen05.jpg
- https://www.asc-hq.org/screenshots/screen07.jpg
langs:
- C++
frameworks:
- SDL
- GTK
licenses:
- GPL2
development: complete
originals:
- Battle Isle series
repo: https://github.com/ValHaris/asc-hq
status: playable
multiplayer:
- Competitive
type: clone
added: 2014-08-14
updated: 2023-08-28
url: https://www.asc-hq.org
- name: Adventureland
originals:
- Adventureland
type: official
url: 'https://archive.org/details/softside-magazine-22/page/n35/mode/1up'
development: complete
status: playable
langs:
- BASIC
licenses:
- As-is
added: 2025-12-27
updated: 2025-12-27
- name: After Protocol
originals:
- Beyond Protocol
type: remake
repo: 'https://sourceforge.net/projects/beyondprotocol/'
url: 'https://www.afterprotocol.com/'
development: halted
status: playable
multiplayer:
- Online
content: free
langs:
- Visual Basic .NET
licenses:
- Custom
added: 2025-11-25
updated: 2025-11-25
images:
- 'https://i.ytimg.com/vi/SlqBQpk6Q20/hq720.jpg'
- 'https://i.ytimg.com/vi/Mjjs1tnbjn8/hqdefault.jpg'
- 'https://i.ytimg.com/vi/P3V5fagfgNE/hqdefault.jpg'
- 'https://i.ytimg.com/vi/lUVxBRO5g5g/hqdefault.jpg'
- 'https://i.ytimg.com/vi/to9KpPAYiCw/hqdefault.jpg'
- 'https://i.ytimg.com/vi/4xFLPhG6BJQ/hqdefault.jpg'
- 'https://i.ytimg.com/vi/k-HgKhRD9Sc/hqdefault.jpg'
- 'https://i.ytimg.com/vi/wGOIF-CBz08/hqdefault.jpg'
- 'https://i.ytimg.com/vi/16kuwAzl5XE/hqdefault.jpg'
video:
youtube: if6kWjoOeSk
- name: Afternoon Stalker
images:
- https://web.archive.org/web/20250329235451if_/http://gvlsywt.cluster051.hosting.ovh.net/dev/images/afternoonstalker-1.png
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: halted
originals:
- Night Stalker
status: playable
type: remake
added: 2015-04-16
updated: 2026-02-03
url: http://gvlsywt.cluster051.hosting.ovh.net/dev/afternoonstalker.html
- name: AGE
originals:
- Air
type: remake
repo: 'https://github.com/weimingtom/air-galgame-engine'
development: halted
status: unplayable
content: commercial
langs:
- ActionScript
licenses:
- MIT
added: 2025-09-16
updated: 2025-09-16
- name: Agony
originals:
- Agony
type: official
repo: 'https://aminet.net/package/game/shoot/YvesGrolet-sources'
url: 'https://www.facebook.com/yves.grolet/posts/10222868958655944'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- Custom
added: 2025-11-24
updated: 2025-11-24
- name: Agendaroids
images:
- https://s.uvlist.net/n/y2009/01/56211.jpg
- https://s.uvlist.net/l/y2009/01/56210.jpg
langs:
- C
licenses:
- GPL2
development: complete
originals:
- Asteroids
status: playable
type: remake
added: 2015-04-07
updated: 2022-02-05
url: http://www.newbreedsoftware.com/agendaroids/
- name: Air-Sea Battle Disassembly
originals:
- Air-Sea Battle
type: remake
repo: 'https://www.qotile.net/minidig/disassembly/air_sea_battle.asm'
url: 'https://www.biglist.com/lists/stella/archives/200410/msg00010.html'
development: complete
status: playable
content: commercial
langs:
- Assembly
licenses:
- As-is
added: 2025-10-21
updated: 2025-10-21
- name: Airball - 25th Anniversary Revival
originals:
- Airball
type: remake
url: 'https://oldschoolprg.x10.mx/projets.php#airball'
development: complete
status: playable
content: commercial
langs:
- C
frameworks:
- SDL
licenses:
- As-is
added: 2025-10-07
updated: 2025-10-07
images:
- 'https://oldschoolprg.x10.mx/images/prj_airball0.png'
- name: Airline Tycoon
originals:
- Airline Tycoon
type: remake
repo: 'https://github.com/openairlinetycoon/AirlineTycoon'
url: >-
https://web.archive.org/web/20150809223259/http://www.gog.com/news/release_bairline_tycoon_deluxeb
feed: 'https://github.com/openairlinetycoon/AirlineTycoon/releases.atom'
development: complete
status: playable
content: commercial
langs:
- C++
licenses:
- Custom
added: 2025-11-03
updated: 2025-11-03
- name: AirPONG
originals:
- Pong
type: clone
repo: 'https://sourceforge.net/projects/airpong/'
url: 'https://airpong.sourceforge.net/'
feed: 'https://sourceforge.net/p/airpong/news/feed.rss'
development: halted
status: playable
content: open
langs:
- C
- C++
frameworks:
- OpenGL
- SDL
licenses:
- GPL2
added: 2025-10-26
updated: 2025-10-26
images:
- 'https://airpong.sourceforge.net/sights/menu-0.4.0.jpg'
- 'https://airpong.sourceforge.net/sights/slate-menu.jpg'
- 'https://airpong.sourceforge.net/sights/slate-game.jpg'
- 'https://airpong.sourceforge.net/sights/beach-menu.jpg'
- 'https://airpong.sourceforge.net/sights/beach-game.jpg'
- 'https://airpong.sourceforge.net/sights/old-menu.jpg'
- 'https://airpong.sourceforge.net/sights/old-game.jpg'
- name: Archaos
originals:
- 'Chaos: The Battle of Wizards'
type: remake
repo: 'https://github.com/lewster32/archaos'
url: 'https://www.rotates.org/category/projects/archaos-projects/'
feed: 'https://www.rotates.org/category/projects/archaos-projects/feed/'
development: very active
status: playable
multiplayer:
- Local
content: free
langs:
- TypeScript
- Vue
frameworks:
- Vue.js
- Phaser
licenses:
- As-is
added: 2026-01-07
updated: 2026-01-07
images:
- https://rotates.org/wp-content/uploads/2013/03/archaos-pathfinding1.gif
- name: Arx Fatalis
originals:
- Arx Fatalis
type: official
repo: 'https://github.com/johndrinkwater/arx-fatalis'
url: >-
https://web.archive.org/web/20151007213705/http://bethblog.com/2011/01/14/arx-fatalis-source-code-patch-released/
development: complete
status: playable
content: commercial
langs:
- C++
licenses:
- GPL3
added: 2025-11-27
updated: 2025-11-27
- name: Asteroid
originals:
- Asteroids
type: remake
repo: 'https://lab.burn.capital/chaz/asteroid'
url: 'https://chaz.human.codes/asteroid/'
feed: 'https://lab.burn.capital/chaz/asteroid.atom'
development: complete
status: playable
content: open
langs:
- C
frameworks:
- OpenGL
- GTK
- SDL
licenses:
- GPL3
info: Modern version of the arcade classic Asteroids
added: 2026-03-06
updated: 2026-03-06
images:
- 'https://chaz.human.codes/asteroid/asteroid-screenshot.png'
- name: Ajax3d
images:
- https://a.fsdn.com/con/app/proj/ajax3d/screenshots/113223.jpg
- https://a.fsdn.com/con/app/proj/ajax3d/screenshots/113221.jpg
langs:
- JavaScript
licenses:
- GPL2
development: halted
originals:
- Zarch
status: playable
repo: https://sourceforge.net/projects/ajax3d/
type: clone
added: 2015-10-09
updated: 2022-06-25
url: http://ajax3d.sourceforge.net/
- name: 'Akalabeth: World of Doom(Pyxel)'
originals:
- 'Akalabeth: World of Doom'
type: remake
repo: 'https://github.com/CoBinee/akalabeth-pyxel'
url: >-
https://web.archive.org/web/20210521234320/http://blog.livedoor.jp/cobinee/archives/2008316.html
development: complete
status: playable
content: free
langs:
- Python
frameworks:
- Pyxel
licenses:
- As-is
added: 2026-01-10
updated: 2026-01-10
video:
youtube: dn4HIVJY4EM
- name: Aklabeth
licenses:
- GPL2
langs:
- C
frameworks:
- SDL
originals:
- 'Akalabeth: World of Doom'
status: playable
repo: https://sourceforge.net/projects/aklabeth/
type: remake
development: halted
added: 2015-04-13
updated: 2022-06-25
- name: Aladdin_DirectX
type: remake
originals:
- Aladdin
status: unplayable
langs:
- C++
frameworks:
- DirectX
development: halted
repo: https://github.com/phanletrunghieu/Aladdin_DirectX
added: 2019-09-30
updated: 2022-06-25
licenses:
- As-is
- name: Aleph One
images:
- https://alephone.lhowon.org/images/marathon_collage.png
- https://alephone.lhowon.org/images/marathon2_collage.png
- https://alephone.lhowon.org/images/infinity_collage.png
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: free
development: active
originals:
- Marathon
- Marathon 2
- Marathon Infinity
repo: https://github.com/Aleph-One-Marathon/alephone
feed: https://github.com/Aleph-One-Marathon/alephone/releases.atom
status: playable
type: remake
added: 2011-06-15
updated: 2024-12-08
url: https://alephone.lhowon.org/
- name: Alex's Ping Pong
originals:
- Pong
type: clone
repo: https://www.calculatorti.com/ti-games/ti-89/asm/ping-pong/
development: complete
status: playable
langs:
- C
licenses:
- As-is
info: Pong game for TI graphing calculator.
added: 2025-11-18
updated: 2026-01-08
images:
- https://www.calculatorti.com/media/images/programs/ping-pong.jpg
- name: Alien 8
images:
- https://retrospec.sgn.net/style/images/screenshots/alien8_full_1.jpg
- https://retrospec.sgn.net/style/images/screenshots/alien8_full_2.jpg
- https://retrospec.sgn.net/style/images/screenshots/alien8_full_3.jpg
- https://retrospec.sgn.net/style/images/screenshots/alien8_full_4.jpg
langs:
- C
licenses:
- Custom
development: halted
originals:
- Alien 8
status: playable
type: remake
added: 2014-01-12
updated: 2024-12-09
url: https://retrospec.sgn.net/info.htm?id=alien8&t=g
- name: Alien Arena
originals:
- Quake 3
- Unreal Tournament
type: similar
repo: 'https://github.com/alienarena/alienarena'
url: 'https://www.alienarena.org/'
feed: 'https://github.com/alienarena/alienarena/releases.atom'
development: sporadic
status: playable
content: free
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
added: 2025-07-18
updated: 2025-07-18
images:
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA2OTM2NC5qcGc=/original/QRq47h.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA2OTM2NS5qcGc=/original/AraimL.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA2OTM2Ni5qcGc=/original/dwqJVE.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA2OTM5Ni5qcGc=/original/XLC6Rj.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA2OTM5NS5qcGc=/original/KJq1PF.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA5NDQ3Ny5qcGc=/original/%2FZY3UX.jpg'
- 'https://img.itch.zone/aW1hZ2UvMjIwOTc1MS8xMzA5NDQ3Ni5qcGc=/original/KjB3L1.jpg'
video:
youtube: TZFJSQLxS1s
- name: Alien Bash II
originals:
- Alien Bash II
type: official
repo: https://github.com/videogamepreservation/alienbashii
url: 'https://eab.abime.net/showpost.php?p=1010237'
development: complete
status: unplayable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2025-12-22
updated: 2025-12-22
- name: Alien Breed 3D I
originals:
- Alien Breed 3D
type: remake
repo: 'https://github.com/Agrigaatti/Alien-Breed-3D-I'
development: sporadic
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
added: 2025-11-23
updated: 2025-11-23
images:
- https://user-images.githubusercontent.com/119355918/212428433-8053ce24-9277-4efd-95a4-a7c1e8929e68.png
- name: Alien Breed 3D II The Killing Grounds
originals:
- 'Alien Breed 3D II: The Killing Grounds'
type: remake
repo: 'https://github.com/mheyer32/alienbreed3d2'
url: 'https://eab.abime.net/showthread.php?t=111090'
development: very active
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
info: >-
Based on and still contains the original source release of Alien Breed 3D II,
also contains the original AB3D source.
added: 2025-11-09
updated: 2025-11-09
- name: Alien Pool
originals:
- Asteroids
type: similar
url: 'https://web.archive.org/web/20060520145831/http://mike.taequin.org/alienpool/'
development: halted
status: semi-playable
content: open
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
info: Arcade-style mix of asteroids and pool.
added: 2025-08-02
updated: 2025-08-02
images:
- 'https://os4depot.net/filedata/snapshot/1376_1_snap.jpeg'
- 'https://os4depot.net/filedata/snapshot/1376_2_snap.jpeg'
- 'https://os4depot.net/filedata/snapshot/1376_3_snap.jpeg'
- name: Alien3-C64
originals:
- Alien³
type: official
repo: 'https://github.com/milkeybabes/Alien3-C64'
development: complete
status: playable
content: free
langs:
- Assembly
licenses:
- As-is
info: Alien3 Commodore C64 Source Code.
added: 2026-01-12
updated: 2026-01-12
images:
- https://www.vintageisthenewold.com/wp-content/uploads/2019/05/71811-Alien_3_E-1496684132.png
- name: Aliens
originals:
- Galaxian
type: clone
repo: 'http://www.newbreedsoftware.com/aliens/download/'
url: 'http://www.newbreedsoftware.com/aliens/'
development: complete
status: playable
content: open
langs:
- C
licenses:
- GPL2
info: An arcade-style shooting game for the Agenda VR3 PDA.
added: 2025-10-21
updated: 2025-10-21
images:
- https://web.archive.org/web/20250211170143if_/http://www.newbreedsoftware.com/aliens/screenshots/title.gif
- https://web.archive.org/web/20250211170144if_/http://www.newbreedsoftware.com/aliens/screenshots/help.gif
- https://web.archive.org/web/20250211170144if_/http://www.newbreedsoftware.com/aliens/screenshots/swooping.gif
- https://web.archive.org/web/20250211170143if_/http://www.newbreedsoftware.com/aliens/screenshots/marching.gif
- name: Aliens Vs Predator source update
originals:
- Aliens Versus Predator
type: remake
repo: 'https://app.assembla.com/spaces/AvP/trac_subversion_tool'
url: >-
https://web.archive.org/web/20130118133414/http://homepage.eircom.net/~duncandsl/avp/
development: halted
status: playable
content: commercial
langs:
- C
- C++
licenses:
- Custom
added: 2025-11-07
updated: 2025-11-07
- name: Aliens vs. Predator Gold
originals:
- Aliens Versus Predator
type: official
repo: 'https://github.com/miohtama/aliens-vs-predator'
url: >-
https://web.archive.org/web/20151026223517/http://www.gamefront.com/files/10029302/AvP_Gold_Complete_Source_Code
development: complete
status: playable
content: commercial
langs:
- C
- C++
licenses:
- As-is
added: 2025-11-27
updated: 2025-11-27
- name: Alienwave
originals:
- Xenon
type: clone
url: 'https://www.alessandropira.org/alienwave/aw.html'
development: halted
status: playable
langs:
- C
frameworks:
- ncurses
licenses:
- GPL2
added: 2025-11-12
updated: 2025-11-12
images:
- 'https://www.alessandropira.org/img/aw.jpg'
- name: Allegiance
originals:
- Allegiance
type: official
repo: 'https://github.com/videogamepreservation/allegiance'
url: >-
https://web.archive.org/web/20100328134708/http://www.microsoft.com/games/allegiance/home.htm
development: complete
status: playable
multiplayer:
- Online
content: free
langs:
- C++
licenses:
- Custom
added: 2025-12-17
updated: 2025-12-17
- name: allegro blasteroids
originals:
- Blasteroids
type: clone
repo: 'https://github.com/lucasew/allegro_blasteroids'
url: 'https://aur.archlinux.org/packages/allegro-blasteroids-git'
feed: 'https://github.com/lucasew/allegro_blasteroids/releases.atom'
development: sporadic
status: playable
content: free
langs:
- C
frameworks:
- Allegro
licenses:
- As-is
added: 2025-07-28
updated: 2025-07-28
images:
- https://raw.githubusercontent.com/lucas59356/allegro_blasteroids/master/doc/jogo.png
- name: Allenroids
originals:
- Asteroids
type: clone
url: 'https://allenmonroesmith.bitbucket.io/Allenroids/'
development: halted
status: playable
multiplayer:
- Competitive
content: free
langs:
- C++
frameworks: