-
Notifications
You must be signed in to change notification settings - Fork 420
Expand file tree
/
Copy pathk.yaml
More file actions
1130 lines (1079 loc) · 27.7 KB
/
k.yaml
File metadata and controls
1130 lines (1079 loc) · 27.7 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: K8Vavoom
originals:
- Doom
- Heretic
- Hexen
- Strife
type: remake
repo: 'https://repo.or.cz/k8vavoom.git'
url: 'https://doomer.boards.net/thread/2260'
feed: 'https://repo.or.cz/k8vavoom.git/atom'
development: halted
status: playable
content: commercial
langs:
- C++
frameworks:
- OpenGL
- DirectX
licenses:
- GPL3
info: Based on Vavoom
added: 2026-02-19
updated: 2026-02-19
images:
- https://files.catbox.moe/cvuvzu.png
- https://files.catbox.moe/yhgwkh.png
- https://files.catbox.moe/3k2jl8.png
video:
youtube: ZGFT-4NLEHM
- name: Kaboom! Disassembly
originals:
- Kaboom!
type: remake
repo: 'https://www.qotile.net/minidig/disassembly/kaboom.asm'
url: 'https://www.romhacking.net/documents/512/'
development: complete
status: playable
langs:
- Assembly
licenses:
- As-is
added: 2025-11-04
updated: 2025-11-04
- name: Kaiser II
originals:
- Kaiser II
type: official
repo: 'https://kaiser2.strotmann.de/#org6e5c563'
url: >-
https://web.archive.org/web/20171027231602/http://www.abbuc.de/news-feeds-component/608-608
development: complete
status: playable
multiplayer:
- Hotseat
content: open
langs:
- BASIC
licenses:
- GPL2
added: 2026-01-10
updated: 2026-01-10
images:
- https://kaiser2.strotmann.de/img/kaiserpic1.png
- https://kaiser2.strotmann.de/img/kaiserpic2.png
- https://kaiser2.strotmann.de/img/kaiserpic3.png
- https://kaiser2.strotmann.de/img/kaiserpic4.png
- https://kaiser2.strotmann.de/img/kaiserpic6.png
- https://kaiser2.strotmann.de/img/kaiserpic7.png
- name: Kaiser von Deutschland
originals:
- Kaiser
type: clone
repo: 'https://github.com/Thomas-Heisig/Kaiser_von_Deutschland'
development: active
status: playable
multiplayer:
- Online
- LAN
content: open
langs:
- TypeScript
frameworks:
- PixiJS
licenses:
- MIT
added: 2026-01-15
updated: 2026-01-15
- name: Kajaani Kombat
originals:
- Rampart
type: similar
repo: >-
https://web.archive.org/web/20161024134148/http://kombat.kajaani.net/download.php
url: 'https://web.archive.org/web/20190713015809/http://kombat.kajaani.net/'
development: halted
status: playable
multiplayer:
- Local
- Online
langs:
- C
frameworks:
- SDL
licenses:
- GPL2
added: 2025-06-24
updated: 2025-06-24
images:
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/0666_flame.png
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/06_chselect.png
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/06_bigcannons.png
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/04_repair.png
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/04_choose.png
- >-
https://web.archive.org/web/20190428053755im_/http://kombat.kajaani.net/ss/02_shoot.png
- name: KaM Remake
images:
- https://www.kamremake.com/wp-content/uploads/2014/01/menu.png
- https://www.kamremake.com/wp-content/uploads/2014/01/tsk4map.png
- https://www.kamremake.com/wp-content/uploads/2014/01/tsk4.png
langs:
- Delphi
frameworks:
- OpenGL
licenses:
- AGPL3
content: open
development: active
status: playable
originals:
- Knights and Merchants
repo: https://github.com/reyandme/kam_remake
type: remake
added: 2012-04-06
updated: 2025-01-07
url: http://www.kamremake.com/
feed: https://www.kamremake.com/feed/
video:
youtube: cjBwh0LLUFk
- name: Kamikaze
originals:
- Bomberman
type: clone
url: 'http://kamikaze.coolprojects.org/'
development: halted
status: playable
multiplayer:
- Online
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
added: 2025-11-09
updated: 2025-11-09
images:
- https://web.archive.org/web/20160319012336if_/http://kamikaze.coolprojects.org/shots/splash.png
- https://web.archive.org/web/20160318230752if_/http://kamikaze.coolprojects.org/shots/levels.png
- https://web.archive.org/web/20160318211944if_/http://kamikaze.coolprojects.org/shots/theme-dyna.png
- https://web.archive.org/web/20160319025440if_/http://kamikaze.coolprojects.org/shots/theme-desert.png
- name: Kanixian
originals:
- Galaxian
type: clone
repo: 'https://github.com/Hiekichi/Kanixian'
development: halted
status: playable
content: free
langs:
- Python
frameworks:
- Pyxel
licenses:
- As-is
added: 2026-02-22
updated: 2026-02-22
images:
- https://cdn-ak.f.st-hatena.com/images/fotolife/H/Hiesuke/20240521/20240521231058.png
- https://cdn-ak.f.st-hatena.com/images/fotolife/H/Hiesuke/20240522/20240522233646.gif
- name: Kapman
originals:
- Pac-Man
type: clone
repo: 'https://invent.kde.org/games/kapman'
url: 'https://apps.kde.org/kapman/'
feed: 'https://apps.kde.org/kapman/index.xml'
development: active
status: playable
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
added: 2025-08-28
updated: 2025-08-28
images:
- 'https://cdn.kde.org/screenshots/kapman/kapman.png'
- name: Kartering
frameworks:
- SDL2
langs:
- C
licenses:
- GPL2
- MIT
- ISC
development: halted
originals:
- Mario Kart
status: semi-playable
repo: https://github.com/sandsmark/kart
type: similar
updated: 2022-09-20
info: 2D racing game inspired by Mario Kart. Network play only, designed as a programming game, but supports human controls.
images:
- https://raw.githubusercontent.com/sandsmark/kart/master/startscreen.png
- https://raw.githubusercontent.com/sandsmark/kart/master/screenshot.png
- name: 'Katawa Shoujo: Re-Engineered'
originals:
- Katawa Shoujo
type: remake
repo: 'https://codeberg.org/fhs/katawa-shoujo-re-engineered'
url: 'https://www.fhs.sh/projects/ksre'
feed: 'https://codeberg.org/fhs/katawa-shoujo-re-engineered/releases.atom'
development: very active
status: playable
content: free
langs:
- Python
frameworks:
- "Ren'Py"
licenses:
- MPL
added: 2025-07-04
updated: 2025-07-04
- name: Kathodos
frameworks:
- Panda3D
langs:
- Python
licenses:
- As-is
content: commercial
development: halted
originals:
- Descent
- Descent II
status: unplayable
repo: https://github.com/jvranish/Kathodos
type: remake
updated: 2022-09-20
- name: KAtomic
images:
- https://cdn.kde.org/screenshots/katomic/katomic.png
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
development: active
originals:
- Atomix
status: playable
repo: https://invent.kde.org/games/katomic
type: remake
updated: 2022-09-20
url: https://apps.kde.org/katomic/
- name: KBreakOut
originals:
- Breakout
type: clone
repo: 'https://invent.kde.org/games/kbreakout'
url: 'https://apps.kde.org/kbreakout/'
feed: 'https://apps.kde.org/kbreakout/index.xml'
development: sporadic
status: playable
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
added: 2025-07-30
updated: 2025-07-30
images:
- 'https://kde.org/images/screenshots/kbreakout.png'
- name: Keen Dreams
langs:
- C
licenses:
- GPL2
content: commercial
development: complete
originals:
- Commander Keen Series
status: playable
repo: https://github.com/keendreams/keen
type: official
updated: 2022-09-20
video:
youtube: 23SahL6eG6A
- name: KeeperFX
langs:
- C
frameworks:
- SDL2
licenses:
- GPL2
content: commercial
development: very active
originals:
- Dungeon Keeper
status: playable
multiplayer:
- Local
- Online
- LAN
repo: https://github.com/dkfans/keeperfx
type: remake
updated: 2023-12-19
url: https://keeperfx.net
images:
- 'https://keeperfx.net/screenshots/keeperfx-far-zoom.jpg'
- 'https://keeperfx.net/screenshots/keeperfx-new-map-scripts.png'
- 'https://keeperfx.net/screenshots/keeperfx-render-distance.png'
- 'https://keeperfx.net/screenshots/keeperfx-shift-room-creation.png'
video:
youtube: JwDdLynZPag
- name: kektris
originals:
- Tetris
type: similar
repo: 'https://github.com/KonstantinKlepikov/kektris'
url: 'https://konstantinklepikov.github.io/kektris/'
feed: 'https://pypi.org/rss/project/kektris/releases.xml'
development: halted
status: playable
langs:
- Python
frameworks:
- Pyxel
licenses:
- MIT
info: 4-quarter tetris.
added: 2026-02-04
updated: 2026-02-04
images:
- https://github.com/user-attachments/assets/23d55358-8966-4ca6-aeec-64d798d44f15
- name: Ken's Labyrinth
originals:
- Ken's Labyrinth
type: official
repo: 'https://advsys.net/ken/klab.htm?#labflsrc'
development: complete
status: playable
content: commercial
langs:
- C
licenses:
- Custom
added: 2025-11-17
updated: 2025-11-17
images:
- https://advsys.net/ken/klab/klabcap0.png
- https://advsys.net/ken/klab/klabcap1.png
- https://advsys.net/ken/klab/klabcap2.png
- https://advsys.net/ken/klab/klabcap3.png
- name: Ken's Labyrinth enhanced port for Nintendo Switch
originals:
- Ken's Labyrinth
type: remake
repo: 'https://github.com/sacredbanana/lab3d-sdl'
url: >-
https://gbatemp.net/threads/kens-labyrinth-enhanced-port-for-nintendo-switch.529434/
feed: 'https://github.com/sacredbanana/lab3d-sdl/releases.atom'
development: sporadic
status: playable
content: free
langs:
- C
frameworks:
- SDL
- OpenGL
licenses:
- Custom
added: 2025-11-23
updated: 2025-11-23
images:
- 'https://gbatemp.net/attachments/screen-png.155701/'
- name: Ken's Labyrinth port for Android OS
originals:
- Ken's Labyrinth
type: remake
repo: 'https://github.com/EXL/KenLab3d'
url: 'https://exlmoto.ru/kenlab3d-droid/'
feed: 'https://github.com/EXL/KenLab3d/releases.atom'
development: halted
status: playable
content: free
langs:
- C
frameworks:
- SDL2
- OpenGL
licenses:
- MIT
added: 2025-11-20
updated: 2025-11-20
images:
- https://raw.githubusercontent.com/EXL/KenLab3d/master/images/Ken_motorola_droid_4.jpg
- https://raw.githubusercontent.com/EXL/KenLab3d/master/images/Ken_android_screen.jpg
- https://exlmoto.ru/wp-content/Images/KENLAB/S2_l.png
- https://exlmoto.ru/wp-content/Images/KENLAB/S7_l.png
- https://exlmoto.ru/wp-content/Images/KENLAB/S11_l.png
- https://exlmoto.ru/wp-content/Images/KENLAB/S8_l.png
- https://exlmoto.ru/wp-content/Images/KENLAB/S9_l.png
video:
youtube: vnNax1uNLfo
- name: Kentris
originals:
- Kentris
type: official
repo: 'https://www.classicdosgames.com/game/Kentris.html'
development: complete
status: playable
multiplayer:
- Competitive
- Split-screen
content: free
langs:
- C
licenses:
- As-is
info: The game was updated to v4.3 in 2005 and released its source code.
added: 2026-01-01
updated: 2026-01-01
images:
- 'https://advsys.net/ken/kentris.png'
- 'https://www.classicdosgames.com/images/screenshots/cga06/Kentris.png'
- 'https://www.classicdosgames.com/images/screenshots/ega10/Kentris.png'
- 'https://www.classicdosgames.com/images/screenshots/vga12/Kentris.png'
- 'https://www.classicdosgames.com/images/screenshots/et400038/Kentris.png'
- name: KevEdit
type: tool
status: N/A
originals:
- ZZT
repo: https://github.com/cknave/kevedit
feed: https://github.com/cknave/kevedit/releases.atom
development: halted
langs:
- C
frameworks:
- SDL2
licenses:
- GPL2
info: Advanced world editor
added: 2020-06-26
updated: 2025-03-13
images:
- https://cloud.githubusercontent.com/assets/4196901/22183137/b51c68e6-e084-11e6-874d-3458041f4308.gif
- https://cloud.githubusercontent.com/assets/4196901/22183135/b515754a-e084-11e6-9fe3-2483eb67ca79.gif
- https://cloud.githubusercontent.com/assets/4196901/22183134/b514af02-e084-11e6-9ca7-7b21bedb479d.gif
- https://cloud.githubusercontent.com/assets/4196901/22183131/b5142230-e084-11e6-95c1-19133c677388.gif
- https://cloud.githubusercontent.com/assets/4196901/22183132/b5142208-e084-11e6-8ab1-568d217391ec.gif
- https://cloud.githubusercontent.com/assets/4196901/22183133/b51426b8-e084-11e6-8ce7-e01b7d6a06ed.gif
- https://cloud.githubusercontent.com/assets/4196901/22183136/b516dd4a-e084-11e6-8e9b-30201734480a.gif
- name: Kevin Toms Football Manager
originals:
- Football Manager
type: official
repo: 'https://github.com/philspil66/Kevin-Toms-Football-Manager'
development: complete
status: playable
langs:
- BASIC
licenses:
- As-is
added: 2026-03-13
updated: 2026-03-13
images:
- https://user-images.githubusercontent.com/14840708/139448284-9d290825-2143-449c-bc77-f62dd3bb78bd.png
- name: KFoulEggs
originals:
- Puyo Puyo Series
type: clone
repo: >-
https://web.archive.org/web/20140813201357/http://sourceforge.net/projects/kfouleggs/
url: 'https://web.archive.org/web/20100303052405/http://kfouleggs.sourceforge.net/'
development: halted
status: playable
multiplayer:
- Online
- LAN
content: open
langs:
- C++
licenses:
- GPL2
added: 2025-10-30
updated: 2025-10-30
images:
- https://web.archive.org/web/20060816051246if_/http://kfouleggs.sourceforge.net/images/screenshot_0.png
- name: KGoldrunner
frameworks:
- SDL2
images:
- https://cdn.kde.org/screenshots/kgoldrunner/kgoldrunner.png
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Lode Runner
repo: https://invent.kde.org/games/kgoldrunner
status: playable
type: remake
updated: 2021-11-20
url: https://apps.kde.org/kgoldrunner/
- name: KidChameleonRemake
langs:
- C#
licenses:
- As-is
development: halted
originals:
- Kid Chameleon
status: unplayable
repo: https://github.com/mp1011/KidChameleonRemake
type: remake
updated: 2022-09-20
- name: kiki the nano bot
originals:
- Sokoban
- Kula World
type: similar
repo: 'https://sourceforge.net/projects/kiki/'
url: 'https://kiki.sourceforge.net/'
feed: 'https://sourceforge.net/projects/kiki/rss?path=/'
development: complete
status: playable
langs:
- C++
- Python
frameworks:
- SDL
licenses:
- Custom
info: Basically a mixture of the games Sokoban and Kula World.
added: 2025-07-12
updated: 2025-07-12
images:
- 'https://kiki.sourceforge.net/screenshots/kiki_001.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_002.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_003.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_004.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_005.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_006.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_007.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_008.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_009.jpg'
- 'https://kiki.sourceforge.net/screenshots/kiki_010.jpg'
- name: Kiloblaster (SDL)
originals:
- Kiloblaster
type: remake
repo: 'https://github.com/Malvineous/kiloblaster'
url: https://repo.openpandora.org/?page=detail&app=kiloblaster_ptitseb
development: complete
status: playable
content: free
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
added: 2025-12-30
updated: 2025-12-30
images:
- https://repo.openpandora.org/files/pnd/kiloblaster_ptitseb/preview1.png
- https://repo.openpandora.org/files/pnd/kiloblaster_ptitseb/preview2.png
- https://repo.openpandora.org/files/pnd/kiloblaster_ptitseb/preview3.png
- name: Kiloblaster
originals:
- Kiloblaster
type: official
url: 'https://www.classicdosgames.com/game/Kiloblaster.html'
development: complete
status: playable
content: free
langs:
- C
licenses:
- Custom
added: 2025-11-27
updated: 2025-11-27
images:
- 'https://www.classicdosgames.com/images/screenshots/ega0d/Kiloblaster.png'
- 'https://www.classicdosgames.com/images/screenshots/vga13/Kiloblaster.png'
- name: King of the Hill
originals:
- Scorched Earth
type: similar
repo: 'https://savannah.nongnu.org/projects/koth/'
url: 'https://www.nongnu.org/koth/'
feed: 'https://savannah.nongnu.org/news/atom.php?group=koth'
development: halted
status: semi-playable
multiplayer:
- Competitive
- LAN
content: open
langs:
- C
licenses:
- GPL2
added: 2025-07-15
updated: 2025-07-15
images:
- 'https://www.nongnu.org/koth/kothlogo.png'
- 'https://www.nongnu.org/koth/koth-0.8.0_ingame1.png'
- 'https://www.nongnu.org/koth/koth-0.8.0_ingame2.png'
- 'https://www.nongnu.org/koth/koth-0.8.0_pregame1.png'
- 'https://www.nongnu.org/koth/koth-0.8.0_postgame1.png'
- name: King under the Mountain
originals:
- King under the Mountain
type: official
repo: 'https://github.com/rossturner/king-under-the-mountain'
development: complete
status: playable
content: open
langs:
- Java
frameworks:
- libGDX
licenses:
- MIT
added: '2024-05-25'
updated: '2024-05-25'
images:
- >-
https://cdn.mobygames.com/promos/5841981-king-under-the-mountain-screenshot.jpg
- >-
https://cdn.mobygames.com/promos/5858387-king-under-the-mountain-screenshot.jpg
- >-
https://cdn.mobygames.com/promos/5878705-king-under-the-mountain-screenshot.jpg
- >-
https://cdn.mobygames.com/promos/5852619-king-under-the-mountain-screenshot.jpg
- >-
https://cdn.mobygames.com/promos/5862012-king-under-the-mountain-screenshot.jpg
- name: Kingpin SDK
originals:
- 'Kingpin: Life of Crime'
type: official
repo: 'https://github.com/QuakeTools/Kingpin-SDK-v1.21'
url: 'https://download.kingpin.info/index.php?dir=kingpin/server/official/sdk/'
development: complete
status: playable
multiplayer:
- Online
content: commercial
langs:
- C
licenses:
- As-is
info: Kingpin SDK with game source code.
added: 2025-11-16
updated: 2025-11-16
- name: KittenMaxit
langs:
- Java
frameworks:
- libGDX
licenses:
- MIT
development: halted
originals:
- Maxit
status: playable
repo: https://github.com/ahmetkasif/kmaxit
type: remake
updated: 2022-09-20
images:
- https://i.imgur.com/3QvTDrN.png
- https://i.imgur.com/G1rezQr.png
- name: Klickety
originals:
- Clickomania!
type: clone
repo: 'https://github.com/serghei/kde3-kdegames/tree/master/klickety'
url: 'https://www.pling.com/p/1109433'
development: complete
status: playable
content: open
langs:
- C++
licenses:
- GPL2
added: 2025-07-26
updated: 2025-07-26
images:
- 'https://images.pling.com/img/00/00/07/66/37/1109433/133048-1.png'
- 'https://images.pling.com/img/00/00/07/66/37/1109433/133048-2.png'
- name: KLines2
originals:
- Lines
type: clone
repo: 'https://sourceforge.net/projects/klines2/'
url: 'https://klines2.sourceforge.net/'
feed: 'https://sourceforge.net/projects/klines2/rss?path=/'
development: halted
status: semi-playable
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
added: 2025-10-23
updated: 2025-10-23
images:
- 'https://klines2.sourceforge.net/screenshot.png'
- name: KMines
originals:
- Minesweeper
type: clone
repo: 'https://invent.kde.org/games/kmines'
url: 'https://apps.kde.org/kmines/'
feed: 'https://apps.kde.org/kmines/index.xml'
development: active
status: playable
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- GPL2
added: 2025-11-05
updated: 2025-11-05
images:
- 'https://cdn.kde.org/screenshots/kmines/kmines.png'
- name: KnightOfWor
langs:
- Java
licenses:
- GPL3
content: open
development: halted
originals:
- Wizard of Wor
status: semi-playable
repo: https://github.com/Sanguinik/KnightOfWor
url: https://www.sanguinik.de/2012/11/11/knight-of-wor-ein-wizard-of-wor-remake/
type: remake
updated: 2022-09-20
images:
- https://www.sanguinik.de/wp-content/uploads/2012/11/titlescreen.png
- https://www.sanguinik.de/wp-content/uploads/2012/11/spiel.png
- https://www.sanguinik.de/wp-content/uploads/2012/11/credits.png
- name: Knights
images:
- https://www.knightsgame.org.uk/images/knights1.png
- https://www.knightsgame.org.uk/images/knights2.png
- https://www.knightsgame.org.uk/images/knights3.png
- https://www.knightsgame.org.uk/images/knights4.png
- https://www.knightsgame.org.uk/images/knights5.png
- https://www.knightsgame.org.uk/images/quest_selection.png
langs:
- C++
licenses:
- GPL3
content: open
development: active
originals:
- Knights
status: playable
multiplayer:
- Online
type: remake
updated: 2022-07-13
url: https://www.knightsgame.org.uk/
- name: Knytt Stories DS
originals:
- Knytt Stories
type: remake
repo: 'https://github.com/Hugobros3/knyttds'
url: 'http://rodrigoroman.com/rrc2soft/nds_dsknytt.html'
development: halted
status: playable
content: free
langs:
- C
licenses:
- BSD
added: 2025-09-24
updated: 2025-09-24
images:
- 'https://web.archive.org/web/20240505142021if_/http://rodrigoroman.com/rrc2soft/ima/knyttds.png'
- name: KotOR.js
originals:
- 'Star Wars: Knights of the Old Republic'
- 'Star Wars: Knights of the Old Republic II – The Sith Lords'
type: remake
repo: 'https://github.com/KobaltBlu/KotOR.js'
url: 'https://swkotor.net/'
feed: 'https://github.com/KobaltBlu/KotOR.js/releases.atom'
development: active
status: semi-playable
content: commercial
langs:
- TypeScript
frameworks:
- React
- three.js
licenses:
- GPL3
added: 2025-07-18
updated: 2025-07-18
images:
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/KotOR-js-Launcher-001.jpg
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/K1-Screen-001.jpg
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/K1-Screen-002.jpg
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/K1-Screen-003.jpg
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/K2-Screen-001.jpg
- >-
https://raw.githubusercontent.com/KobaltBlu/KotOR.js/master/images/screenshots/K2-Screen-002.jpg
video:
youtube: ZT_9vKRC1t8
- name: KRaptor
originals:
- 'Raptor: Call of the Shadows'
type: clone
repo: https://sourceforge.net/projects/kraptor
development: complete
status: playable
content: open
langs:
- C
frameworks:
- Allegro
licenses:
- MIT
info: >-
Vertical scrolling shooter heavily inspired by Raptor: Call of the Shadows,
but not an exact recreation of that game.
updated: 2021-08-29
images:
- https://a.fsdn.com/con/app/proj/kraptor/screenshots/71665.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/kraptor/screenshots/71659.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/kraptor/screenshots/71663.jpg/max/max/1
- name: KRepton
originals:
- Repton 3
type: clone
repo: 'http://www.sigala.it/sandro/download.php#:~:text=krepton'
url: 'http://www.sigala.it/sandro/software.php#krepton'
development: complete
status: playable
content: open
langs:
- C++
frameworks:
- Qt
licenses:
- BSD4
added: 2026-03-10
updated: 2026-03-10
images:
- https://www.artsoft.org/rocksndiamonds/levels/martijnmooij/2010-03-16/www.bd-fans.com/Images/KRepton_big.jpg
- name: Kroz
originals:
- Kroz
type: official
repo: https://github.com/tangentforks/kroz
development: complete
status: playable
content: free
langs:
- Pascal
licenses:
- GPL2
info: Open-sourced by Apogee on 2009
updated: '2022-08-21'
- name: Krystal Drop
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- Magical Drop
status: playable
multiplayer:
- Competitive
- Local
repo: https://sourceforge.net/projects/krystaldrop/
type: remake
updated: 2022-07-11
url: http://krystaldrop.sourceforge.net/
- name: KSnakeDuel
originals:
- Tron
type: clone
repo: 'https://invent.kde.org/games/ksnakeduel'
url: 'https://apps.kde.org/ksnakeduel/'
development: active
status: playable
content: open
langs:
- C++
licenses:
- GPL2
added: 2025-07-28
updated: 2025-07-28
images:
- 'https://kde.org/images/screenshots/ksnakeduel.png'
- name: Kumquat
originals:
- Zolyx
type: remake
repo: 'https://generic.aminet.net/package/game/misc/Kumquat_src'
url: >-
https://web.archive.org/web/20231004232544/https://dscho.com/fruit/#:~:text=Kumquat
development: complete
status: playable
langs:
- AMOS BASIC
licenses:
- As-is
added: 2025-12-25
updated: 2025-12-25
images:
- https://web.archive.org/web/20240511164036im_/https://dscho.com/fruit/kumquat_title.png
- https://web.archive.org/web/20240511164033im_/https://dscho.com/fruit/kumquat_ingame.png