-
Notifications
You must be signed in to change notification settings - Fork 317
/
t.yaml
1055 lines (1001 loc) · 24.2 KB
/
t.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: Tabletop Club
originals:
- Tabletop Simulator
type: clone
repo: 'https://github.com/drwhut/tabletop-club'
url: 'https://drwhut.itch.io/tabletop-club'
feed: 'https://drwhut.itch.io/tabletop-club/devlog.rss'
development: sporadic
status: playable
multiplayer:
- Competitive
- Online
content: open
langs:
- GDScript
frameworks:
- Godot
licenses:
- MIT
updated: 2023-09-03
images:
- 'https://img.itch.zone/aW1hZ2UvMTYwMjM5My8xMDU0MjAxMy5wbmc=/original/vlCQUL.png'
- 'https://img.itch.zone/aW1hZ2UvMTYwMjM5My8xMDU0MjAxNi5wbmc=/original/NTGyyx.png'
- 'https://img.itch.zone/aW1hZ2UvMTYwMjM5My8xMDU0MjAxNS5wbmc=/original/GKLYCF.png'
- 'https://img.itch.zone/aW1hZ2UvMTYwMjM5My8xMDU0MjAxNC5wbmc=/original/KI92bw.png'
- >-
https://img.itch.zone/aW1hZ2UvMTYwMjM5My8xMDU0MjAxNy5wbmc=/original/weI%2FrN.png
- name: Taisei Project
development: very active
feed: https://taisei-project.org/news.atom
images:
- https://taisei-project.org/static/screenshots/005_1.2/taisei_20180127_16-46-39+0200.png
- https://taisei-project.org/static/screenshots/005_1.2/taisei_20180127_16-52-45+0200.png
langs:
- C
frameworks:
- SDL2
licenses:
- MIT
content: open
originals:
- Touhou
repo: https://github.com/taisei-project/taisei
status: playable
type: remake
updated: 2023-09-04
url: https://taisei-project.org/
video:
youtube: P22aVi0z6b8
- name: Tanglet
originals:
- Boggle
type: clone
url: 'https://gottcode.org/tanglet/'
development: sporadic
status: playable
content: free
langs:
- C++
frameworks:
- Qt
licenses:
- GPL3
added: '2024-10-31'
updated: '2024-10-31'
images:
- 'https://gottcode.org/tanglet/screenshots/newgame.png'
- 'https://gottcode.org/tanglet/screenshots/tanglet.png'
- 'https://gottcode.org/tanglet/screenshots/normal-en.png'
- 'https://gottcode.org/tanglet/screenshots/large-en.png'
- 'https://gottcode.org/tanglet/screenshots/language.png'
- name: 'Tank: Zone of Death'
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Battle City
status: playable
repo: https://github.com/les-sosna/tzod
type: clone
updated: 2019-03-27
url: https://zod.fandom.com/ru/wiki/%D0%93%D0%BB%D0%B0%D0%B2%D0%BD%D0%B0%D1%8F
images:
- https://vignette.wikia.nocookie.net/zod/images/7/76/Ss04.jpg/revision/latest?cb=20070528214052&path-prefix=ru
- name: Tanks of Freedom
development: sporadic
langs:
- GDScript
frameworks:
- Godot
images:
- https://tof.p1x.in/assets/tof_screen1.png
- https://tof.p1x.in/assets/tof_screen5.png
- https://tof.p1x.in/assets/tof_screen8.png
licenses:
- MIT
multiplayer:
- Online
- Hotseat
content: open
originals:
- Advance Wars
status: playable
repo: https://github.com/w84death/Tanks-of-Freedom
type: clone
updated: 2019-10-22
url: https://tof.p1x.in
video:
youtube: Y7w5VhvG8hA
- name: Tapir
images:
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/vxace-title.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/vx-title.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/xp-title.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/talk1.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/enter-battle1.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/battle1.png
- https://raw.githubusercontent.com/qnighy/tapir/master/imgs/talk2.png
info: RGSS compatible runtime (RPG Maker XP, VX, and VX Ace)
langs:
- C
- Ruby
frameworks:
- SDL2
licenses:
- Apache
- MIT
development: halted
status: playable
originals:
- RPG Maker
repo: https://github.com/qnighy/tapir
type: remake
updated: 2023-09-05
url: https://qnighy.github.io/tapir/
- name: TekwarGDX
originals:
- TekWar
type: remake
repo: 'https://gitlab.com/m210/TekwarGDX'
url: 'https://m210.duke4.net/'
development: halted
status: playable
content: commercial
langs:
- Java
frameworks:
- libGDX
licenses:
- Custom
updated: 2023-09-06
video:
youtube: 0U7EpJlf6-o
- name: Terasology
langs:
- Java
licenses:
- Apache
development: active
originals:
- Minecraft
repo: https://github.com/MovingBlocks/Terasology
feed: https://github.com/MovingBlocks/Terasology/releases.atom
status: playable
type: remake
updated: 2014-08-20
url: https://terasology.org/
images:
- https://terasology.org/static/7a1748f57787e6b191d9f87d6bf63a50/7902e/View_from_the_Lake_3.webp
- https://terasology.org/static/63b0addd8615d0fab34b6cb2c40251da/7902e/View_from_the_Lake_2.webp
- https://terasology.org/static/85b326bec474916b132b0926e91cfb5b/7902e/View_from_the_Lake_1.webp
- https://terasology.org/static/8bfe0f8ce02b19905c55c961db7821a3/ad93b/The_Rock.webp
- https://terasology.org/static/822633d6784e01209e433de537fdd8f8/e9a7f/Stonehenge_in_Lost.webp
- https://terasology.org/static/203692816a0d1bdfe5c3f0f1f0745e79/ad93b/Spring_Time.webp
video:
youtube: Wpa2aiadwE8
- name: terrarium
langs:
- C++
frameworks:
- SDL
- SDL2
- Allegro
- Box2D
licenses:
- GPL2
development: sporadic
originals:
- Terraria
status: unplayable
repo: https://gitlab.com/hydren/terrarium
type: remake
updated: 2015-06-18
- name: TES3MP
originals:
- 'The Elder Scrolls III: Morrowind'
type: remake
repo: 'https://github.com/TES3MP/openmw-tes3mp'
url: 'https://tes3mp.com/'
development: halted
status: playable
multiplayer:
- Online
- LAN
content: swappable
langs:
- C++
licenses:
- GPL3
info: TES3MP is a project adding multiplayer functionality to OpenMW
updated: 2023-09-07
images:
- https://media.moddb.com/cache/images/engines/1/1/929/thumb_620x2000/170828b.png
- https://media.moddb.com/cache/images/engines/1/1/929/thumb_620x2000/vlcsnap-2983-11-27-07h06m58s509.png
- https://media.moddb.com/cache/images/engines/1/1/929/thumb_620x2000/vlcsnap-4274-01-22-03h12m11s414.png
- https://media.moddb.com/cache/images/engines/1/1/929/thumb_620x2000/vlcsnap-2432-09-08-08h21m43s889.png
- https://media.moddb.com/cache/images/engines/1/1/929/thumb_620x2000/vlcsnap-7947-01-28-20h26m56s612.png
video:
youtube: aZZ0piRvI58
moddb: 1907883
- name: tetris - Just another Tetris™ clone
images:
- https://raw.githubusercontent.com/spypunk/tetris/master/img/screenshot_start.png
- https://github.com/spypunk/tetris/blob/master/img/screenshot.png?raw=true
- https://github.com/spypunk/tetris/blob/master/img/screenshot_pause.png?raw=true
- https://github.com/spypunk/tetris/blob/master/img/screenshot_gameover.png?raw=true
langs:
- Java
licenses:
- WTFPL
originals:
- Tetris
status: playable
repo: https://github.com/spypunk/tetris
development: halted
type: remake
updated: 2023-09-08
- name: Tetris (in C and NCURSES)
originals:
- Tetris
type: remake
repo: https://github.com/brenns10/tetris
url: https://brennan.io/2015/06/12/tetris-reimplementation/
development: halted
status: playable
content: open
langs:
- C
frameworks:
- ncurses
- SDL
licenses:
- BSD
updated: 2019-08-28
images:
- https://raw.githubusercontent.com/brenns10/tetris/master/tetris.gif
- name: The-Trail
type: remake
originals:
- The Oregon Trail
status: semi-playable
langs:
- Java
updated: 2019-09-30
repo: https://github.com/TheRedSpy15/The-Trail
licenses:
- MIT
development: halted
- name: Theme Park Builder 3D CAD
frameworks:
- OpenGL
- SDL
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Theme Park
status: unplayable
type: remake
updated: 2019-11-20
repo: https://sourceforge.net/projects/tpb3d/
- name: thiefcatcher
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
development: sporadic
originals:
- Where in the World Is Carmen Sandiego? (1985)
status: semi-playable
repo: https://github.com/Ponup/thiefcatcher
type: remake
updated: 2015-06-18
- name: THREEPunchOut
frameworks:
- three.js
langs:
- JavaScript
licenses:
- As-is
development: halted
originals:
- Punch-Out!!
status: playable
repo: https://github.com/MattSzik/THREEPunchOut
type: clone
updated: 2015-08-15
url: https://matthewsziklay.github.io/THREEPunchOut/
- name: Threes-C
type: clone
originals:
- Threes
repo: https://github.com/harshjv/threes-c
development: complete
status: playable
langs:
- C
licenses:
- MIT
updated: 2022-12-30
images:
- https://camo.githubusercontent.com/f0ee3659eb94d0c43e7032a69b0fd67e9943b0e5b728722e2cea5161e673e1a2/68747470733a2f2f61736369696e656d612e6f72672f612f31383133352e706e67
- name: Threes.el
type: clone
originals:
- Threes
repo: https://github.com/xuchunyang/threes.el
development: complete
status: playable
langs:
- Emacs Lisp
licenses:
- GPL3
updated: 2022-12-30
images:
- https://raw.githubusercontent.com/xuchunyang/threes.el/master/screenshot.png
- name: Thrive
type: similar
originals:
- Spore
repo: https://github.com/Revolutionary-Games/Thrive
url: https://revolutionarygamesstudio.com/
feed: https://revolutionarygamesstudio.com/feed/
development: very active
status: semi-playable
langs:
- C#
frameworks:
- Godot
licenses:
- GPL3
content: open
info: Only the Microbe stage is playable now, others will come later.
updated: 2023-09-11
images:
- https://camo.githubusercontent.com/fc14c156d22d41e2dde35e414223ff3b1900c2c59d7fcb73bd55cffc8610ed0b/68747470733a2f2f72616e646f6d74687269766566696c65732e622d63646e2e6e65742f73637265656e73686f74732f6769746875625f73637265656e73686f745f312e706e67
- https://camo.githubusercontent.com/4e8b03c4f3f682d26142728b9f27ac3a22c143a542912c7a0c922fe5e44802f2/68747470733a2f2f72616e646f6d74687269766566696c65732e622d63646e2e6e65742f73637265656e73686f74732f6769746875625f73637265656e73686f745f322e706e67
video:
youtube: i1BPqJjbHMw
- name: thromolusng
langs:
- Python
licenses:
- GPL3
development: halted
originals:
- Thromolus
status: unplayable
repo: https://github.com/segfaulthunter/thromolusng
type: remake
updated: 2015-06-22
- name: Thrust
images:
- https://www.lysator.liu.se/~peda/thrust/thrust.gif
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Thrust
status: playable
repo: https://www.lysator.liu.se/~peda/thrust/src/
type: remake
updated: 2022-07-21
url: https://www.lysator.liu.se/~peda/thrust/
- name: Thunder&Lightning
originals:
- Carrier Command
type: clone
repo: 'https://github.com/indyjo/Thunder-Lightning'
development: sporadic
status: semi-playable
content: free
langs:
- C++
- Io
frameworks:
- SDL
licenses:
- GPL2
added: '2024-11-06'
updated: '2024-11-06'
- name: Thyme
langs:
- C++
licenses:
- GPL2
development: active
originals:
- 'Command & Conquer: Generals'
repo: https://github.com/TheAssemblyArmada/Thyme
type: remake
status: playable
updated: 2018-11-02
- name: Tile World
langs:
- C
licenses:
- GPL2
development: sporadic
originals:
- Chip's Challenge
status: playable
type: remake
updated: 2014-01-05
url: https://www.muppetlabs.com/~breadbox/software/tworld/
- name: Tile World 2
langs:
- C
licenses:
- GPL2
development: halted
originals:
- Chip's Challenge
repo: https://github.com/Qalthos/Tile-World
status: playable
type: remake
updated: 2014-01-05
url: https://github.com/Qalthos/Tile-World
- name: Tiny Wings
langs:
- Objective-C
frameworks:
- Cocos2d
licenses:
- MIT
development: halted
originals:
- Tiny Wings
status: semi-playable
repo: https://github.com/haqu/tiny-wings
type: remake
images:
- https://raw.githubusercontent.com/haqu/tiny-wings/master/screenshot.png
updated: 2022-09-12
- name: TOMB5
type: remake
originals:
- Tomb Raider Chronicles
repo: https://github.com/TOMB5/TOMB5
development: halted
status: semi-playable
langs:
- C
licenses:
- MIT
content: commercial
info: The project decompiles the original binaries and want to recreate the original source which is lost.
updated: 2023-09-12
images:
- https://i.imgur.com/YzFDlbRl.png
- https://i.imgur.com/Utuazgml.png
- https://i.imgur.com/g54Twxe.png
- name: Torrega Race
frameworks:
- "L\xD6VE"
images:
- https://i.imgur.com/qWgWeXA.png
langs:
- Lua
licenses:
- GPL3
development: halted
originals:
- Omega Race
repo: https://github.com/andwj/torrega
status: playable
type: clone
updated: 2015-05-02
- name: Total Annihilation 3D
langs:
- C++
- Lua
frameworks:
- OpenGL
- Qt
- SDL
licenses:
- GPL2
content: commercial
development: halted
originals:
- Total Annihilation
status: semi-playable
repo: https://github.com/zuzuf/TA3D
type: remake
url: http://www.ta3d.org/
updated: 2023-09-13
video:
indiedb: 206215
- name: Tower Building Game
originals:
- Tower Bloxx Mini
type: clone
repo: 'https://github.com/iamkun/tower_game'
url: 'https://iamkun.github.io/tower_game/'
development: complete
status: playable
content: open
langs:
- JavaScript
licenses:
- MIT
added: '2024-09-12'
updated: '2024-09-12'
images:
- >-
https://user-images.githubusercontent.com/17680888/47480922-93a20c00-d864-11e8-8f7c-6d1d60184730.gif
- name: Tower Toppler
images:
- https://toppler.sourceforge.net/images/shot1_hr.png
- https://toppler.sourceforge.net/images/shot2_hr.png
- https://toppler.sourceforge.net/images/shot3_hr.png
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
development: halted
originals:
- Nebulus
status: playable
type: remake
repo: https://gitlab.com/roever/toppler/
updated: 2023-09-14
- name: Trackballs
images:
- https://trackballs.github.io/screenshots/b21.png
- https://trackballs.github.io/screenshots/b11.png
- https://trackballs.github.io/screenshots/b28.png
frameworks:
- SDL2
langs:
- C++
licenses:
- GPL2
development: sporadic
originals:
- Marble Madness
status: playable
repo: https://github.com/trackballs/trackballs
type: remake
updated: 2018-10-06
url: https://trackballs.github.io
- name: Train
langs:
- Java
frameworks:
- Slick2D
licenses:
- BSD
development: halted
originals:
- Vlak
status: unplayable
repo: https://github.com/nenadalm/Train
type: remake
updated: 2015-05-28
- name: Transfusion
images:
- https://www.transfusion-game.com/images/e1m2-00.jpg
- https://www.transfusion-game.com/images/e3m7-02.jpg
- https://www.transfusion-game.com/images/action08.jpg
licenses:
- GPL2
development: halted
originals:
- Blood
repo: https://sourceforge.net/projects/blood/
status: playable
type: remake
updated: 2013-11-12
url: https://www.transfusion-game.com/
- name: TransLines
originals:
- Mini Metro
type: clone
repo: 'https://app.zdechov.net/translines/browser'
url: 'https://app.zdechov.net/translines'
development: sporadic
status: playable
content: open
langs:
- Pascal
frameworks:
- Lazarus
licenses:
- CC0
updated: 2024-01-27
images:
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/Game.png
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/Main%20menu.png
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/New%20improvement.png
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/New%20train.png
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/Dark%20style.png
- https://app.zdechov.net/translines/raw-attachment/wiki/ScreenShots/Game2.png
video:
youtube: 03oMYdE9uLI
- name: Tranzam
images:
- https://retrospec.sgn.net/config/screenshots/tranzam.f.2.jpg
- https://retrospec.sgn.net/config/screenshots/tranzam.f.4.jpg
- https://retrospec.sgn.net/config/screenshots/tranzam.f.5.jpg
- https://retrospec.sgn.net/config/screenshots/tranzam.f.3.jpg
- https://retrospec.sgn.net/config/screenshots/tranzam.f.1.jpg
langs:
- C++
frameworks:
- Allegro
licenses:
- Custom
development: complete
originals:
- Tranz Am
status: playable
type: remake
updated: 2022-06-11
url: https://retrospec.sgn.net/game/tranzam
- name: Tremulous
images:
- https://tremulous.net/screenshots/1.jpg
- https://tremulous.net/screenshots/2.jpg
- https://tremulous.net/screenshots/3.jpg
- https://tremulous.net/screenshots/6.jpg
langs:
- C
frameworks:
- SDL
- OpenGL
- OpenAL
licenses:
- GPL2
- CC-BY-SA
development: halted
status: playable
multiplayer:
- Online
- LAN
originals:
- Gloom (Quake)
- Natural Selection
repo: https://github.com/darklegion/tremulous
type: similar
updated: 2020-09-06
url: https://tremulous.net
- name: TrinityCore
originals:
- World of Warcraft
type: clone
repo: 'https://github.com/TrinityCore/TrinityCore'
url: 'https://www.trinitycore.org/'
development: very active
status: playable
multiplayer:
- Local
- Online
- LAN
content: commercial
langs:
- C++
licenses:
- GPL2
updated: 2023-12-29
video:
youtube: riTgGx9ELW0
- name: Tron
frameworks:
- jQuery
langs:
- JavaScript
licenses:
- As-is
development: halted
originals:
- Tron
status: playable
repo: https://github.com/momajd/Tron
type: remake
updated: 2016-05-14
url: https://momajd.github.io/Tron/
images:
- https://raw.githubusercontent.com/momajd/Tron/master/docs/intro.png
- https://raw.githubusercontent.com/momajd/Tron/master/docs/game_end.png
- name: TrueCraft
images:
- https://sr.ht/aKPe.png
- https://sr.ht/OGQM.png
langs:
- C#
licenses:
- MIT
development: halted
originals:
- Minecraft
status: playable
repo: https://github.com/ddevault/TrueCraft
type: remake
updated: 2020-08-31
- name: TR1X
originals:
- Tomb Raider
type: remake
repo: 'https://github.com/LostArtefacts/TR1X'
feed: 'https://github.com/LostArtefacts/TR1X/releases.atom'
development: active
status: playable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- GPL3
info: made by reverse engineering the TombATI / GLRage variant of the original game
updated: '2023-12-02'
images:
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/braid.jpg?raw=true
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/enemy_health_bar_and_scaling.jpg?raw=true
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/3d_pickups.jpg?raw=true
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/compass_stats.jpg?raw=true
- >-
https://raw.githubusercontent.com/LostArtefacts/TR1X/develop/docs/showcase/draw_distance.webp
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/fly_cheat.jpg?raw=true
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/free_camera.jpg?raw=true
- >-
https://github.com/LostArtefacts/TR1X/blob/develop/docs/showcase/ps1_ui_and_gfx.jpg?raw=true
- name: TTDPatch
originals:
- Transport Tycoon
type: tool
repo: https://github.com/ttdpatch/ttdpatch
url: https://www.ttdpatch.net/
development: halted
content: commercial
langs:
- Assembly
- C
licenses:
- GPL2
info: A patch for Transport Tycoon that adds many features
updated: 2019-07-09
images:
- https://www.ttdpatch.net/newgrf.png
- https://www.ttdpatch.net/bigstation.jpg
- https://www.ttdpatch.net/longtrn.jpg
- name: Tube64
originals:
- Tube
type: remake
repo: 'https://github.com/rep-stosw/tube64'
url: 'https://clobberasm.itch.io/tube'
development: halted
status: playable
content: free
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL2
updated: '2024-02-17'
images:
- >-
https://user-images.githubusercontent.com/88702500/131208173-4758d8b1-0629-48b9-a53e-1b4c90115a90.png
video:
youtube: dgaLhOj14e8
- name: Tumbly Towers
type: remake
originals:
- Tricky Towers
repo: https://github.com/SteveSmith16384/TumblyTowers
development: halted
status: playable
langs:
- Java
licenses:
- MIT
content: open
updated: 2019-11-20
images:
- https://i.imgur.com/CuponTl.png
video:
youtube: uFJp9MAAa4Q
- name: turnabout
langs:
- Elm
licenses:
- As-is
development: halted
originals:
- Turnabout
status: unplayable
repo: https://github.com/sch/turnabout
type: remake
updated: 2015-07-19
- name: TurokEX
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- Turok
status: unplayable
repo: https://github.com/svkaiser/TurokEX
type: remake
updated: 2016-05-28
- name: TUSSLE
type: clone
originals:
- Super Smash Bros.
repo: https://github.com/digiholic/universalSmashSystem
url: https://projecttussle.com/
development: halted
status: playable
multiplayer:
- Competitive
langs:
- Python
frameworks:
- pygame
licenses:
- GPL3
content: free
info: TUSSLE is just an engine. You need to create your own characters or download them.
updated: 2019-06-11
images:
- https://i.gjcdn.net/data/games/2/53/170803/screenshots/tumblr_inline_oadma9jh9s1roqll8_1280-5fwyxvvj.png
- https://i.gjcdn.net/data/games/2/53/170803/screenshots/tumblr_inline_o5p6qwan9x1roqll8_1280-utuih5wt.jpg
- https://i.gjcdn.net/data/games/2/53/170803/screenshots/tumblr_inline_o5p6lkgowt1roqll8_1280-wbayd6jt.jpg
- https://i.gjcdn.net/data/games/2/53/170803/screenshots/tumblr_inline_o5p6d2ywen1roqll8_1280-cqgczxpx.jpg
- https://i.gjcdn.net/data/games/2/53/170803/screenshots/tumblr_inline_o5p5n7d2ri1roqll8_1280-qbyv5dtd.jpg
- name: Tux Builder
originals:
- Super Mario
type: clone
repo: 'https://github.com/Alzter/TuxBuilder'
development: halted
status: unplayable
content: open
langs:
- GDScript
frameworks:
- Godot
licenses:
- GPL3
info: A Godot re-implementation of SuperTux
updated: '2019-11-11'
images:
- >-
https://forum.freegamedev.net/download/file.php?id=11922&sid=0143ee722a57a6af5adca2516bfe7979&mode=view
- name: Tuxemon
frameworks:
- pygame
images:
- https://www.tuxemon.org/images/featurette-01.png
- https://www.tuxemon.org/images/screenshot-01.png
- https://www.tuxemon.org/images/featurette-02.png
langs:
- Python
licenses:
- GPL3
development: active
originals:
- Pokémon
repo: https://github.com/Tuxemon/Tuxemon
status: playable
type: remake
updated: 2015-01-21
url: https://www.tuxemon.org/
- name: TVTower
langs:
- BlitzMax
licenses:
- Custom
development: active
originals:
- Mad TV
status: playable
repo: https://github.com/TVTower/TVTower
type: remake
updated: 2021-10-17
url: https://www.tvtower.org/
images:
- https://user-images.githubusercontent.com/2625226/64739997-2935a100-d4f4-11e9-93e2-0b8c9ca00095.png
- name: twin-e
development: halted
langs:
- C
licenses:
- GPL2
content: commercial
originals:
- Little Big Adventure
repo: https://github.com/xesf/twin-e
status: playable
type: remake
updated: 2017-10-23
url: https://github.com/xesf/twin-e
- name: Tyger
type: remake
originals:
- ZZT
repo: https://code.google.com/archive/p/tyger/
development: halted
status: semi-playable
langs:
- Python
frameworks:
- pygame
licenses:
- MIT
updated: 2020-06-26
images:
- https://zzt.org/dr_dos/tyger/TygerTitle.png