forked from opengaming/osgameclones
-
Notifications
You must be signed in to change notification settings - Fork 0
/
m.yaml
987 lines (931 loc) · 22.3 KB
/
m.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
- name: Maelstrom
framework:
- SDL
lang:
- C
license:
- GPL2
development: halted
originals:
- Asteroids
repo: https://www.libsdl.org/projects/Maelstrom/source.html
status: playable
type: remake
updated: 2014-01-12
url: http://www.libsdl.org/projects/Maelstrom/
- name: 'Mafia II: Toolkit'
originals:
- Mafia II
type: tool
repo: 'https://github.com/Greavesy1899/Mafia2Toolkit'
url: 'https://mafiamods.com/mods/mafia-2-toolkit/'
development: active
lang:
- 'C#'
license:
- MIT
info: 'Modding tools such as a map editor, model exporter, material editor'
updated: 2020-08-25
images:
- https://mafiamods.com/wp-content/uploads/cmdm/165255/1580170866_132-1579280887-1378041516.png
- https://mafiamods.com/wp-content/uploads/cmdm/165255/1580170881_132-1579280933-563824247.png
- https://mafiamods.com/wp-content/uploads/cmdm/165255/1580170906_132-1579281675-1092920346.png
video:
youtube: Hw44ayHVV90
- name: Magarena
lang:
- Java
license:
- GPL3
development: sporadic
originals:
- 'Magic: The Gathering Online'
repo: https://github.com/magarena/magarena
status: playable
type: clone
url: https://magarena.github.io/
updated: 2021-04-01
images:
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/maincombat.jpg
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/duel-decks.jpg
- https://raw.githubusercontent.com/wiki/magarena/magarena/screenshots/deck-editor-screen.jpg
- name: Magical Life
type: similar
originals:
- RimWorld
repo: https://github.com/TBye101/MagicalLife
development: sporadic
status: semi-playable
lang:
- C#
framework:
- MonoGame
license:
- MIT
content: open
info: A fantasy world that imagines what a Rimworld style game could truly do if it had more elements in common with an RPG.
updated: 2020-08-31
video:
youtube: NV8WLheFxtM
- name: magiccarpet
lang:
- C++
license:
- As-is
development: halted
originals:
- Magic Carpet
repo: https://github.com/wonea/magiccarpet
type: remake
updated: 2016-04-20
- name: ManiaDrive
lang:
- C
- PHP
license:
- As-is
originals:
- TrackMania
repo: https://sourceforge.net/projects/maniadrive/files/maniadrive/1.2/ManiaDrive-1.2-src.tar.gz
type: remake
updated: 2016-05-16
url: http://maniadrive.raydium.org/
- name: Manic Digger
images:
- http://manicdigger.github.io/images/release_2015-08-22.png
- http://manicdigger.sourceforge.net/wiki/images/2/2c/2010-07-09_17-25-25.png
- http://manicdigger.sourceforge.net/wiki/images/5/55/2010-07-06_20-51-58.png
lang:
- C#
framework:
- OpenGL
license:
- PD
content: open
development: halted
originals:
- Minecraft
status: playable
multiplayer:
- Online
repo: https://github.com/manicdigger/manicdigger
type: remake
updated: 2021-07-25
url: http://manicdigger.sourceforge.net
- name: Manic Miner
lang:
- Blitz BASIC
license:
- Custom
originals:
- Manic Miner
repo: http://retrospec.sgn.net/download.php?link=mm&url=http://www.retrospec.sgn.net/users/anoble/files/ManicBB.zip
type: remake
updated: 2018-10-05
url: http://retrospec.sgn.net/game/mm
- name: Marble Madness 3d
lang:
- C++
license:
- As-is
development: halted
originals:
- Marble Madness
repo: https://github.com/davido262/marble-madness-3d
type: remake
updated: 2015-04-03
- name: Marblez
framework:
- Unity
images:
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen1.png
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen2.png
- https://raw.githubusercontent.com/mpgossage/Marblez/master/screen3.png
lang:
- C#
license:
- MIT
originals:
- Toobz
repo: https://github.com/mpgossage/Marblez
status: playable
type: clone
updated: 2017-12-12
- name: Mari0
images:
- https://i.imgur.com/M8NcU.gif
lang:
- Lua
license:
- CC-BY-NC-SA
framework:
- "L\xD6VE"
originals:
- Mario World
repo: https://github.com/Stabyourself/mari0
type: remake
updated: 2019-11-20
url: http://stabyourself.net/mari0/
- name: Maxit
images:
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183592.jpg
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183590.jpg
- https://a.fsdn.com/con/app/proj/maxit/screenshots/183588.jpg
lang:
- C++
license:
- BSD
development: sporadic
originals:
- Maxit
repo: https://github.com/textbrowser/maxit
type: remake
updated: 2015-05-09
url: http://sourceforge.net/projects/maxit/
- name: Mechanized Assault & eXploration Reloaded
images:
- http://www.maxr.org/images/screenshots/03.jpg
- http://www.maxr.org/images/screenshots/04.jpg
- http://www.maxr.org/images/screenshots/11.jpg
- http://www.maxr.org/images/screenshots/10.jpg
lang:
- C++
license:
- GPL2
- CC-BY-SA
development: sporadic
originals:
- M.A.X.
repo: https://git.maxr.org/maxr/maxr
type: remake
updated: 2019-08-17
url: http://www.maxr.org/
- name: MechCommander 2 Omnitech
lang:
- C++
license:
- MS-PL
development: halted
originals:
- MechCommander 2
repo: https://github.com/Echelon9/mechcommander2-open
type: remake
updated: 2015-04-08
- name: Mega Mario
images:
- http://a.fsdn.com/con/app/proj/mmario/screenshots/206808.jpg
- http://a.fsdn.com/con/app/proj/mmario/screenshots/206814.jpg
- http://a.fsdn.com/con/app/proj/mmario/screenshots/206810.jpg
lang:
- C++
license:
- LGPL2
development: halted
originals:
- Super Mario
status: playable
type: remake
updated: 2014-04-16
url: http://sourceforge.net/projects/mmario/
- name: MegaGlest
images:
- https://megaglest.org/uploads/images/Gallery/Screenshots/more_screens10.jpg
- https://megaglest.org/uploads/images/Gallery/Screenshots/screen44.jpg
info: Various mods are available.
lang:
- C
- C++
license:
- GPL3
- CC-BY-SA
development: active
originals:
- Glest
repo: https://github.com/MegaGlest/megaglest-source
status: playable
type: remake
updated: 2016-12-02
url: https://megaglest.org/
video:
youtube: glWKT8hDmjw
- name: Memoria
originals:
- Final Fantasy IX
type: remake
repo: 'https://github.com/Albeoris/Memoria'
development: complete
status: playable
content: commercial
lang:
- 'C#'
framework:
- Unity
license:
- MIT
updated: 2021-07-07
video:
youtube: cU4T3GSIjxs
- name: Meridian 59 German Server 112
lang:
- C
license:
- GPL2
development: active
originals:
- Meridian 59
repo: https://github.com/Arantis/Meridian59_112
type: remake
updated: 2016-03-16
url: http://meridian59.de
- name: Meridian 59 Server 105
lang:
- C
license:
- GPL2
development: active
originals:
- Meridian 59
repo: https://github.com/OpenMeridian105/Meridian59
type: remake
updated: 2016-03-16
url: https://www.meridiannext.com
- name: mewl
lang:
- C++
license:
- GPL2
development: sporadic
originals:
- M.U.L.E.
repo: https://github.com/LionsPhil/mewl
type: remake
updated: 2015-09-21
- name: Mice Men Remix
framework:
- LibGDX
lang:
- Java
license:
- LGPL3
development: complete
originals:
- Mice Men
repo: https://github.com/synkarius/micemen
status: playable
type: remake
updated: 2016-06-07
- name: Micropolis
lang:
- C++
- Python
license:
- GPL3
development: halted
originals:
- Simcity
status: playable
repo: https://github.com/SimHacker/micropolis
type: remake
updated: 2021-05-19
images:
- https://upload.wikimedia.org/wikipedia/commons/thumb/6/6d/Micropolis_-_big_city.png/640px-Micropolis_-_big_city.png
- https://micropolisonline.com/static/documentation/images/Micropolis_Facebook.png
- name: micropolisJS
lang:
- JavaScript
license:
- GPL3
development: sporadic
originals:
- Simcity
repo: https://github.com/graememcc/micropolisJS
type: remake
updated: 2019-08-27
url: http://www.graememcc.co.uk/micropolisJS/
- name: Microracers
images:
- http://microracers.sourceforge.net/images/screenshots/microracers-0.2-1.jpg
- http://microracers.sourceforge.net/images/screenshots/microracers-0.2-2.jpg
- http://microracers.sourceforge.net/images/screenshots/microracers-0.2-3.jpg
lang:
- C++
license:
- GPL2
development: halted
originals:
- Micro Machines
repo: http://microracers.cvs.sourceforge.net/viewvc/microracers/
type: remake
updated: 2015-04-15
url: http://microracers.sourceforge.net/
- name: Mindustry
type: similar
originals:
- Factorio
repo: https://github.com/Anuken/Mindustry
url: https://mindustrygame.github.io/
development: very active
status: playable
multiplayer:
- LAN
- Online
lang:
- Java
license:
- GPL3
content: open
info: A sandbox tower defense game
updated: 2020-12-23
images:
- https://mindustrygame.github.io/images/1.png
- https://mindustrygame.github.io/images/2.png
- https://mindustrygame.github.io/images/3.png
- name: MineClone 2
development: active
images:
- https://satoshiupload.com/images/DWimu2CTrE.png
- https://satoshiupload.com/images/6qS9a8vrCP.png
- https://i.imgur.com/1oOMc1L.png
- https://i.imgur.com/R7B0E54.png
lang:
- Lua
framework:
- Minetest Engine
license:
- GPL3
- CC-BY-SA
- CC0
content: open
originals:
- Minecraft
status: playable
multiplayer:
- Online
- LAN
repo: https://git.minetest.land/MineClone2/MineClone2
type: clone
info: A Minecraft Java Edition 1.12 clone built as a Minetest game
updated: 2021-06-26
url: https://content.minetest.net/packages/Wuzzy/mineclone2/
- name: Minecraft
originals:
- Minecraft
type: clone
repo: 'https://github.com/plane000/Minecraft'
development: active
status: unplayable
content: free
lang:
- C++
framework:
- OpenGL
license:
- As-is
info: A Minecraft clone written in C++ with OpenGL
updated: 2019-10-24
images:
- 'https://imgur.com/fUf4U4R.png'
- name: MineCraft-One-Week-Challenge
type: clone
originals:
- Minecraft
repo: https://github.com/Hopson97/MineCraft-One-Week-Challenge
development: active
status: semi-playable
lang:
- C++
framework:
- SFML
license:
- MIT
content: open
updated: 2019-05-03
images:
- https://camo.githubusercontent.com/897d01a707f6a117284446dffd45998c3a98aaef/687474703a2f2f692e696d6775722e636f6d2f6d7a557771506f2e706e67
video:
youtube: Xq3isov6mZ8
- name: minecraft-weekend
originals:
- Minecraft
type: clone
repo: 'https://github.com/jdah/minecraft-weekend'
development: complete
status: playable
lang:
- C
framework:
- OpenGL
license:
- MIT
updated: '2020-05-10'
video:
youtube: 4O0_-1NaWnY
- name: Mines
originals:
- Minesweeper
type: clone
repo: https://gitlab.gnome.org/GNOME/gnome-mines
url: https://wiki.gnome.org/Apps/Mines
development: very active
status: playable
content: free
lang:
- Vala
license:
- GPL3
updated: 2019-11-14
images:
- https://people.gnome.org/~mcatanzaro/gnome-mines.png
- name: Minesweeper
info: iOS
lang:
- F#
license:
- As-is
development: halted
originals:
- Minesweeper
repo: https://github.com/rachelreese/Minesweeper
type: remake
updated: 2015-09-28
- name: Minesweeper (DouglasMeyer)
development: halted
framework:
- React
- Redux
lang:
- JavaScript
license:
- As-is
content: free
originals:
- Minesweeper
repo: https://github.com/DouglasMeyer/minesweeper
status: playable
type: remake
updated: 2016-02-06
url: http://www.douglas-meyer.name/minesweeper/
- name: Minesweeper (in C)
type: remake
originals:
- Minesweeper
repo: https://github.com/brenns10/minesweeper
development: halted
lang:
- C
license:
- BSD
content: open
info: This is a command line minesweeper game in C.
updated: 2019-08-31
- name: Minesweeper (Vue.js)
originals:
- Minesweeper
type: clone
url: 'https://github.com/aashrafh/minesweeper'
development: complete
status: playable
lang:
- JavaScript
framework:
- Vue.js
license:
- As-is
updated: '2020-10-20'
images:
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-1.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-2.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-3.png'
- 'https://github.com/aashrafh/minesweeper/raw/master/demo/minesweeper-4.png'
- name: minesweeper-rs
originals:
- Minesweeper
type: clone
repo: 'https://github.com/robmikh/minesweeper-rs'
development: sporadic
status: playable
content: open
lang:
- Rust
license:
- MIT
info: A port of robmikh/Minesweeper using winrt-rs
updated: '2020-10-11'
images:
- https://user-images.githubusercontent.com/7089228/80656536-45ac2c80-8a36-11ea-8521-ab40fc922ce1.gif
- name: Minesweeper.Zone
development: active
images:
- https://minesweeper.zone/minesweeper.jpg
info: Open source JavaScript Minesweeper clone with high scores
lang:
- JavaScript
license:
- MIT
content: open
originals:
- Minesweeper
repo: https://github.com/reed-jones/minesweeper_js
status: playable
type: remake
updated: 2017-04-12
url: https://minesweeper.zone
- name: Minetest
development: active
images:
- http://www.minetest.net/media/gallery/1.jpg
- http://www.minetest.net/media/gallery/6.jpg
lang:
- C
- C++
- Lua
license:
- LGPL2
- CC-BY-SA
content: open
originals:
- Minecraft
status: playable
multiplayer:
- Online
- LAN
repo: https://github.com/minetest/minetest
info: Mintest is an engine, but ships with the game Minetest Game
type: similar
updated: 2021-06-26
url: https://www.minetest.net/
- name: Minima
images:
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaWorld.png
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaTown.png
- https://raw.githubusercontent.com/Feneric/Minima/master/MinimaDungeon.png
lang:
- Lua
framework:
- PICO-8
license:
- GPL3
development: active
originals:
- 'Ultima III: Exodus'
repo: https://github.com/Feneric/Minima
status: playable
type: clone
url: https://feneric.itch.io/minima
updated: 2020-05-19
- name: Mining Haze
images:
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177162.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177272.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177625.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177621.jpg
- https://a.fsdn.com/con/app/proj/mininghaze/screenshots/177623.jpg
lang:
- C
license:
- GPL2
development: halted
originals:
- Boulder Dash
repo: http://iweb.dl.sourceforge.net/project/mininghaze/mininghaze/0.1/mining-haze-0.1.tar.gz
type: remake
updated: 2015-04-15
url: http://sourceforge.net/projects/mininghaze/
- name: Mininim
lang:
- C
framework:
- Allegro
license:
- GPL3
development: sporadic
status: playable
content: open
originals:
- Prince of Persia
repo: https://github.com/oitofelix/mininim
type: remake
updated: 2017-01-12
url: http://oitofelix.github.io/mininim/
video:
youtube: 91QCqPMssj4
- name: Mirror Magic
lang:
- C
license:
- GPL2
development: halted
originals:
- Deflektor
status: playable
type: remake
updated: 2014-01-12
url: http://www.artsoft.org/mirrormagic/
- name: Missile Command
images:
- https://camo.githubusercontent.com/7e8455e7b2c909a2977815c861ab6bf9a053bee4/687474703a2f2f692e696d6775722e636f6d2f7747556a592e706e67
lang:
- Lua
license:
- As-is
development: halted
originals:
- Missile Command
repo: https://github.com/chadpaulson/missile-command
status: playable
type: remake
updated: 2014-08-16
url: https://github.com/chadpaulson/missile-command
video:
youtube: DviEWbUvv2Y
- name: 'Mission ELITE: The Battle For Birera'
images:
- https://1.bp.blogspot.com/_zJ6-FHWQvDE/R0e_NhJFakI/AAAAAAAAACw/tgysRPXJfeU/s400/el-14.jpg
lang:
- C
license:
- As-is
development: halted
originals:
- Elite
repo: http://www.mediafire.com/?ddmmswi1ngw
type: remake
updated: 2015-04-08
url: http://polarelephant.blogspot.co.uk/2007/10/elite-remake.html
- name: mc2
lang:
- C++
framework:
- OpenGL
license:
- GPL3
development: sporadic
originals:
- MechCommander 2
repo: https://github.com/alariq/mc2
type: remake
updated: 2021-04-03
url: https://alariq.github.io/mc2-website/
- name: mk.js
lang:
- JavaScript
license:
- MIT
development: halted
originals:
- Mortal Kombat
repo: https://github.com/mgechev/mk.js
status: playable
type: remake
updated: 2015-05-19
url: http://mk.mgechev.com/
- name: mkxp
info: RGSS (XP, VX, VX Ace) implementation
lang:
- C++
license:
- GPL2
development: sporadic
originals:
- RPG Maker
repo: https://github.com/Ancurio/mkxp
status: playable
type: clone
updated: 2017-10-20
- name: Mocha Doom
images:
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/331375.jpg
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/331379.jpg
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/331381.jpg
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/331377.jpg
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/331383.jpg
- https://a.fsdn.com/con/app/proj/mochadoom/screenshots/287749.jpg
lang:
- Java
license:
- GPL3
development: halted
originals:
- Doom
- Heretic
- Hexen
repo: https://github.com/AXDOOMER/mochadoom
type: remake
updated: 2019-12-06
url: http://mochadoom.sourceforge.net/
- name: 'Mojotron: Robot Wars'
lang:
- C++
license:
- GPL2
development: active
originals:
- 'Robotron: 2084'
repo: https://gitlab.com/dulsi/mojotron/
status: playable
type: clone
updated: 2021-09-18
- name: MonoStrategy
development: halted
images:
- https://archive.codeplex.com/projects/monostrategy/04de7eb2-4534-4a93-bd89-9fb29773a4b2
- https://archive.codeplex.com/projects/monostrategy/701a748f-496d-4d0a-817e-52bc03df79c0
lang:
- C#
license:
- AGPL3
content: commercial
originals:
- The Settlers III
repo: https://monostrategy.codeplex.com/SourceControl/latest
type: remake
updated: 2017-05-29
url: https://monostrategy.codeplex.com/
- name: Monsters and Mushrooms
images:
- http://pygame.org/shots/989.png
lang:
- Python
license:
- GPL2
development: halted
originals:
- Millipede
repo: https://github.com/llopisdon/monsters_and_mushrooms
type: remake
updated: 2019-11-20
url: http://pygame.org/project-Monsters+and+Mushrooms-989-.html
- name: Monty Mole PC remake
images:
- https://a.fsdn.com/con/app/proj/montymole/screenshots/28062.jpg
- https://a.fsdn.com/con/app/proj/montymole/screenshots/28060.jpg
lang:
- C++
license:
- As-is
development: halted
originals:
- Monty Mole
repo: https://sourceforge.net/projects/montymole/
type: remake
updated: 2015-04-13
url: http://montymole.sourceforge.net
- name: Morpheus Web Remake
content: free
images:
- https://soapbubble-morpheus-dev.s3-us-west-2.amazonaws.com/morpheus.jpg
lang:
- JavaScript
license:
- MIT
development: active
originals:
- Morpheus
repo: https://github.com/soap-bubble/web
status: playable
type: remake
updated: 2019-06-08
url: https://soapbubble.itch.io/morpheus
info: HTML5 WebGL implementation with PC/Mac/Linux/Android application wrappers
framework:
- React
- Redux
- Rx.js
- three.js
- Tween.js
- name: A Mouse's Vengeance
lang:
- Java
license:
- As-is
development: halted
originals:
- Rodent's Revenge
repo: https://github.com/maxxboehme/A_Mouses_Vengeance
type: remake
updated: 2019-04-16
status: playable
content: free
images:
- https://raw.githubusercontent.com/maxxboehme/A_Mouses_Vengeance/master/doc/images/ExampleAMousesVengeance.gif
- name: movbizz
lang:
- PHP
- JavaScript
license:
- MIT
development: active
originals:
- Movie Business
repo: https://github.com/teruk/movbizz
type: remake
updated: 2019-09-13
- name: Mr.Boom
framework:
- SDL
images:
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-0.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-1.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-2.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-3.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-4.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-5.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-6.gif
- https://github.com/Javanaise/mrboom-libretro/raw/master/tests/screenshots/mrboom-7.gif
lang:
- C++
license:
- MIT
development: active
originals:
- Bomberman
repo: https://github.com/Javanaise/mrboom-libretro
status: playable
type: remake
updated: 2018-08-04
url: http://mrboom.mumblecore.org
multiplayer: [Online]
- name: multi-pong
originals:
- Pong
type: remake
repo: 'https://github.com/Hopson97/multi-pong'
development: sporadic
status: semi-playable
multiplayer:
- Online
- Competitive
content: free
lang:
- C++
framework:
- SFML
license:
- As-is
info: Multiplayer pong using UDP sockets and a client/server model.
updated: 2019-10-18
images:
- 'https://i.imgur.com/0LUS5bS.gif'
- 'https://i.imgur.com/i1iTugw.gif'
- name: World of Might and Magic
type: remake
originals:
- 'Might and Magic VI: The Mandate of Heaven'
- 'Might and Magic VII: For Blood and Honor'
- 'Might and Magic VIII: Day of the Destroyer'
repo: https://github.com/gp-alex/world-of-might-and-magic
development: sporadic
status: playable
lang:
- C++
license:
- GPL3
content: free
info: Based on original executable decompilation, the engine allows to play any of the original games built using it
updated: 2020-08-25
images:
- https://user-images.githubusercontent.com/24377109/79051879-f04cde80-7c32-11ea-939d-1dcc97b46f5d.png
- https://user-images.githubusercontent.com/24377109/79051881-f17e0b80-7c32-11ea-82cd-5e4993a1c071.png
- https://user-images.githubusercontent.com/24377109/79051882-f3e06580-7c32-11ea-974f-414f68394190.png
- https://user-images.githubusercontent.com/24377109/79051883-f5119280-7c32-11ea-801c-1595709d8060.png
- https://user-images.githubusercontent.com/24377109/79051217-491a7800-7c2f-11ea-85c7-f9120b7d79dd.png