-
Notifications
You must be signed in to change notification settings - Fork 317
/
l.yaml
1071 lines (1020 loc) · 24.7 KB
/
l.yaml
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: l-echo
langs:
- C++
frameworks:
- OpenGL
licenses:
- GPL3
development: halted
originals:
- Echochrome
status: playable
repo: https://github.com/LibreGamesArchive/l-echo
type: remake
added: 2015-04-15
updated: 2022-09-25
images:
- https://www.gamebrew.org/images/a/a3/Necho2.png
- name: LAB3D/SDL
images:
- https://icculus.org/LAB3D/captur00.png
- https://icculus.org/LAB3D/captur04.png
- https://icculus.org/LAB3D/captur02.png
- https://icculus.org/LAB3D/captur03.png
langs:
- C
frameworks:
- SDL
- OpenGL
licenses:
- Custom
content: free
development: halted
originals:
- Ken's Labyrinth
status: playable
repo: https://svn.icculus.org/LAB3D/
type: remake
added: 2015-04-10
updated: 2022-03-19
url: https://icculus.org/LAB3D/
- name: LAB3D/SDL (ktpanda)
originals:
- Ken's Labyrinth
type: remake
repo: 'https://gitlab.com/ktpanda/lab3d-sdl/'
url: 'https://ktpanda.org/software/lab3d_sdl/'
development: halted
status: playable
content: free
langs:
- C
frameworks:
- SDL2
licenses:
- Custom
info: >-
This is an enhanced version of LAB3D-SDL which includes hi-res texture support
and other enhancements.
added: '2022-05-24'
updated: '2022-05-24'
images:
- 'https://ktpanda.org/software/lab3d_sdl/images/shot00.jpeg'
- 'https://ktpanda.org/software/lab3d_sdl/images/shot01.jpeg'
- 'https://ktpanda.org/software/lab3d_sdl/images/shot02.jpeg'
- 'https://ktpanda.org/software/lab3d_sdl/images/shot03.jpeg'
- 'https://ktpanda.org/software/lab3d_sdl/images/shot04.jpeg'
- name: Ladder
info: (source inside JAR file)
langs:
- Java
licenses:
- GPL2
originals:
- Ladder
status: playable
type: remake
added: 2015-05-09
updated: 2015-05-10
url: https://ostermiller.org/ladder/
development: halted
- name: ladder
images:
- https://raw.githubusercontent.com/SmallRoomLabs/ladder/master/images/GameRunning1.png
langs:
- Go
licenses:
- MIT
development: halted
originals:
- Ladder
status: semi-playable
repo: https://github.com/mengstr/ladder
type: remake
added: 2016-02-26
updated: 2016-02-26
- name: Laser Kombat
originals:
- LaserTank
type: clone
repo: 'https://github.com/sharkwouter/laserkombat'
development: complete
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
info: Modern port of the 1999 Laser Tank clone
added: 2023-01-30
updated: 2024-09-05
images:
- >-
https://raw.githubusercontent.com/sharkwouter/laserkombat/master/laserkombat.jpg
- name: LaserTank
originals:
- LaserTank
type: official
repo: 'https://laser-tank.com/ltank_en.html'
url: 'https://laser-tank.com'
development: complete
status: playable
content: free
langs:
- C
licenses:
- Custom
added: '2024-09-11'
updated: '2024-09-11'
images:
- 'https://laser-tank.com/images/anim.gif'
- 'https://laser-tank.com/images/easy-01.png'
- 'https://laser-tank.com/images/hard-01.png'
- 'https://laser-tank.com/images/hard-02.png'
- 'https://laser-tank.com/images/hard-03.png'
- 'https://laser-tank.com/images/hard-04.png'
- name: LastNinja
images:
- https://lastninja.sourceforge.net/images/lvl1.png
langs:
- C++
licenses:
- GPL3
content: commercial
development: halted
originals:
- The Last Ninja
repo: https://sourceforge.net/projects/lastninja/
status: semi-playable
type: remake
added: 2013-11-20
updated: 2023-01-28
url: https://lastninja.sourceforge.net
info: the first level of the game is completable (however enemy weapons are not visible)
- name: LastTry
frameworks:
- libGDX
langs:
- Java
licenses:
- MIT
development: halted
originals:
- Terraria
status: unplayable
repo: https://github.com/egordorichev/LastTry
type: remake
added: 2017-10-15
updated: 2021-11-20
images:
- https://i.imgur.com/Q2P7a42.png
- name: LBA1 Classic (Community)
originals:
- Little Big Adventure
type: remake
repo: https://github.com/LBALab/lba1-classic-community
development: sporadic
status: unplayable
langs:
- Assembly
licenses:
- GPL2
content: commercial
info: >-
Official source code of the original game's engine (not a remake). This is
the community-enhanced version of the repository.
added: 2021-10-29
updated: 2023-08-08
- name: LBA2 Classic (Community)
originals:
- Little Big Adventure 2
type: remake
repo: https://github.com/LBALab/lba2-classic-community
development: halted
status: unplayable
langs:
- Assembly
licenses:
- GPL2
content: commercial
info: >-
Official source code of the original game's engine (not a remake). This is
the community-enhanced version of the repository.
added: 2021-10-29
updated: 2023-08-08
- name: LBA2 Remake
originals:
- Little Big Adventure 2
type: remake
repo: https://github.com/LBALab/lba2remake
development: very active
status: semi-playable
content: commercial
langs:
- TypeScript
frameworks:
- three.js
- React
licenses:
- MIT
added: 2020-11-24
updated: 2020-11-24
images:
- >-
https://raw.githubusercontent.com/agrande/lba2remake/master/doc/images/screenshot_game.jpeg
- >-
https://raw.githubusercontent.com/agrande/lba2remake/master/doc/images/screenshot_editor.jpeg
- name: LBreakoutHD
originals:
- Breakout
type: clone
repo: https://sourceforge.net/projects/lgames/
url: https://lgames.sourceforge.io/LBreakoutHD/
development: very active
status: playable
content: open
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
info: >-
LBreakoutHD is a scaleable 16:9 remake of LBreakout2. You try to clear levels
full of different types of bricks and extras by using your paddle to aim balls
at the bricks. All LBreakout2 themes and levelsets work. New themes can be of
any resolution.
added: 2019-12-02
updated: 2024-09-30
images:
- https://lgames.sourceforge.io/LBreakoutHD/ss0.jpg
- https://lgames.sourceforge.io/LBreakoutHD/ss1.jpg
- https://lgames.sourceforge.io/LBreakoutHD/ss2.jpg
- name: 'Legacy of Kain: Soul Reaver Decompile'
originals:
- 'Legacy of Kain: Soul Reaver'
type: remake
repo: 'https://github.com/Gh0stBlade/KAIN2'
url: 'https://legacyofkain.co.uk/KAIN2/'
development: sporadic
status: semi-playable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- As-is
added: 2024-03-09
updated: 2024-09-19
images:
- >-
https://camo.githubusercontent.com/01220600740cd9efbedb230a095fe8321a30f8f79327f10eeb59bcba4b3f3178/68747470733a2f2f692e696d6775722e636f6d2f534132537755422e706e67
- >-
https://camo.githubusercontent.com/1796e54a4e4bdc52ace2a8fa0edd3a0818d1947d6d83451b0838065a07dab546/68747470733a2f2f692e696d6775722e636f6d2f6e315243774d6d2e706e67
- >-
https://camo.githubusercontent.com/6001ecdea42d3c6ba6265b5168b6f0dbe2af93165df0c9bd2718565284d84a6f/68747470733a2f2f692e696d6775722e636f6d2f346767496a5a502e706e67
- name: The Legend Of Zelda - Navi's Quest
frameworks:
- Solarus
langs:
- C++
licenses:
- As-is
development: complete
originals:
- Legend of Zelda - A Link to the Past
status: playable
type: clone
added: 2015-09-27
updated: 2015-09-27
url: http://www.zeldaroth.fr/us/dlnsq.php
video:
youtube: HkpQpoQ8LGM
- name: 'The Legend of Zelda: Ocarina of Time'
originals:
- 'The Legend of Zelda: Ocarina of Time'
type: remake
repo: 'https://github.com/zeldaret/oot'
url: https://zelda64.dev/games/oot
development: active
status: unplayable
licenses:
- As-is
content: commercial
langs:
- C
added: 2021-12-12
updated: 2021-12-12
- name: The Legend Of Zelda - Oni Link Begins
langs:
- C++
frameworks:
- Solarus
licenses:
- As-is
development: complete
originals:
- Legend of Zelda - A Link to the Past
status: playable
type: clone
added: 2015-09-27
updated: 2015-09-27
url: http://www.zeldaroth.fr/us/zolb.php
video:
youtube: ATCSf3o19RY
- name: The Legend Of Zelda - Picross
langs:
- C++
frameworks:
- Solarus
licenses:
- As-is
development: complete
originals:
- Legend of Zelda - A Link to the Past
status: playable
type: clone
added: 2015-09-27
updated: 2015-09-27
url: http://www.zeldaroth.fr/us/dlpicross.php
- name: The Legend Of Zelda - Return Of The Hylian
langs:
- C++
frameworks:
- Solarus
licenses:
- As-is
development: complete
originals:
- Legend of Zelda - A Link to the Past
status: playable
type: clone
added: 2015-09-27
updated: 2015-09-27
url: http://www.zeldaroth.fr/us/zroth.php
video:
youtube: DUmeln2kDTg
- name: The Legend Of Zelda - Time To Triumph
langs:
- C++
frameworks:
- Solarus
licenses:
- As-is
development: complete
originals:
- Legend of Zelda - A Link to the Past
status: playable
type: clone
added: 2015-09-27
updated: 2015-09-27
url: http://www.zeldaroth.fr/us/z3t.php
video:
youtube: biPY10UcDy8
- name: legion
frameworks:
- Irrlicht
langs:
- C++
licenses:
- Custom
development: halted
originals:
- Legion
status: unplayable
repo: https://github.com/mahho/legion
type: remake
added: 2015-06-22
updated: 2015-06-22
- name: LegionGame
type: remake
originals:
- Legion
repo: https://github.com/bsoja/LegionGame
development: halted
status: unplayable
langs:
- C#
frameworks:
- MonoGame
licenses:
- GPL3
content: open
added: 2019-03-21
updated: 2024-09-23
images:
- https://raw.githubusercontent.com/bsoja/LegionGame/master/data/screenshots/legion-debug.png
- https://raw.githubusercontent.com/bsoja/LegionGame/master/data/screenshots/legion-info-pl.png
- https://raw.githubusercontent.com/bsoja/LegionGame/master/data/screenshots/legion-info-en.png
- https://raw.githubusercontent.com/bsoja/LegionGame/master/data/screenshots/legion-terrain.png
- name: Lemmings.ts
images:
- https://raw.githubusercontent.com/tomsoftware/Lemmings.ts/master/docu/examples/demo_01.png
- https://raw.githubusercontent.com/tomsoftware/Lemmings.ts/master/docu/examples/demo_02.png
langs:
- TypeScript
frameworks:
- Vue.js
licenses:
- MIT
content: commercial
development: complete
originals:
- Lemmings
repo: https://github.com/tomsoftware/Lemmings.ts
url: https://lemmings.hmilch.net/lemmings.html
status: playable
type: remake
added: 2017-10-22
updated: 2023-08-09
- name: Lemmini
images:
- https://happypenguin.altervista.org/screenshots/lemmini.png
langs:
- Java
licenses:
- Apache
content: commercial
development: halted
originals:
- Lemmings
repo: https://bitbucket.org/fade0ff/lemmini
status: playable
type: remake
added: 2017-08-18
updated: 2023-01-28
url: http://lemmini.de/
- name: Lemmix
langs:
- Delphi
licenses:
- Custom
content: commercial
development: halted
originals:
- Lemmings
repo: https://github.com/ericlangedijk/Lemmix
status: playable
type: remake
added: 2008-03-10
updated: 2020-08-25
video:
youtube: 5cNXhgSa9AI
- name: LGeneral
images:
- https://lgames.sourceforge.io/LGeneral/ss0.jpg
- https://lgames.sourceforge.io/LGeneral/ss1.jpg
- https://lgames.sourceforge.io/LGeneral/ss2.jpg
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Panzer General
repo: https://sourceforge.net/projects/lgeneral/
status: playable
type: remake
added: 2013-05-30
updated: 2023-01-28
url: https://lgames.sourceforge.io/LGeneral/
- name: LibDay
originals:
- Liberation Day
type: remake
repo: https://github.com/gitter-badger/LibDay
url: https://gamesnippets.wordpress.com/
development: halted
status: unplayable
content: commercial
langs:
- C#
frameworks:
- Unity
licenses:
- MIT
added: 2019-07-08
updated: 2020-08-25
images:
- https://gamesnippets.wordpress.com/wp-content/uploads/2017/04/11.png
- name: libRealSpace
images:
- https://raw.githubusercontent.com/fabiensanglard/libRealSpace/master/pics/nice_sc_scene.png
- https://raw.githubusercontent.com/fabiensanglard/libRealSpace/master/pics/F-22.png
- https://raw.githubusercontent.com/fabiensanglard/libRealSpace/master/pics/face.png
langs:
- C++
frameworks:
- SDL2
licenses:
- As-is
development: halted
originals:
- Strike Commander
repo: https://github.com/fabiensanglard/libRealSpace
type: tool
content: commercial
added: 2014-01-05
updated: 2019-04-15
url: https://fabiensanglard.net/reverse_engineering_strike_commander/index.php
info: Tools to parse and render Origin Systems RealSpace engine assets.
- name: Librelancer
frameworks:
- OpenGL
- SDL2
- .NET
images:
- https://librelancer.net/assets/images/slideshow1.jpeg
- https://librelancer.net/assets/images/slideshow2.jpeg
- https://librelancer.net/assets/images/slideshow3.jpeg
- https://librelancer.net/assets/images/slideshow4.jpeg
- https://librelancer.net/assets/images/slideshow5.jpeg
langs:
- C#
licenses:
- MIT
development: active
status: semi-playable
originals:
- Freelancer
type: remake
added: 2016-05-23
updated: 2024-10-02
repo: https://github.com/Librelancer/Librelancer
url: https://librelancer.net/
info: As of 2024, the first mission of the game (Mission 01A) can be played through.
- name: LibreMines
frameworks:
- Qt
images:
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot0.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot1.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot2.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot3.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot4.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot5.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot6.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot7.png
- https://raw.githubusercontent.com/Bollos00/LibreMines/master/share/Screenshots/Screenshot8.png
langs:
- C++
licenses:
- GPL3
development: sporadic
status: playable
content: open
originals:
- Minesweeper
type: clone
added: 2021-09-25
updated: 2023-08-10
repo: https://github.com/Bollos00/LibreMines
url: https://bollos00.github.io/LibreMines/
- name: LibreQuake
originals:
- Quake
type: remake
repo: https://github.com/lavenderdotpet/LibreQuake
feed: https://github.com/lavenderdotpet/LibreQuake/releases.atom
url: https://librequake.queer.sh
development: active
status: semi-playable
content: open
langs:
- Python
licenses:
- BSD
info: >-
A project to create a libre game data replacement for the Quake engine, based
on Lovecraftian aesthetic.
images:
- https://librequake.queer.sh/media/screenshot01.png
- https://librequake.queer.sh/media/screenshot02.png
- https://librequake.queer.sh/media/screenshot03.png
- https://librequake.queer.sh/media/screenshot04.png
- https://librequake.queer.sh/media/screenshot05.png
added: 2021-08-25
updated: 2024-07-28
- name: Librerama
frameworks:
- Godot
images:
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/punchbag_wallop.png
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/carnival_shootout.png
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/rope_hop.png
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/neo_highway.png
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/anagogic_clock.png
- https://codeberg.org/Librerama/librerama/raw/branch/master/distribution/screenshots/void_avoider.png
langs:
- GDScript
licenses:
- GPL3
development: sporadic
status: playable
content: open
originals:
- WarioWare
repo: https://codeberg.org/Librerama/librerama
type: clone
added: 2020-04-25
updated: 2024-10-05
url: https://yeldham.itch.io/librerama
- name: Lincity
images:
- https://lincity.sourceforge.net/screenshots/power.png
- https://lincity.sourceforge.net/screenshots/power+pollution.png
- https://lincity.sourceforge.net/screenshots/fire.png
langs:
- C
licenses:
- GPL2
content: open
development: halted
status: playable
originals:
- SimCity
repo: https://sourceforge.net/projects/lincity/
type: clone
url: https://lincity.sourceforge.net/
added: 2011-07-15
updated: 2021-02-08
- name: LinCity-NG
images:
- https://www.linuxlinks.com/wp-content/uploads/2022/05/LinCity-NG.png
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
content: open
development: very active
status: playable
originals:
- SimCity
repo: https://github.com/lincity-ng/lincity-ng
feed: https://github.com/lincity-ng/lincity-ng/releases.atom
type: clone
added: 2011-06-15
updated: 2024-10-07
video:
youtube: vLmiqLxD2Eo
- name: LinWarrior
images:
- https://www.hackcraft.de/games/linwarrior_3d/screenshots/20110417.jpg
langs:
- C++
frameworks:
- OpenGL
- SDL
licenses:
- Apache
development: halted
originals:
- MechWarrior
repo: https://github.com/hackcraft-de/linwarrior
type: clone
added: 2015-04-03
updated: 2019-05-04
url: https://www.hackcraft.de/games/linwarrior_3d/index.htm
status: playable
content: free
video:
youtube: JcakGQ6X3sU
- name: Lionheart Remake
images:
- https://www.b3dgs.com/v7/projects/lionheart_remake/screens/1.png
- https://www.b3dgs.com/v7/projects/lionheart_remake/screens/2.png
- https://www.b3dgs.com/v7/projects/lionheart_remake/screens/3.png
langs:
- Java
licenses:
- GPL3
content: free
development: sporadic
originals:
- Lionheart
status: playable
multiplayer:
- Local
- Split-screen
- Co-op
- Competitive
repo: https://github.com/b3dgs/lionheart-remake
feed: https://github.com/b3dgs/lionheart-remake/releases.atom
type: remake
added: 2015-04-12
updated: 2023-08-11
url: https://lionheart.b3dgs.com
- name: Little Big Adventure 1 - Engine source code
originals:
- Little Big Adventure
type: official
repo: 'https://github.com/2point21/lba1-classic'
development: complete
status: playable
content: commercial
langs:
- Assembly
- C
licenses:
- GPL2
added: 2023-02-28
updated: 2024-07-06
- name: Little Big Adventure 2 - Engine source code
originals:
- Little Big Adventure 2
type: official
repo: 'https://github.com/2point21/lba2-classic'
development: complete
status: playable
content: commercial
langs:
- Assembly
- C
licenses:
- GPL2
added: 2023-03-01
updated: 2024-07-06
- name: Lix
frameworks:
- Allegro
langs:
- C++
licenses:
- CC0
development: halted
originals:
- Lemmings
repo: https://github.com/SimonN/Lix
status: playable
type: clone
added: 2013-05-30
updated: 2018-01-15
url: https://www.lixgame.com
info: obsolete; continued as LixD
video:
youtube: dWXXK8QlnME
- name: LixD
development: sporadic
frameworks:
- Allegro
images:
- https://www.lixgame.com/img/lix-d-screenshot.png
info: Updated port of Lix to D and Allegro 5
langs:
- D
licenses:
- CC0
multiplayer:
- Online
- Competitive
content: open
originals:
- Lemmings
repo: https://github.com/SimonN/LixD
feed: https://github.com/SimonN/LixD/releases.atom
status: playable
type: clone
added: 2018-01-15
updated: 2018-01-15
url: https://www.lixgame.com/
- name: LMarbles
originals:
- Atomix
type: clone
repo: 'https://sourceforge.net/projects/lgames/'
url: 'https://lgames.sourceforge.io/LMarbles/'
feed: 'https://sourceforge.net/p/lgames/activity/feed'
development: complete
status: playable
content: open
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
added: 2019-12-04
updated: 2019-12-04
images:
- 'https://lgames.sourceforge.io/LMarbles/ss0.jpg'
- 'https://lgames.sourceforge.io/LMarbles/ss1.jpg'
- 'https://lgames.sourceforge.io/LMarbles/ss2.jpg'
video:
youtube: pSdXftkK7M0
- name: Lode Runner - Total Recall
langs:
- JavaScript
frameworks:
- CreateJS
licenses:
- As-is
development: complete
originals:
- Lode Runner
status: playable
repo: https://github.com/SimonHung/LodeRunner_TotalRecall
type: remake
added: 2015-08-15
updated: 2023-08-13
url: https://loderunnerwebgame.com/LodeRunner/
video:
youtube: 277m7navGRQ
- name: Lode Runner 2020
originals:
- Lode Runner
type: remake
repo: 'https://github.com/Ma-Pe-Ma/Lode-Runner-2020'
development: complete
status: playable
langs:
- C++
frameworks:
- OpenGL
licenses:
- MIT
content: commercial
images:
- https://raw.githubusercontent.com/Ma-Pe-Ma/Lode-Runner-2020/master/Screenshots/Original.png
- https://raw.githubusercontent.com/Ma-Pe-Ma/Lode-Runner-2020/master/Screenshots/Championship.png
- https://raw.githubusercontent.com/Ma-Pe-Ma/Lode-Runner-2020/master/Screenshots/Original-Gameplay.png
- https://raw.githubusercontent.com/Ma-Pe-Ma/Lode-Runner-2020/master/Screenshots/Championship-Gameplay.png
added: 2022-01-04
updated: 2024-01-14
url: https://mapema.hu/en/docs/hobby/lode-runner/game/
video:
youtube: i1yjls2AzKk
- name: Lose Your Marbles
langs:
- JavaScript
frameworks:
- Phaser
licenses:
- MIT
content: free
development: halted
originals:
- Lose Your Marbles
status: playable
repo: https://github.com/eguneys/lose-your-marbles
type: clone
added: 2015-04-12
updated: 2022-05-23
- name: LostVikings
originals:
- The Lost Vikings
type: remake
repo: 'https://github.com/akaWolf/LostVikings'
development: halted
status: semi-playable
content: commercial
langs:
- C++
frameworks:
- SDL2
licenses:
- As-is
info: Translated and rewritten DOS version of Lost Vikings
added: '2023-09-02'
updated: '2023-09-02'
- name: LOZ
originals:
- Legend of Zelda
type: remake
repo: 'https://github.com/aldonunez/Loz'
development: halted
status: playable
content: commercial
langs:
- C++
- 'C#'
frameworks:
- Allegro
licenses:
- Apache
added: 2022-01-06
updated: 2023-08-14
- name: LTJS
frameworks:
- SDL2
langs:
- C++
development: active
status: unplayable
originals:
- No One Lives Forever 2
repo: https://github.com/bibendovsky/ltjs
type: remake
licenses:
- As-is
content: commercial
added: 2022-02-15
updated: 2024-10-23
- name: lttp-phaser
frameworks:
- WebGL
- Phaser
langs:
- TypeScript
licenses:
- MIT
content: commercial
development: halted
originals:
- Legend of Zelda - A Link to the Past
status: unplayable
repo: https://github.com/englercj/lttp
type: remake
added: 2015-05-28
updated: 2020-08-31
- name: Lugaru HD
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- GPL2
- CC-BY-SA
content: open
development: halted
originals:
- "Lugaru: The Rabbit's Foot"
status: playable
repo: https://gitlab.com/osslugaru/lugaru
type: official
added: 2015-04-11