-
Notifications
You must be signed in to change notification settings - Fork 316
/
b.yaml
1076 lines (1023 loc) · 24.5 KB
/
b.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: bab-be-u
type: clone
originals:
- Baba Is You
url: https://bab-devs.github.io/
repo: https://github.com/lilybeevee/bab-be-u
langs:
- Lua
frameworks:
- LÖVE
licenses:
- MIT
content: free
development: sporadic
status: semi-playable
updated: 2024-04-11
images:
- https://raw.githubusercontent.com/lilybeevee/bab-be-u/master/docs/img1.png
- https://raw.githubusercontent.com/lilybeevee/bab-be-u/master/docs/img2.png
- https://raw.githubusercontent.com/lilybeevee/bab-be-u/master/docs/img3.png
- name: Babaliba
images:
- https://compiler.speccy.org/img/screens/babaliba-scr1.png
- https://compiler.speccy.org/img/screens/babaliba-scr2.png
- https://compiler.speccy.org/img/screens/babaliba-scr3.png
langs:
- xBase
licenses:
- As-is
content: free
originals:
- Babaliba
status: playable
repo: https://github.com/compilersoftware/babaliba
development: halted
type: remake
updated: 2024-04-12
url: https://compiler.speccy.org/en/remakes-babaliba.html
- name: back-to-nature-c64-remake
info: 'An Android 30th anniversary tribute edition to a Commodore C64 game named "Back To Nature" from 1982.'
langs:
- Java
licenses:
- As-is
development: halted
status: playable
originals:
- Frog!
repo: https://github.com/gborp/back-to-nature-c64-remake
type: remake
updated: 2021-01-02
video:
youtube: GOmoWe_Flvs
- name: BaKGL
originals:
- Betrayal at Krondor
type: remake
repo: 'https://github.com/xavieran/BaKGL'
development: active
status: playable
content: free
langs:
- C++
frameworks:
- OpenGL
- SDL2
licenses:
- GPL3
info: Remake of the 1993 classic CRPG Betrayal at Krondor using OpenGL and SDL2
updated: '2024-01-13'
images:
- https://github.com/xavieran/BaKGL/blob/master/screenshots/sumani.png?raw=true
- 'https://raw.githubusercontent.com/xavieran/BaKGL/master/screenshots/macmordain.png'
- https://github.com/xavieran/BaKGL/blob/master/screenshots/northlands.png?raw=true
- https://github.com/xavieran/BaKGL/blob/master/screenshots/waterfall_ui.png?raw=true
- name: Ball And Wall
langs:
- JavaScript
licenses:
- MIT
content: free
development: complete
originals:
- Arkanoid
status: playable
repo: https://github.com/budnix/ball-and-wall
type: clone
updated: 2022-07-09
url: https://ballandwall.com
- name: Ballerburg SDL
images:
- https://baller.tuxfamily.org/screenshot1.png
- https://baller.tuxfamily.org/screenshot2.png
langs:
- C
licenses:
- GPL3
development: sporadic
originals:
- Ballerburg
status: playable
repo: https://git.tuxfamily.org/baller/baller.git
type: remake
updated: 2022-07-09
url: https://baller.tuxfamily.org/
- name: Ballistica
originals:
- BombSquad
type: official
repo: 'https://github.com/efroemling/ballistica'
url: 'https://ballistica.net/'
development: active
status: playable
multiplayer:
- Competitive
- Local
- Online
- LAN
- Co-op
content: free
langs:
- C++
- Python
licenses:
- MIT
info: BombSquad Engine
added: '2024-06-12'
updated: '2024-06-12'
- name: Balloon Fight
frameworks:
- DIV Games Studio
licenses:
- As-is
content: commercial
development: complete
originals:
- Balloon Fight
status: playable
repo: https://github.com/MikeDX/balloon-fight
type: remake
updated: 2022-07-09
url: http://js.mikedx.co.uk/balloonfight.html
- name: BananiaJS
originals:
- Banania
type: remake
repo: 'https://github.com/BenjaminRi/Banania'
development: complete
status: playable
content: free
langs:
- JavaScript
licenses:
- MIT
info: >-
Banania is a puzzle game in which you have to collect banana peels and avoid
monsters.
updated: '2022-12-04'
url: https://mental-reverb.com/creations/banania/banania.html
images:
- https://raw.githubusercontent.com/BenjaminRi/Banania/master/banania_win95.png
- name: Barbarian
frameworks:
- QB64
langs:
- BASIC
licenses:
- As-is
development: halted
originals:
- 'Barbarian: The Ultimate Warrior'
status: playable
type: remake
updated: 2022-07-09
url: http://barbarian.1987.free.fr/indexEN.htm
- name: Barony
type: official
originals:
- Barony
repo: https://github.com/TurningWheel/Barony
url: http://www.baronygame.com/
development: sporadic
status: playable
multiplayer:
- Co-op
- Online
- LAN
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
content: commercial
info: The open source release of Barony
updated: 2019-06-20
video:
youtube: vLQTb-5eVNU
- name: Batrachians
images:
- https://perso.b2b2c.ca/~sarrazip/dev/images/batrachians-1.png
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Frogs and Flies
status: semi-playable
type: remake
updated: 2022-07-09
url: https://perso.b2b2c.ca/~sarrazip/dev/batrachians.html
- name: Battle City
images:
- https://battlecity.org/wp-content/uploads/your-city-has-been-destroyed-by-the-power-of-an-orb.png
- https://farm6.staticflickr.com/5246/5313969457_15de8df27f_z.jpg
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Battle City
repo: https://github.com/Deceth/Battle-City
status: playable
type: remake
updated: 2017-02-09
url: https://battlecity.org/
- name: The Battle for Wesnoth
images:
- https://www.wesnoth.org/images/sshots/wesnoth-1.16.0-1.jpg
- https://www.wesnoth.org/images/sshots/wesnoth-1.16.0-2.jpg
- https://www.wesnoth.org/images/sshots/wesnoth-1.16.0-3.jpg
- https://www.wesnoth.org/images/sshots/wesnoth-1.16.0-6.jpg
langs:
- C++
- C
- Java
- Python
- Lua
licenses:
- GPL2
development: very active
multiplayer:
- Online
- Co-op
- Hotseat
- Local
- Competitive
originals:
- Master of Monsters
- Warsong
status: playable
repo: https://github.com/wesnoth/wesnoth
type: clone
updated: 2022-07-09
url: https://www.wesnoth.org/
video:
youtube: 4Ebww6utt9I
- name: BattleCity
originals:
- Battle City
type: remake
repo: 'https://github.com/newagebegins/BattleCity'
url: 'http://newagebegins.github.com/BattleCity/BattleCity.html'
development: halted
status: playable
content: open
langs:
- JavaScript
licenses:
- As-is
updated: '2020-07-24'
- name: BattleCity2014
frameworks:
- OGRE
- EntityX
langs:
- C++
licenses:
- As-is
development: halted
originals:
- Battle City
status: unplayable
repo: https://github.com/ggc87/BattleCity2014
type: clone
updated: 2022-07-09
- name: BBTools
originals:
- Beasts and Bumpkins
type: tool
repo: 'https://github.com/JonMagon/BBTools'
development: sporadic
content: commercial
langs:
- 'C#'
frameworks:
- .NET
licenses:
- GPL3
updated: '2023-12-13'
images:
- >-
https://camo.githubusercontent.com/a4b9ca88496dd6f5e865cb9909ff27881dd4e9fa1d2ddcb4acfe306ef2ed2532/68747470733a2f2f692e696d6775722e636f6d2f657176586d74642e706e67
- >-
https://camo.githubusercontent.com/cc6ffbb1766f0d84dbfc84c87b8562caee3d0608e31536c803e173e30edfa5a4/68747470733a2f2f692e696d6775722e636f6d2f7532765053764f2e706e67
- name: Beasts and Bumpkins Fan Patch
originals:
- Beasts and Bumpkins
type: tool
repo: 'https://github.com/bb-patch/bb-patch'
development: sporadic
content: commercial
langs:
- Go
frameworks:
- Fyne
licenses:
- GPL3
updated: '2023-12-13'
- name: 'Bedlam 2: Absolute Bedlam'
development: halted
images:
- https://camo.githubusercontent.com/2f4bb518d09c99a72494c55ec22d56aab0025051d756d749a795c5faef6b5cd2/68747470733a2f2f7777772e6f6c642d67616d65732e72752f666f72756d2f6174746163686d656e74732f6265646c616d322d706e672e3234313733322f
video:
youtube: _pjFmPXNnFw
langs:
- Assembly
- C++
frameworks:
- SDL2
licenses:
- As-is
content: commercial
originals:
- 'Bedlam 2: Absolute Bedlam'
repo: https://github.com/8street/Bedlam2
status: playable
type: remake
updated: 2024-04-16
- name: Bemuse
originals:
- Beatmania IIDX
type: clone
status: playable
repo: 'https://github.com/bemusic/bemuse'
url: 'https://bemuse.ninja/'
development: sporadic
content: free
langs:
- JavaScript
- TypeScript
licenses:
- AGPL3
updated: 2022-09-26
images:
- >-
https://github.com/bemusic/bemuse/raw/master/website/static/img/screenshots/music-selection.jpg
- >-
https://github.com/bemusic/bemuse/raw/master/website/static/img/screenshots/gameplay-kbd.jpg
- >-
https://github.com/bemusic/bemuse/raw/master/website/static/img/screenshots/gameplay-bms.jpg
- >-
https://github.com/bemusic/bemuse/raw/master/website/static/img/screenshots/options.jpg
- name: Bermuda Syndrome
development: halted
langs:
- C++
frameworks:
- SDL2
- libretro
licenses:
- As-is
content: commercial
originals:
- Bermuda Syndrome
repo: https://github.com/cyxx/bermuda
status: playable
type: remake
updated: 2021-05-17
url: http://cyxdown.free.fr/bs/
- name: BetterSpades
development: sporadic
info: Ace of Spades client targeted at low end systems (GL/ES 1.1).
images:
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic01.png
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic02.png
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic03.png
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic04.png
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic05.png
- https://raw.githubusercontent.com/xtreme8000/BetterSpades/standalone/docs/pic06.png
langs:
- C
licenses:
- GPL3
content: open
originals:
- Ace of Spades
repo: https://github.com/xtreme8000/BetterSpades
status: playable
type: remake
multiplayer:
- Online
- Competitive
updated: 2024-04-17
- name: Beyond All Reason
type: similar
langs:
- Lua
frameworks:
- Spring RTS Engine
licenses:
- GPL2
content: free
development: very active
originals:
- Total Annihilation
- Supreme Commander
status: playable
repo: https://github.com/beyond-all-reason/Beyond-All-Reason
url: https://www.beyondallreason.info/
video:
youtube: 52tpPS08GZ4
updated: 2024-04-18
images:
- >-
https://assets.website-files.com/5c68622246b367adf6f3041d/6136157edc11522cecb4eee5_BAR_screenshot_104.jpg
- >-
https://assets.website-files.com/5c68622246b367adf6f3041d/61361d8ff2878b4a38c149c6_BAR_to-bits-and-pieces.jpg
- >-
https://assets.website-files.com/5c68622246b367adf6f3041d/61361831d57d477ec5696cc6_BAR_major_assault.jpg
- >-
https://assets.website-files.com/5c68622246b367adf6f3041d/61361932dca36e033abe7822_BAR_screenshot_112.jpg
- name: BitRiot
langs:
- C++
licenses:
- Apache
development: halted
originals:
- Bug Bomber
repo: https://github.com/VenKamikaze/BitRiot
type: clone
updated: 2019-05-07
status: playable
multiplayer:
- Co-op
frameworks:
- SDL2
content: open
images:
- https://raw.github.com/VenKamikaze/BitRiot/master/doco/screenshots/BitRiot-1.png
- https://raw.github.com/VenKamikaze/BitRiot/master/doco/screenshots/BitRiot-2.png
- name: BlakedAwesomenaughts
langs:
- JavaScript
- PHP
frameworks:
- melonJS
licenses:
- MIT
development: halted
originals:
- Awesomenauts
status: unplayable
repo: https://github.com/zombieman1041/BlakedAwesomenaughts
type: remake
updated: 2022-07-09
- name: Block Attack - Rise of the Blocks
frameworks:
- SDL2
images:
- https://blockattack.net/images/screenshots/blockattack-2.3.0-1.png
- https://blockattack.net/images/screenshots/blockattack-2.3.0-2.png
- https://blockattack.net/images/screenshots/blockattack-2.3.0-3.png
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Tetris Attack
status: playable
repo: https://github.com/blockattack/blockattack-game
type: clone
updated: 2022-07-09
url: https://blockattack.net/
video:
youtube: xHxnGB2y_lg
- name: Block Shooter
type: remake
originals:
- BrickShooter
repo: https://github.com/towerofglass/block-shooter
url: https://towerofglass.github.io/block-shooter/
development: halted
status: playable
langs:
- JavaScript
frameworks:
- Phaser
licenses:
- MIT
content: open
updated: 2024-04-19
- name: BlockOut II
originals:
- Blockout
type: remake
repo: https://sourceforge.net/projects/blockout/
url: 'http://www.blockout.net/blockout2/'
development: complete
status: playable
content: open
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
info: >-
The remake was authorised by the original copyright holders of Blockout, Kadon
Enterprises, Inc. It reproduces the original playing mechanics as accurately
as possible.
updated: 2021-08-20
images:
- https://a.fsdn.com/con/app/proj/blockout/screenshots/133081.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/blockout/screenshots/133079.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/blockout/screenshots/133085.jpg/max/max/1
- https://a.fsdn.com/con/app/proj/blockout/screenshots/133083.jpg/max/max/1
- name: Blood & Magic Interactive Demo
originals:
- Blood & Magic
type: official
repo: 'https://github.com/mhjlam/bam'
development: halted
status: semi-playable
content: commercial
langs:
- C++
- C
- Assembly
licenses:
- Custom
info: >-
The official source code to the interactive demo of Blood & Magic, included as
part of The Forgotten Realms Archives
updated: '2023-12-08'
- name: Bloodworks
originals:
- Crimsonland
type: clone
repo: 'https://github.com/shultays/bloodworks/'
url: 'https://taytay.itch.io/bloodworks'
development: halted
status: playable
content: open
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL3
added: '2024-09-27'
updated: '2024-09-27'
images:
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzgxMjc4NS5wbmc=/original/x6GGV2.png'
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzgxMjc4Ni5wbmc=/original/kczXCH.png'
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzgxMjc4NC5wbmc=/original/BFX%2BMM.png'
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzgxMjc4My5wbmc=/original/VYuyxj.png'
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzgxMjc4Mi5wbmc=/original/m1sGPV.png'
- 'https://img.itch.zone/aW1hZ2UvMTAyNTgwLzk4OTU1MS5wbmc=/original/t9i3er.png'
video:
youtube: J6nBlytRQSM
- name: BloonsTowerDefense6
langs:
- Java
licenses:
- As-is
development: halted
originals:
- Bloons Tower Defense
status: unplayable
repo: https://github.com/wtfaremyinitials/BloonsTowerDefense6
type: remake
updated: 2019-09-02
- name: Blues
originals:
- The Blues Brothers
- 'The Blues Brothers: Jukebox Adventure'
- Prehistorik 2
type: remake
repo: 'https://github.com/cyxx/blues'
development: halted
status: playable
content: commercial
langs:
- C
frameworks:
- SDL2
licenses:
- As-is
updated: 2021-12-08
images:
- 'https://raw.githubusercontent.com/cyxx/blues/master/blues1.png'
- 'https://raw.githubusercontent.com/cyxx/blues/master/bbja2.png'
- name: Blutfest
originals:
- Crimsonland
type: clone
repo: 'https://github.com/hepfnepf/Blutfest'
development: sporadic
status: playable
content: open
langs:
- GDScript
frameworks:
- Godot
licenses:
- GPL3
updated: '2024-01-27'
images:
- https://user-images.githubusercontent.com/69308038/160944172-cfbc0da0-ccfb-4435-848e-45bffd92cb68.png
- https://user-images.githubusercontent.com/69308038/160944100-7509f12f-24f5-4f4a-a5fb-ac8a30136e97.png
- name: Bomb Mania Reloaded
images:
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125901.jpg
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275181.jpg
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275183.jpg
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/125905.jpg
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/275185.jpg
- https://a.fsdn.com/con/app/proj/bomb-mania/screenshots/logo.jpg
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- Bomberman
status: playable
repo: https://sourceforge.net/projects/bomb-mania/
type: remake
updated: 2022-06-26
url: https://sourceforge.net/p/bomb-mania/wiki/Home/
- name: Bombermaaan
originals:
- Bomberman
type: remake
repo: 'https://github.com/bjaraujo/Bombermaaan'
url: 'https://bombermaaan.sourceforge.net/'
feed: 'https://sourceforge.net/p/bombermaaan/news/feed'
development: sporadic
status: playable
multiplayer:
- Competitive
- Local
content: free
langs:
- C++
frameworks:
- SDL
- Allegro
- DirectX
licenses:
- GPL3
info: >-
This is a version of Thibaut's Bombermaaan game project which started on July
2000
updated: '2022-11-09'
images:
- 'https://bombermaaan.sourceforge.net/screenshots/screen1.png'
- 'https://bombermaaan.sourceforge.net/screenshots/screen7.png'
- 'https://bombermaaan.sourceforge.net/screenshots/screen8.png'
- 'https://bombermaaan.sourceforge.net/screenshots/rev528_01.png'
video:
youtube: SgVdsrDAUwA
- name: Bombic
images:
- https://a.fsdn.com/con/app/proj/bombic/screenshots/22410.jpg
- https://a.fsdn.com/con/app/proj/bombic/screenshots/22408.jpg
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Bomberman
status: playable
multiplayer:
- Co-op
- Competitive
- Local
repo: https://sourceforge.net/projects/bombic/
type: remake
updated: 2022-07-01
url: http://bombic.sourceforge.net/
- name: Bombic2
images:
- https://download.tuxfamily.org/sdtraces/BottinHTML/Bottin_0-C_files/5d69afe9ea2eaf63928289c13a72f4e0.jpeg
langs:
- C++
licenses:
- GPL2
development: halted
originals:
- Bomberman
status: playable
multiplayer:
- Co-op
- Local
- Competitive
- Split-screen
repo: https://sourceforge.net/projects/bombic2/
type: remake
updated: 2022-07-09
url: http://bombic2.sourceforge.net/
video:
youtube: 11cwnt4MNt4
- name: Bombman
images:
- https://i.imgur.com/3xbgAPM.png
langs:
- Python
licenses:
- CC0
frameworks:
- pygame
content: open
development: halted
originals:
- Atomic Bomberman
repo: https://gitlab.com/drummyfish/Bombman
type: remake
status: playable
updated: 2024-04-21
video:
youtube: N1pGgX_rFOQ
- name: 'BOOM: Remake'
images:
- https://silverweed.github.io/assets/img/boom/boom_screen1.png
- https://silverweed.github.io/assets/img/boom/boom_screen2.png
langs:
- C++
licenses:
- Custom
frameworks:
- SFML
content: swappable
development: sporadic
originals:
- BOOM
repo: https://github.com/silverweed/lifish
url: https://silverweed.github.io/boom/
type: remake
status: playable
updated: 2024-04-22
- name: boulder-dash
langs:
- Java
licenses:
- MIT
development: halted
originals:
- Boulder Dash
status: unplayable
repo: https://github.com/valeriansaliou/boulder-dash
type: remake
updated: 2019-09-02
- name: brainblast
langs:
- C++
licenses:
- GPL3
development: halted
originals:
- Brain Blasters
status: unplayable
repo: https://github.com/Zitrax/brainblast
type: clone
updated: 2022-07-09
- name: Brány Skeldalu
originals:
- Brány Skeldalu
type: official
repo: 'https://sourceforge.net/projects/skeldal/'
development: complete
status: playable
langs:
- C
licenses:
- GPL2
updated: '2023-11-25'
images:
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155693.jpg/max/max/1'
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155691.jpg/max/max/1'
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155685.jpg/max/max/1'
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155697.jpg/max/max/1'
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155701.jpg/max/max/1'
- 'https://a.fsdn.com/con/app/proj/skeldal/screenshots/155699.jpg/max/max/1'
- name: bratwurst
langs:
- Common Lisp
licenses:
- GPL2
development: halted
originals:
- Bratwurst
status: unplayable
repo: https://github.com/sabetts/bratwurst
type: remake
updated: 2015-05-15
- name: Breakout-VR
langs:
- C#
frameworks:
- Unity
licenses:
- MIT
development: halted
originals:
- Breakout
status: unplayable
repo: https://github.com/marksteelz3/Atari-VR---Breakout
type: clone
updated: 2019-06-14
- name: Bridge Command
frameworks:
- Irrlicht
images:
- https://www.bridgecommand.co.uk/data/_uploaded/image/5.0b3ScreenShot.png
- https://www.bridgecommand.co.uk/data/_uploaded/image/DSC_0172-1.jpg
- https://www.bridgecommand.co.uk/data/_uploaded/image/sar.jpg
langs:
- C++
licenses:
- GPL2
development: active
originals:
- Ship Simulator 2006
- Ship Simulator 2008
- Ship Simulator Extremes
repo: https://github.com/bridgecommand/bc
status: playable
type: clone
updated: 2016-12-03
url: https://www.bridgecommand.co.uk
- name: Briquolo
langs:
- C++
frameworks:
- SDL
licenses:
- GPL3
development: halted
originals:
- Breakout
status: playable
type: clone
updated: 2022-07-09
url: http://briquolo.free.fr/en/index.html
video:
youtube: 302T4_f0fyU
- name: Brutal Chess
images:
- https://a.fsdn.com/con/app/proj/brutalchess/screenshots/69159.jpg
- https://a.fsdn.com/con/app/proj/brutalchess/screenshots/68227.jpg
- https://a.fsdn.com/con/app/proj/brutalchess/screenshots/59140.jpg
- https://a.fsdn.com/con/app/proj/brutalchess/screenshots/107538.jpg
- https://a.fsdn.com/con/app/proj/brutalchess/screenshots/89261.jpg
langs:
- C++
frameworks:
- SDL
licenses:
- GPL2
development: halted
originals:
- Battle Chess
status: playable
repo: https://sourceforge.net/projects/brutalchess/
type: similar
updated: 2022-02-24
video:
youtube: bkQKHJvITRU
- name: Bobby
langs:
- TypeScript
licenses:
- AGPL3
development: sporadic
originals:
- Bobby Carrot
repo: https://github.com/yannicka/bobby
status: playable
type: similar
updated: 2024-04-23
url: https://bobby.yannicka.fr/
images:
- https://raw.githubusercontent.com/yannicka/bobby/master/src/assets/img/banner.png
- name: BStone
langs:
- C++
frameworks:
- SDL2
- OpenGL
licenses:
- GPL2
content: commercial
development: sporadic
originals:
- 'Blake Stone: Planet Strike'
repo: https://github.com/bibendovsky/bstone
feed: https://github.com/bibendovsky/bstone/releases.atom
status: playable
type: remake
updated: 2023-08-04
url: https://bibendovsky.github.io/bstone/
- name: Bt Builder
langs:
- C++
frameworks:
- SDL2
licenses:
- GPL3
content: open
development: halted
originals:
- The Bard's Tale Construction Set
status: semi-playable
repo: https://github.com/dulsi/btbuilder
type: remake
updated: 2024-04-24
url: https://identicalsoftware.com/btbuilder/
images:
- https://identicalsoftware.com/btbuilder/screen1.png
- https://identicalsoftware.com/btbuilder/screen2.png
- name: The Bub's Brothers
images:
- https://s.uvlist.net/l/y2009/05/58346.jpg
- https://s.uvlist.net/l/y2009/05/58345.jpg
langs:
- Python
frameworks: