-
Notifications
You must be signed in to change notification settings - Fork 3
/
GEN_romhacks.xml
1563 lines (1563 loc) · 116 KB
/
GEN_romhacks.xml
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
<datafile>
<game name="1329 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Here in this patch you have a fully playable Shiva (replaces Max), with new moves and new custom sprites!</info>
<patch crc="4902D9B5" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1329/</url>
<patch_id>1329</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1330 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch places the famous DC Comics heroes Batman and Superman into the game. Now you can take on Mr. X and his Syndicate with the Dark Knight and the Man of Steel!</info>
<patch crc="DDE46A59" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1330/</url>
<patch_id>1330</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1331 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This hack replaces Blaze with a liquid-metal T-X killing machine, aka Terminatrix, inspired by that seen in Terminator 3!</info>
<patch crc="FB811913" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1331/</url>
<patch_id>1331</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1332 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch replaces Blaze with an android/Terminatrix version of the Lightning character from FFXIII, with new attacks. Also has a death counter.</info>
<patch crc="28F0F2DD" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1332/</url>
<patch_id>1332</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1333 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Rock and Roll from the classic Mega Man franchise decide to tackle Mr. X&#8217;s Syndicate in this great ROM hack. Sprites from Marvel vs. Capcom replace Axel and Blaze.</info>
<patch crc="4FE7FE6" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1333/</url>
<patch_id>1333</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1334 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This hack replaces all selectable characters in SOR2 with a selection from the classic Capcom beat &#8216;em up Street Fighter II.</info>
<patch crc="6AFEA120" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1334/</url>
<patch_id>1334</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1335 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Before her adventure in Final Fantasy XIII, Lightning was a fighter under the tutelage of Axel Stone! Thanks to him, she learned to merge her powers of lightning with martial arts. Thanks to klares for this hack.</info>
<patch crc="51B0F3FC" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1335/</url>
<patch_id>1335</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1336 - Bare Knuckle III (Japan)">
<description>Bare Knuckle III (Japan)</description>
<info>This hack replaces Axel with his robotic double Break, and also includes playable Shiva and Ash. Use with Bare Knuckle 3 ROM!</info>
<patch crc="B6B48539" name="Bare Knuckle III (Japan).ips">
<url>https://www.romhacking.net/hacks/1336/</url>
<patch_id>1336</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="5D09236F" md5="F1CB9E887BF4BC512D9535C89E420DF7" name="Bare Knuckle III (Japan).md" sha1="B9B2B4A98A9D8F4C49AA1E5395E2279339517FDB"/>
</game>
<game name="1337 - Bare Knuckle III (Japan)">
<description>Bare Knuckle III (Japan)</description>
<info>This patch will place previously hidden and unused sound effects from the ROM within the in-game sound test.</info>
<patch crc="7090B080" name="Bare Knuckle III (Japan).ips">
<url>https://www.romhacking.net/hacks/1337/</url>
<patch_id>1337</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="5D09236F" md5="F1CB9E887BF4BC512D9535C89E420DF7" name="Bare Knuckle III (Japan).md" sha1="B9B2B4A98A9D8F4C49AA1E5395E2279339517FDB"/>
</game>
<game name="1341 - Bare Knuckle - Ikari no Tekken ~ Streets of Rage (World)">
<description>Bare Knuckle - Ikari no Tekken ~ Streets of Rage (World)</description>
<info>Think the game is too easy? Try this &#8216;Killer&#8217; difficulty hack!</info>
<patch crc="7A90604E" name="Bare Knuckle - Ikari no Tekken ~ Streets of Rage (World).ips">
<url>https://www.romhacking.net/hacks/1341/</url>
<patch_id>1341</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1927titlescreen.png</image>
</patch>
<rom crc="BFF227C6" md5="569CFEC15813294A8F0CF88CCCC8C151" name="Bare Knuckle - Ikari no Tekken ~ Streets of Rage (World).md" sha1="3D74DBC81F3472A5BDE45BF265E636A72A314667"/>
</game>
<game name="1342 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This ROM patch places Ash on the character select screen and is fully playable.</info>
<patch crc="998A2F21" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1342/</url>
<patch_id>1342</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1343 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Another modification of the &#8220;Extreme Edition&#8221; patch. The playable bosses from Bare Knuckle III join the team to take down Mr. X. Abadede was looking for excitement and decided to join as well.</info>
<patch crc="1A620836" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1343/</url>
<patch_id>1343</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1344 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch creates a new &#8220;extreme&#8221; challenge for the seasoned SOR2 player. Features include:</info>
<patch crc="C6F628F8" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1344/</url>
<patch_id>1344</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1344titlescreen.jpg</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1345 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This ROM patch restores the characters in Streets of Rage 3 to their superior Bare Knuckle III colors. The current version (3.13) restores the changed characters&#8217; (ie. Axel, Blaze and Skate) sprites, status bar icons and cut scene pictures amongst other things.</info>
<patch crc="7E76D090" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1345/</url>
<patch_id>1345</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1346 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>The Streets of Rage 3 Project is a pair of patches for Bare Knuckle III and Streets of Rage 3, aiming to give a more complete feel to the original game. Game-play is enhanced with lots of bug-fixes, stage 6 hidden areas and bike stages improvements, and a lot more. Consider it a cousin of the discontinued &#8216;Director&#8217;s Cut DX&#8217; hack</info>
<patch crc="F86183CE" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1346/</url>
<patch_id>1346</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1347 - Bare Knuckle III (Japan)">
<description>Bare Knuckle III (Japan)</description>
<info>This hack makes numerous modifications to the mechanics of the game:</info>
<patch crc="D7C5DC72" name="Bare Knuckle III (Japan).ips">
<url>https://www.romhacking.net/hacks/1347/</url>
<patch_id>1347</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1347titlescreen.gif</image>
</patch>
<rom crc="5D09236F" md5="F1CB9E887BF4BC512D9535C89E420DF7" name="Bare Knuckle III (Japan).md" sha1="B9B2B4A98A9D8F4C49AA1E5395E2279339517FDB"/>
</game>
<game name="1353 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This patch replaces Blaze with an android/Terminatrix version of the Lightning character from FF-XIII, with new attacks. Also has a death counter. Also comes with a trainer version for easier game-play.</info>
<patch crc="4E23D701" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1353/</url>
<patch_id>1353</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1354 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This patch will add/unlock various cheats in-game:</info>
<patch crc="12985587" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1354/</url>
<patch_id>1354</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1355 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>Sonic the Hedgehog is back in Streets of Rage 3, with new special attacks, and the ability to change into Super Sonic during the 3-star blitz attack!</info>
<patch crc="DCD595D6" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1355/</url>
<patch_id>1355</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1356 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>On this hack all enemies spawn many times, but they have low energy. Great if you want that little bit of an extra challenge! Compatible with other hacks.</info>
<patch crc="971F4A0B" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1356/</url>
<patch_id>1356</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1357 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>The T-X is back! We can now play SOR3 as the Terminatrix inspired &#8216;Android Ruby&#8217;, complete with new special moves, including the &#8220;Draco Summon&#8221;.</info>
<patch crc="4A648ACC" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1357/</url>
<patch_id>1357</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1358 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch is a modification of the &#8220;Extreme Edition&#8221; patch, with Frank &#8220;The Punisher&#8221; Castle now as a playable character! It was produced to showcase the abilities of the SOR Pancake hacking tool. For his special attacks he rolls and used his guns to dispatch his enemies quickly! A must for any Punisher fans!</info>
<patch crc="ED144DCD" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1358/</url>
<patch_id>1358</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1359 - Bare Knuckle III (Japan)">
<description>Bare Knuckle III (Japan)</description>
<info>This hack replaces Zan with villain Electra as a playable character. (or &#8216;Elle&#8217;, as she became known in SOR)</info>
<patch crc="A2D50336" name="Bare Knuckle III (Japan).ips">
<url>https://www.romhacking.net/hacks/1359/</url>
<patch_id>1359</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="5D09236F" md5="F1CB9E887BF4BC512D9535C89E420DF7" name="Bare Knuckle III (Japan).md" sha1="B9B2B4A98A9D8F4C49AA1E5395E2279339517FDB"/>
</game>
<game name="1360 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This hack replaces Zan and Roo on the character select screen with Shiva and Ash (complete with portraits and stats). Both players can select either character, and all 6 characters are available at continue.</info>
<patch crc="810643C8" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1360/</url>
<patch_id>1360</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1361 - Streets of Rage 3 (USA)">
<description>Streets of Rage 3 (USA)</description>
<info>This ROM patch allows you to have as Lightning from Final Fantasy XIII as a fully playable character in Streets Of Rage 3.</info>
<patch crc="BBB4C4A1" name="Streets of Rage 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1361/</url>
<patch_id>1361</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="D5BB15D9" md5="2D0B0C8F10EDF76131708E874E8D1EE4" name="Streets of Rage 3 (USA).md" sha1="40A33DD6F9DAB0AFF26C7525C9B8F342482C7AF6"/>
</game>
<game name="1362 - Bare Knuckle III (Japan)">
<description>Bare Knuckle III (Japan)</description>
<info>Ash and Shiva both appear on the select screen (with portraits) in addition to all of the other characters if you do the Roo code (On the title screen hold Up+B on Controller 1 and press Start). Characters are then fully playable.</info>
<patch crc="F252F6ED" name="Bare Knuckle III (Japan).ips">
<url>https://www.romhacking.net/hacks/1362/</url>
<patch_id>1362</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1276titlescreen.jpg</image>
</patch>
<rom crc="5D09236F" md5="F1CB9E887BF4BC512D9535C89E420DF7" name="Bare Knuckle III (Japan).md" sha1="B9B2B4A98A9D8F4C49AA1E5395E2279339517FDB"/>
</game>
<game name="1363 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This ROM hack from gsaurus replaces Blaze with Sketch Turner from the classic game Comix Zone. The hack comes with same character cheat for those who want to play with two Sketches cooperatively.</info>
<patch crc="2094DA18" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1363/</url>
<patch_id>1363</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1364 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>SNK fans will like this one, as Kurenai from the classic Neo Geo title &#8216;Sengoku 3&#8242; makes an appearance in SOR2.</info>
<patch crc="F846D0A2" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1364/</url>
<patch_id>1364</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1365 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Cody Travers from Final Fight decides to take down the Syndicate in this hack.</info>
<patch crc="70FCF272" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1365/</url>
<patch_id>1365</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1366 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch will replace Max with Joe Musashi from Sega&#8217;s classic &#8220;Shinobi&#8221; gaming series as a fully playable character.</info>
<patch crc="B15C131E" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1366/</url>
<patch_id>1366</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1378 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>Come quietly or there will be trouble! In this patch, Robocop joins forces with the ED209 robot to bring down Mr. X and his Syndicate. Dead or alive, you&#8217;re coming with me! Four&#8230; three&#8230; two&#8230; one&#8230; now authorized to use physical force! Complete with the relevant sound effects &#038; a complete different character game-play style!</info>
<patch crc="D7932E91" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1378/</url>
<patch_id>1378</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1379 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This hack replaces Blaze with the ninja assassin Rudra from SORR v5! They said it couldn&#8217;t be done, but here it is!</info>
<patch crc="8E824D20" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/1379/</url>
<patch_id>1379</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="1404 - Phantasy Star II (USA, Europe) (Rev A)">
<description>Phantasy Star II (USA, Europe) (Rev A)</description>
<info>The purpose of this hack is to mitigate many of the flaws of Phantasy Star II in order to create an overall play experience more similar to that of Phantasy Star IV. This means decreasing the amount of level and money grinding, increasing the number of references to other games in the series, some translation improvement, bug correction, and more.</info>
<patch crc="C27CAFB6" name="Phantasy Star II (USA, Europe) (Rev A).ips">
<url>https://www.romhacking.net/hacks/1404/</url>
<patch_id>1404</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/66titlescreen.png</image>
</patch>
<rom crc="904FA047" md5="0FA38B12CF0AB0163D865600AC731A9A" name="Phantasy Star II (USA, Europe) (Rev A).md" sha1="0711080E968490A6B8C5FAFBB9DB3E62BA597231"/>
</game>
<game name="1460 - James Pond II - Codename - Robocod (USA, Europe)">
<description>James Pond II - Codename - Robocod (USA, Europe)</description>
<info>This is James Pond 2 Expert Edition. Inspired by High Seas Havoc&#8217;s expert level, this plays exactly the same as the original, with the only differences are that you have only one power bar, and the cheats in the game are disabled. Good luck with this, you&#8217;ll need it.</info>
<patch crc="DD34855D" name="James Pond II - Codename - Robocod (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/1460/</url>
<patch_id>1460</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1460titlescreen.png</image>
</patch>
<rom crc="F4ABEDBA" md5="BB689DD3822853A5417CDEC4A3DA114B" name="James Pond II - Codename - Robocod (USA, Europe).md" sha1="E00C9AB1F22AEED3031ED9DD985539AA6E31A7A4"/>
</game>
<game name="151 - Mortal Kombat (World)">
<description>Mortal Kombat (World)</description>
<info>This rom hack is mostly for fixing those DULLARD cheat menu options to have more clear descriptions, like the Sega CD version has. But I also enabled the blood and changed &#8220;Rayden&#8221; to have his correct name &#8220;Raiden&#8221;.</info>
<patch crc="3DEC7940" name="Mortal Kombat (World).ips">
<url>https://www.romhacking.net/hacks/151/</url>
<patch_id>151</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/930titlescreen.png</image>
</patch>
<rom crc="1AA3A207" md5="A1DD8A3E4B8C98DEE49D5E90D6B87903" name="Mortal Kombat (World).md" sha1="C098BF38DDD755AB7CAA4612D025BE2039009EB2"/>
</game>
<game name="1528 - Double Dragon (USA, Europe) (Unl)">
<description>Double Dragon (USA, Europe) (Unl)</description>
<info>This is a hack of Double Dragon for the Sega Genesis. It fixes two problems of this port. It reduces the walking speed of enemies to make the game much more like the arcade game. Also, throwable objects such as cardboard boxes and barrels will not break after two throws. The value of throws was set to FF (255) so they should never break during normal gameplay.</info>
<patch crc="2F519035" name="Double Dragon (USA, Europe) (Unl).ips">
<url>https://www.romhacking.net/hacks/1528/</url>
<patch_id>1528</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1964titlescreen.jpg</image>
</patch>
<rom crc="054F5D53" md5="6C34E2FD2B6800194DFAD16FADAEF820" name="Double Dragon (USA, Europe) (Unl).md" sha1="F054FB2C16A78CE5F5CE20A36BF0F2634F169969"/>
</game>
<game name="1667 - Sonic The Hedgehog (USA, Europe)">
<description>Sonic The Hedgehog (USA, Europe)</description>
<info>Kirby in Sonic the Hedgehog as you truly imagined, minus the useless copy abilities. The Hack also features <span class="italic">REV01 background effects, and bugfixes</span>. Kirby can inhale monitors and most enemies but cannot copy their abilities. Life counter function as Health points and the only way to obtain Health is grabbing every 50+ Rings, Lampposts, Randomized 1Up Monitors, or Score every 50000+ points. The hack also contains 4 Difficulty modes.</info>
<patch crc="D8659C4" name="Sonic The Hedgehog (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/1667/</url>
<patch_id>1667</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1667titlescreen.png</image>
</patch>
<rom crc="F9394E97" md5="1BC674BE034E43C96B86487AC69D9293" name="Sonic The Hedgehog (USA, Europe).md" sha1="6DDB7DE1E17E7F6CDB88927BD906352030DAA194"/>
</game>
<game name="1674 - Sonic The Hedgehog (USA, Europe)">
<description>Sonic The Hedgehog (USA, Europe)</description>
<info><span class="bold">Metal Sonic Hyperdrive</span> is a heavy modification of Sonic the Hedgehog (1991) by <span class="italic">Darkon360</span> for the Sega Genesis. with brand new Zones, Sonic CD style gameplay, Music, Playable Characters, and Modes. Starting Metal Sonic, taking Sonic&#8217;s role as the main protagonist to stop Dr.Robotnik&#8217;s greatest inventions yet. Also starting special guests such as <span class="italic">Kirby</span>, and <span class="italic">Somari</span>.</info>
<patch crc="655DC7ED" name="Sonic The Hedgehog (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/1674/</url>
<patch_id>1674</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1674titlescreen.png</image>
</patch>
<rom crc="F9394E97" md5="1BC674BE034E43C96B86487AC69D9293" name="Sonic The Hedgehog (USA, Europe).md" sha1="6DDB7DE1E17E7F6CDB88927BD906352030DAA194"/>
</game>
<game name="1676 - High Seas Havoc (USA)">
<description>High Seas Havoc (USA)</description>
<info>This small patch includes data for the unused can of fish, which was left out in High Seas Havoc for unknown reasons. When picked up, this can of fish will heal 75% health, as well as give you the speed boost that the boots give you as well. Some boxes have been changed to include the can of fish. Readme included in the zip.</info>
<patch crc="F91C9AF7" name="High Seas Havoc (USA).ips">
<url>https://www.romhacking.net/hacks/1676/</url>
<patch_id>1676</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1676titlescreen.png</image>
</patch>
<rom crc="17BE551C" md5="5479601228FD14FEFBD1D1FD5FCEEBED" name="High Seas Havoc (USA).md" sha1="0DC1969098716BA332978B89356F62961417682B"/>
</game>
<game name="1722 - Mortal Kombat II (World)">
<description>Mortal Kombat II (World)</description>
<info>Spanish translation of <a href="http://www.romhacking.net/hacks/596/">Mortal Kombat II: Unlimited</a>.</info>
<patch crc="BEDC6753" name="Mortal Kombat II (World).ips">
<url>https://www.romhacking.net/hacks/1722/</url>
<patch_id>1722</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1722titlescreen.png</image>
</patch>
<rom crc="A9E013D8" md5="C8E887CA9CDDE7BDE85F324F66D34B2D" name="Mortal Kombat II (World).md" sha1="AF6D2DB16F2B76940FF5A9738F1E00C4E7EA485E"/>
</game>
<game name="176 - Sonic The Hedgehog (USA, Europe)">
<description>Sonic The Hedgehog (USA, Europe)</description>
<info>This is a near perfect hack that adds the Spindash into Sonic The Hedgehog. It is perfect in execution and effect. The only thing lacking is the spin animation during peelout.</info>
<patch crc="132B3170" name="Sonic The Hedgehog (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/176/</url>
<patch_id>176</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/863titlescreen.png</image>
</patch>
<rom crc="F9394E97" md5="1BC674BE034E43C96B86487AC69D9293" name="Sonic The Hedgehog (USA, Europe).md" sha1="6DDB7DE1E17E7F6CDB88927BD906352030DAA194"/>
</game>
<game name="186 - Sonic The Hedgehog 2 (World) (Beta) (June, 1992)">
<description>Sonic The Hedgehog 2 (World) (Beta) (June, 1992)</description>
<info>This fixes Green Hill Zone&#8217;s collision errors in the recently discovered early prototype of Sonic the Hedgehog 2. You must select Green Hill Zone from the level select menu (code below). This hack also enables Tails in Emerald Hill Zone.</info>
<patch crc="5CDD476D" name="Sonic The Hedgehog 2 (World) (Beta) (June, 1992).ips">
<url>https://www.romhacking.net/hacks/186/</url>
<patch_id>186</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/186titlescreen.png</image>
</patch>
<rom crc="39FAAA70" md5="A460BF633579A80EEBBC09D6809E1B09" name="Sonic The Hedgehog 2 (World) (Beta) (June, 1992).md" sha1="5B51B4D98CB4A7A38157DC4AB9462164DD224BFD"/>
</game>
<game name="1863 - Dune - The Battle for Arrakis (USA)">
<description>Dune - The Battle for Arrakis (USA)</description>
<info>Dune Razor Missions is a hack which gives you 5 new campaigns to play. It also has new balance, new units, additional controls etc.</info>
<patch crc="C951195F" name="Dune - The Battle for Arrakis (USA).ips">
<url>https://www.romhacking.net/hacks/1863/</url>
<patch_id>1863</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/1863titlescreen.png</image>
</patch>
<rom crc="4DEA40BA" md5="D4DF66F77D52718798EC07D350D3A3CD" name="Dune - The Battle for Arrakis (USA).md" sha1="0F7C1C130CB39ABC97F57545933E1EF6C481783D"/>
</game>
<game name="1943 - NHL 94 (UE) [h1C]">
<description>NHL 94 (UE) [h1C]</description>
<info>ROM created by top shelf with many thanks to slapshot for letting me use his Canada Cup NHL94 rosters/player ratings.</info>
<patch crc="34990B83" name="NHL 94 (UE) [h1C].ips">
<url>https://www.romhacking.net/hacks/1943/</url>
<patch_id>1943</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/2092titlescreen.png</image>
</patch>
<rom crc="ea6be931" md5="307054374db3d1c67de472f8b193b87a" name="NHL 94 (UE) [h1C].bin"/>
</game>
<game name="1960 - Ayrton Senna's Super Monaco GP II (USA) (En,Ja)">
<description>Ayrton Senna's Super Monaco GP II (USA) (En,Ja)</description>
<info>Ayrton Senna&#8217;s Super Monaco GP II for the Genesis was one of the best racing games released for the SEGA console: it was by no means a realistic simulation (cars behave with a distinct arcade feeling) but it provided a good sense of speed, adequate challenge and some features which were quite innovative at the time (such as slipstreaming and variable weather).</info>
<patch crc="E24EDD3D" name="Ayrton Senna's Super Monaco GP II (USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1960/</url>
<patch_id>1960</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1644titlescreen.png</image>
</patch>
<rom crc="EAC8DED6" md5="FAD33D8300F3AF2E1C81D74E2F37B688" name="Ayrton Senna's Super Monaco GP II (USA) (En,Ja).md" sha1="1EE87744D86C4BDD4958CC70D77538351AA206E6"/>
</game>
<game name="2081 - Midnight Resistance (USA)">
<description>Midnight Resistance (USA)</description>
<info>This patch aims to change some things to make graphically close to the original arcade game.</info>
<patch crc="1295F06E" name="Midnight Resistance (USA).ips">
<url>https://www.romhacking.net/hacks/2081/</url>
<patch_id>2081</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2081titlescreen.png</image>
</patch>
<rom crc="187C6AF6" md5="809534B635E726F57BF1D95F3E6D7468" name="Midnight Resistance (USA).md" sha1="6CDD9083E2FF72CFB0099FD57A7F9EADE9A74DDA"/>
</game>
<game name="2082 - Golden Axe (World) (Rev A)">
<description>Golden Axe (World) (Rev A)</description>
<info>This patch changes the colours for the game Golden Axe for the MegaDrive, aiming to match the original arcade release as much as possible.</info>
<patch crc="3581C479" name="Golden Axe (World) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2082/</url>
<patch_id>2082</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2082titlescreen.png</image>
</patch>
<rom crc="665D7DF9" md5="E4263C39487F0B55E8F33CBD5ACD9B93" name="Golden Axe (World) (Rev A).md" sha1="2CE17105CA916FBBE3AC9AE3A2086E66B07996DD"/>
</game>
<game name="2083 - OutRun (Japan)">
<description>OutRun (Japan)</description>
<info>This patch changes the colours for the game OutRun for the MegaDrive, aiming to match the original arcade release as much as possible.</info>
<patch crc="44967678" name="OutRun (Japan).ips">
<url>https://www.romhacking.net/hacks/2083/</url>
<patch_id>2083</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2083titlescreen.png</image>
</patch>
<rom crc="EE7D9F4A" md5="66EB83DB18506107E3FC8DFEAF7BB031" name="OutRun (Japan).md" sha1="A94C96FFB53080B2C098BE86E715F1DC727BE07D"/>
</game>
<game name="2084 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This patch is just a personal touch in this game that is already excellent. </info>
<patch crc="1838B83D" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2084/</url>
<patch_id>2084</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2084titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2090 - Street Fighter II' - Special Champion Edition (U) [f1]">
<description>Street Fighter II' - Special Champion Edition (U) [f1]</description>
<info>This patch aims to improve and remedy some existing problems in this classic for the Mega Drive. Now the game is much more faithful to the original arcade. </info>
<patch crc="5A5AE4AD" name="Street Fighter II' - Special Champion Edition (U) [f1].ips">
<url>https://www.romhacking.net/hacks/2090/</url>
<patch_id>2090</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2090titlescreen.jpg</image>
</patch>
<rom crc="90fe09ae" md5="0755d95e4b5205974c445720947464bb" name="Street Fighter II' - Special Champion Edition (U) [f1].bin"/>
</game>
<game name="2104 - Golden Axe II (World)">
<description>Golden Axe II (World)</description>
<info>This patch aims to improve the use of colors Golden Axe 2 for Mega Drive enhancing the overall look of the game. </info>
<patch crc="B7520829" name="Golden Axe II (World).ips">
<url>https://www.romhacking.net/hacks/2104/</url>
<patch_id>2104</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2104titlescreen.gif</image>
</patch>
<rom crc="725E0A18" md5="2CD3573172961FA52F622F14CCFF4E1A" name="Golden Axe II (World).md" sha1="31F12A21AF018CDF88B3F2170AF5389B84FBA7E7"/>
</game>
<game name="2121 - Castlevania - Bloodlines (USA)">
<description>Castlevania - Bloodlines (USA)</description>
<info>This patch aims improve the graphics of this underrated classic from Mega Drive. Konami made questionable choices regarding the use of colors. Now everyone can enjoy the Bloodlines in all your glory, enjoy!</info>
<patch crc="CF6CE947" name="Castlevania - Bloodlines (USA).ips">
<url>https://www.romhacking.net/hacks/2121/</url>
<patch_id>2121</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2121titlescreen.gif</image>
</patch>
<rom crc="FB1EA6DF" md5="0F04FC1B5BF8C9A887ABCF14CE96B0CD" name="Castlevania - Bloodlines (USA).md" sha1="4809CF80CED70E77BC7479BB652A9D9FE22CE7E6"/>
</game>
<game name="2130 - Ghostbusters (World) (Rev A)">
<description>Ghostbusters (World) (Rev A)</description>
<info>This hack changes the colors of the uniforms of the Ghostbusters from blue to khaki to make them more accurate to their movie counterparts. It does change the colors of some of the text, some of the enemies, the weapons in the pause menu and Arthur&#8217;s attire but they don&#8217;t look messed up so the changes to them didn&#8217;t ruin the game.</info>
<patch crc="B9632F33" name="Ghostbusters (World) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2130/</url>
<patch_id>2130</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2130titlescreen.jpg</image>
</patch>
<rom crc="792DF93B" md5="D73F3B9FEAC4734E9A391AA211A88159" name="Ghostbusters (World) (Rev A).md" sha1="6FCEFFEE406679C0C8221A8B6CFAD447695E99FB"/>
</game>
<game name="2131 - Thunder Pro Wrestling Retsuden (Japan)">
<description>Thunder Pro Wrestling Retsuden (Japan)</description>
<info>This hack changes the colors of the ring mat and the safety mats to make them look more like their PC-Engine counterparts.</info>
<patch crc="D1B8FD03" name="Thunder Pro Wrestling Retsuden (Japan).ips">
<url>https://www.romhacking.net/hacks/2131/</url>
<patch_id>2131</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2131titlescreen.jpg</image>
</patch>
<rom crc="24408C73" md5="B3A6322647260B29DBD584BC528F05E5" name="Thunder Pro Wrestling Retsuden (Japan).md" sha1="7F41AFBF62D83424067F872A5DFE2C0F0EC40052"/>
</game>
<game name="2132 - Phantasy Star II (USA, Europe) (Rev A)">
<description>Phantasy Star II (USA, Europe) (Rev A)</description>
<info>This patch aims to fix bugs and oversights found in the original game, and in addition the game script was revised a little by removing typos, using correct spaces between words and punctuation marks, replacing some poorly translated lines with those taken from the Japanese version, using full names for the planets like the other installments of the series, etc. Some windows were enlarged in order to accommodate full words for the entries, like GIVE instead of GIV, or RIGHT instead of RGHT.</info>
<patch crc="3E38A1DA" name="Phantasy Star II (USA, Europe) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2132/</url>
<patch_id>2132</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/66titlescreen.png</image>
</patch>
<rom crc="904FA047" md5="0FA38B12CF0AB0163D865600AC731A9A" name="Phantasy Star II (USA, Europe) (Rev A).md" sha1="0711080E968490A6B8C5FAFBB9DB3E62BA597231"/>
</game>
<game name="2137 - Sonic The Hedgehog 2 (World) (Rev A)">
<description>Sonic The Hedgehog 2 (World) (Rev A)</description>
<info>This is a hack of Sonic the Hedgehog 2. It contains fixes for several bugs and inconsistencies found in the original game. Super Sonic can be used more safely and the transformation can be activated after pressing a button in mid-air, some minor graphical glitches were repaired, game physics are more consistent, and much more. Refer to the Readme file for details.</info>
<patch crc="A7CED8D8" name="Sonic The Hedgehog 2 (World) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2137/</url>
<patch_id>2137</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/790titlescreen.png</image>
</patch>
<rom crc="7B905383" md5="9FEEB724052C39982D432A7851C98D3E" name="Sonic The Hedgehog 2 (World) (Rev A).md" sha1="8BCA5DCEF1AF3E00098666FD892DC1C2A76333F9"/>
</game>
<game name="2176 - Sonic The Hedgehog (USA, Europe)">
<description>Sonic The Hedgehog (USA, Europe)</description>
<info>Sonic 1 - YOLO (You Only Live Once) Edition is a harder version of Sonic The Hedgehog 1 for Sega Genesis.</info>
<patch crc="19A3AA3" name="Sonic The Hedgehog (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2176/</url>
<patch_id>2176</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/863titlescreen.png</image>
</patch>
<rom crc="F9394E97" md5="1BC674BE034E43C96B86487AC69D9293" name="Sonic The Hedgehog (USA, Europe).md" sha1="6DDB7DE1E17E7F6CDB88927BD906352030DAA194"/>
</game>
<game name="2177 - Lion King, The (World)">
<description>Lion King, The (World)</description>
<info>This patch changes all the colors of the game Lion King for the Mega Drive. The objective was to fix some shading and change the crazy colors used here which never pleased me.</info>
<patch crc="3966CFB9" name="Lion King, The (World).ips">
<url>https://www.romhacking.net/hacks/2177/</url>
<patch_id>2177</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2177titlescreen.gif</image>
</patch>
<rom crc="5696A5BC" md5="E37BF6813648EC5E8BDBD2F7070010F8" name="Lion King, The (World).md" sha1="24CBE4E75EC10E8E0FFBDB400CF86ECB072D4DA9"/>
</game>
<game name="2259 - Shadow of the Beast - Mashou no Okite (Japan)">
<description>Shadow of the Beast - Mashou no Okite (Japan)</description>
<info>This patch is intended to make the game Shadow of the Beast with the atmosphere closest to the original Amiga, has also taking advantage of the improvements of this great port for Mega Drive.</info>
<patch crc="FE136438" name="Shadow of the Beast - Mashou no Okite (Japan).ips">
<url>https://www.romhacking.net/hacks/2259/</url>
<patch_id>2259</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2259titlescreen.png</image>
</patch>
<rom crc="0CD09D31" md5="9CD4A754FCB6793D7470A6FA63903025" name="Shadow of the Beast - Mashou no Okite (Japan).md" sha1="6E4BB7FB1A0F642D72CF58376BF2637E0AC6EF50"/>
</game>
<game name="2275 - Shadow of the Beast II (USA, Europe)">
<description>Shadow of the Beast II (USA, Europe)</description>
<info>This patch is intended to make the game Shadow of the Beast II with the Color Palettes closest to the original Amiga and the ATARI ST port.</info>
<patch crc="9732E34B" name="Shadow of the Beast II (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2275/</url>
<patch_id>2275</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2275titlescreen.png</image>
</patch>
<rom crc="2DEDE3DB" md5="596C1DDA590F4B6611132206C9184970" name="Shadow of the Beast II (USA, Europe).md" sha1="260A497348313C22F2D1A626150B0915990720C2"/>
</game>
<game name="2276 - Joe & Mac (USA)">
<description>Joe & Mac (USA)</description>
<info>Joe &#038; Mac is another excellent arcade port for the Mega Drive, again the aim here is to bring this closer to the original game and all the game content has been redone.</info>
<patch crc="77F88AF4" name="Joe & Mac (USA).ips">
<url>https://www.romhacking.net/hacks/2276/</url>
<patch_id>2276</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2276titlescreen.png</image>
</patch>
<rom crc="85BCC1C7" md5="9800244038A6235C6D437582AA75F52F" name="Joe & Mac (USA).md" sha1="D238ECDBC76AFFB0B92946A1EE984399B6E8FE27"/>
</game>
<game name="2283 - Captain America and the Avengers (USA)">
<description>Captain America and the Avengers (USA)</description>
<info>Captain America and the Avengers is still one of the best heroes games of all time and the Mega Drive port remains the best homemade conversion of this game today. As always this patch aims to fix the problems of the game and makes it more faithful to the arcade original, everything was completely redone and there is nothing left of the original.</info>
<patch crc="2F180FD8" name="Captain America and the Avengers (USA).ips">
<url>https://www.romhacking.net/hacks/2283/</url>
<patch_id>2283</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2283titlescreen.png</image>
</patch>
<rom crc="E0639CA2" md5="1DC96693AFD74E7B0623A6E06FBDCF87" name="Captain America and the Avengers (USA).md" sha1="AE71B5744DE7CA6AA00D72CCD7713146D87CA002"/>
</game>
<game name="2287 - Sunset Riders (USA)">
<description>Sunset Riders (USA)</description>
<info>This patch Improves all color palette of this game to look better and more accurate to the Arcade version!</info>
<patch crc="53840F39" name="Sunset Riders (USA).ips">
<url>https://www.romhacking.net/hacks/2287/</url>
<patch_id>2287</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2287titlescreen.png</image>
</patch>
<rom crc="AC30C297" md5="19CDF861C543F9C9CD9C8B6B70ADEB1C" name="Sunset Riders (USA).md" sha1="B40EA5B00F477D7B7448447F15B4C571F5E8FF0D"/>
</game>
<game name="2305 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Max with a Diglett from Pokémon.</info>
<patch crc="F9FE88F2" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2305/</url>
<patch_id>2305</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2310 - Mortal Kombat II (World)">
<description>Mortal Kombat II (World)</description>
<info><a href="http://www.romhacking.net/hacks/596/">Mortal Kombat II Unlimited</a> is a definitive version of MK2 made by Smoke for Mega Drive. With his authorization, Pyron did one update that improves the graphics.
So everything has changed, all characters and stages receive a new touch to comes closer to original arcade.</info>
<patch crc="E4FF7F21" name="Mortal Kombat II (World).ips">
<url>https://www.romhacking.net/hacks/2310/</url>
<patch_id>2310</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2310titlescreen.gif</image>
</patch>
<rom crc="A9E013D8" md5="C8E887CA9CDDE7BDE85F324F66D34B2D" name="Mortal Kombat II (World).md" sha1="AF6D2DB16F2B76940FF5A9738F1E00C4E7EA485E"/>
</game>
<game name="2323 - Fatal Fury 2 (USA, Korea)">
<description>Fatal Fury 2 (USA, Korea)</description>
<info>Fatal Fury 2 is one of the best fighting games and arcade port for the Mega Drive. This patch try improve the graphics to approximate this game closes to Fatal Fury Special modifications.</info>
<patch crc="450126B7" name="Fatal Fury 2 (USA, Korea).ips">
<url>https://www.romhacking.net/hacks/2323/</url>
<patch_id>2323</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2323titlescreen.png</image>
</patch>
<rom crc="1B1754CB" md5="E5A4BBE296224C2D6E71079807DFD183" name="Fatal Fury 2 (USA, Korea).md" sha1="52A269DE38ED43EA5C6623906AF6B64F01696FFB"/>
</game>
<game name="2330 - Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)">
<description>Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)</description>
<info>Teenage Mutant Ninja Turtles: The Hyperstone Heist is a excellent Turtles game, but has some problems and a dark look that destroys the cool look of the series. This patch restores the cowabunga style of the Turtles and everything is much more closer to the arcade original. Pizza Time!</info>
<patch crc="A6F01C75" name="Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).ips">
<url>https://www.romhacking.net/hacks/2330/</url>
<patch_id>2330</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2330titlescreen.png</image>
</patch>
<rom crc="679C41DE" md5="30EDE62C8EFE3E046E5409758B091EB6" name="Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).md" sha1="F440DFA689F65E782A150C1686AB90D7E5CC6355"/>
</game>
<game name="2351 - Phantasy Star III - Generations of Doom (USA, Europe, Korea)">
<description>Phantasy Star III - Generations of Doom (USA, Europe, Korea)</description>
<info>This ROM patch changes a lot. It fixes the dialog to make more sense, the text is actually heavily edited and gives more depth to the characters. Most of the equipment has been renamed to fit more to the Phantasy series, and make sense. (Why someone could wear a robe made out of steel, but couldn&#8217;t wear armor has always been beyond my comprehension.) Equipment has been heavily edited to be weaker than its original, causing enemy battles to be much more complicated. Shops now sell equipment that makes sense for where you are in the game. EXP and MST has been doubled to prevent building up, don&#8217;t worry, due to equipment edits battles are more complicated. Bosses have been edited to be actual battles on your hands. Draconia has become a &#8220;Challenge World&#8221; with fearsome enemies, and all 3 towns have a special surprise inside the shops waiting for the players who dare take on the Challenge of Draconia.</info>
<patch crc="DFE64E9E" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).ips">
<url>https://www.romhacking.net/hacks/2351/</url>
<patch_id>2351</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/67titlescreen.jpg</image>
</patch>
<rom crc="C6B42B0F" md5="82C7BC027685CC8FC6C9E077BEB1A75A" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).md" sha1="59D4914E652672FD1E453C76B8250D17E8CA154E"/>
</game>
<game name="2383 - Samurai Shodown (USA)">
<description>Samurai Shodown (USA)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="CB1D92B5" name="Samurai Shodown (USA).ips">
<url>https://www.romhacking.net/hacks/2383/</url>
<patch_id>2383</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2383titlescreen.png</image>
</patch>
<rom crc="5BB8B2D4" md5="D50B365A99D5EFAE6164EF084E808FF2" name="Samurai Shodown (USA).md" sha1="504CC7A948F96CE1989F8E91FFB42ACC6A956E47"/>
</game>
<game name="2394 - Art of Fighting (USA)">
<description>Art of Fighting (USA)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="A1301A3A" name="Art of Fighting (USA).ips">
<url>https://www.romhacking.net/hacks/2394/</url>
<patch_id>2394</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2394titlescreen.png</image>
</patch>
<rom crc="C9A57E07" md5="3B878B854302596CB197602878D0CF07" name="Art of Fighting (USA).md" sha1="7603F33A98994E8145C942E1ED28E6B072332324"/>
</game>
<game name="2413 - Super Street Fighter II (USA)">
<description>Super Street Fighter II (USA)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="922B5866" name="Super Street Fighter II (USA).ips">
<url>https://www.romhacking.net/hacks/2413/</url>
<patch_id>2413</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2413titlescreen.png</image>
</patch>
<rom crc="165DEFBF" md5="75950E3AA9357A21715FFE2FA51A454C" name="Super Street Fighter II (USA).md" sha1="9CE6E69DB9D28386F7542DACD3E3EAD28EACF2A4"/>
</game>
<game name="2464 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces some characters for the characters of the game &#8220;Ristar the Shooting Star&#8221;.</info>
<patch crc="FAB00BE5" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2464/</url>
<patch_id>2464</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2464titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2465 - Vapor Trail (USA)">
<description>Vapor Trail (USA)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="C2379037" name="Vapor Trail (USA).ips">
<url>https://www.romhacking.net/hacks/2465/</url>
<patch_id>2465</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2465titlescreen.png</image>
</patch>
<rom crc="C49E3A0A" md5="CFF6076504B1097BB89848C0698EF2A2" name="Vapor Trail (USA).md" sha1="D8EB087EEDA31F202E6A1A0C4DE891CED162ABC5"/>
</game>
<game name="2500 - Phantasy Star III - Generations of Doom (USA, Europe, Korea)">
<description>Phantasy Star III - Generations of Doom (USA, Europe, Korea)</description>
<info>This is a color hack for Phantasy Star III made with Aridia and HivePal, taking the graphics of the game in the direction of games like Soleil and World of Illusion. The current version is complete for Rhys&#8217; (generation 1), Ayn&#8217;s (generation 2), and Sean&#8217;s (generation 3) scenarios. All battle backgrounds, enemies and most field and cutscene graphics for those have been edited. </info>
<patch crc="CA0FC62C" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).ips">
<url>https://www.romhacking.net/hacks/2500/</url>
<patch_id>2500</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/67titlescreen.jpg</image>
</patch>
<rom crc="C6B42B0F" md5="82C7BC027685CC8FC6C9E077BEB1A75A" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).md" sha1="59D4914E652672FD1E453C76B8250D17E8CA154E"/>
</game>
<game name="2510 - Dune - The Battle for Arrakis (USA)">
<description>Dune - The Battle for Arrakis (USA)</description>
<info>In this hack you will control the Battle City&#8217;s tanks to complete one tower defense mission.</info>
<patch crc="B35AFECF" name="Dune - The Battle for Arrakis (USA).ips">
<url>https://www.romhacking.net/hacks/2510/</url>
<patch_id>2510</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2510titlescreen.png</image>
</patch>
<rom crc="4DEA40BA" md5="D4DF66F77D52718798EC07D350D3A3CD" name="Dune - The Battle for Arrakis (USA).md" sha1="0F7C1C130CB39ABC97F57545933E1EF6C481783D"/>
</game>
<game name="2535 - Turrican (USA, Europe) (Unl)">
<description>Turrican (USA, Europe) (Unl)</description>
<info>Turrican for the Genesis is a okay port, but have 2 big problems:</info>
<patch crc="35AF8F33" name="Turrican (USA, Europe) (Unl).ips">
<url>https://www.romhacking.net/hacks/2535/</url>
<patch_id>2535</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2535titlescreen.png</image>
</patch>
<rom crc="634D67A6" md5="CA0E4BD18F573D4F1166C5067C47594A" name="Turrican (USA, Europe) (Unl).md" sha1="5A471A276909DCC428CD66C51047AA8A142C76A8"/>
</game>
<game name="2540 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Axel with Havoc from the Genesis game &#8220;High Seas Havoc&#8221;.Besides the change of sprites, his physics was changed, his speed was increased and has the ability to run.</info>
<patch crc="37B16BAE" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2540/</url>
<patch_id>2540</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2540titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2604 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This hack restores all the stuff that got censored and removed from the American version back to it, it also fixes the names of three enemies and changes the music on one stage as well. </info>
<patch crc="20F9167E" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2604/</url>
<patch_id>2604</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2637 - Altered Beast (USA, Europe)">
<description>Altered Beast (USA, Europe)</description>
<info>This patch brings back some of visual style of the arcade version of the game mixing with my personal touch.</info>
<patch crc="B9103D1A" name="Altered Beast (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2637/</url>
<patch_id>2637</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2637titlescreen.png</image>
</patch>
<rom crc="154D59BB" md5="2ED5293E46ABE1E74EDEB96DA0E7A618" name="Altered Beast (USA, Europe).md" sha1="38945360D824D2FB9535B4FD7F25B9AA9B32F019"/>
</game>
<game name="2645 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Axel with Max from the “Sam and Max” franchise. In this update his physics was changed and new moves were added.</info>
<patch crc="98641AB4" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2645/</url>
<patch_id>2645</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2645titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2683 - Sonic The Hedgehog 2 (World) (Rev A)">
<description>Sonic The Hedgehog 2 (World) (Rev A)</description>
<info>Kirby in Sonic the Hedgehog 2 features Kirby and Waddle Dee as the lead protagonists to defeat Dr&#8217;Robotnik. Kirby can inhale monitors and most enemies but cannot copy their abilities, Waddle Dee has no unique moves. Life counter function as Health points and the only way to obtain Health is grabbing every 50+ Rings, Lampposts, Randomized 1Up Monitors, or Score every 50000+ points. The hack also contains 4 Difficulty modes. Hidden Palace is restored and fully playable as a 1 Act Zone for Kirby, located somewhere in Mystic Cave Act 2</info>
<patch crc="14D805BC" name="Sonic The Hedgehog 2 (World) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2683/</url>
<patch_id>2683</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2683titlescreen.png</image>
</patch>
<rom crc="7B905383" md5="9FEEB724052C39982D432A7851C98D3E" name="Sonic The Hedgehog 2 (World) (Rev A).md" sha1="8BCA5DCEF1AF3E00098666FD892DC1C2A76333F9"/>
</game>
<game name="2684 - Shining Force II (USA)">
<description>Shining Force II (USA)</description>
<info>This hack has been created in order to offer a new version of Shining Force II to play.</info>
<patch crc="1386C293" name="Shining Force II (USA).ips">
<url>https://www.romhacking.net/hacks/2684/</url>
<patch_id>2684</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/919titlescreen.jpg</image>
</patch>
<rom crc="4815E075" md5="6473B1505334EF5620D13191C18251FE" name="Shining Force II (USA).md" sha1="22DEFC2E8E6C1DBB20421B906796538725B3D893"/>
</game>
<game name="2698 - Sonic The Hedgehog (USA, Europe)">
<description>Sonic The Hedgehog (USA, Europe)</description>
<info>Based off the unlicensed port of Sonic the Hedgehog for the NES/Famicom by Hummer Team, Somari the Adventurer replaces Sonic with 3 unique new moves. Mushroom Kingdom Zone is a newly added 1-Act level as the first zone.
</info>
<patch crc="7263259D" name="Sonic The Hedgehog (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2698/</url>
<patch_id>2698</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2698titlescreen.png</image>
</patch>
<rom crc="F9394E97" md5="1BC674BE034E43C96B86487AC69D9293" name="Sonic The Hedgehog (USA, Europe).md" sha1="6DDB7DE1E17E7F6CDB88927BD906352030DAA194"/>
</game>
<game name="2702 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Axel with Flash from the DC comics and increase absurdly his speed!</info>
<patch crc="881A48F" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2702/</url>
<patch_id>2702</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2702titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2707 - Altered Beast (USA, Europe)">
<description>Altered Beast (USA, Europe)</description>
<info>Swapped all the Voice Samples found on this version with the original Voice samples from the Arcade just to make this version a little more faithful to the original.</info>
<patch crc="99BE450" name="Altered Beast (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2707/</url>
<patch_id>2707</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2707titlescreen.png</image>
</patch>
<rom crc="154D59BB" md5="2ED5293E46ABE1E74EDEB96DA0E7A618" name="Altered Beast (USA, Europe).md" sha1="38945360D824D2FB9535B4FD7F25B9AA9B32F019"/>
</game>
<game name="2747 - Darius II (Japan)">
<description>Darius II (Japan)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="9A497956" name="Darius II (Japan).ips">
<url>https://www.romhacking.net/hacks/2747/</url>
<patch_id>2747</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2747titlescreen.png</image>
</patch>
<rom crc="25DFE62A" md5="4AB80160BA6811A48E0482C402941062" name="Darius II (Japan).md" sha1="93593E4014E13DB90FEDC1903A402C6F7D885A2F"/>
</game>
<game name="2771 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Axel for Earthworm Jim. The voices of Axel was replaced by Earthworm Jim voices and some sound effects of Earthworm Jim games were also used.</info>
<patch crc="2AE3C606" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2771/</url>
<patch_id>2771</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2771titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2775 - Mighty Morphin Power Rangers - The Movie (USA)">
<description>Mighty Morphin Power Rangers - The Movie (USA)</description>
<info>This patch restore the colorful style of the TV Show with vivid colors and corrects a lot of other stuff.</info>
<patch crc="2B7F6486" name="Mighty Morphin Power Rangers - The Movie (USA).ips">
<url>https://www.romhacking.net/hacks/2775/</url>
<patch_id>2775</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2775titlescreen.png</image>
</patch>
<rom crc="AA941CBC" md5="BBF3C7BFAD1E2110DA1469C711949709" name="Mighty Morphin Power Rangers - The Movie (USA).md" sha1="866D7CCC204E45D188594DDE99C2EA836912A136"/>
</game>
<game name="280 - Phantasy Star IV (USA)">
<description>Phantasy Star IV (USA)</description>
<info>This is a comprehensive hack of Phantasy Star IV: The End of the Millennium for the Sega Genesis. The general idea behind this mod is to have every battle be a fight for your life! Every monster has been edited to greatly raise the game’s difficulty, making each battle much longer, especially late-game. And yes, despite the difficulty increase, all monsters give the same amount of experience, so, welcome to hell!</info>
<patch crc="2A98920A" name="Phantasy Star IV (USA).ips">
<url>https://www.romhacking.net/hacks/280/</url>
<patch_id>280</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/280titlescreen.gif</image>
</patch>
<rom crc="FE236442" md5="84CBD0FF47F3C8E9D21D2C2FC39185FA" name="Phantasy Star IV (USA).md" sha1="BC7FF6D6A8408F38562BC610F24645CAD6C42629"/>
</game>
<game name="281 - Phantasy Star IV (USA)">
<description>Phantasy Star IV (USA)</description>
<info>This is a comprehensive hack of Phantasy Star IV: The End of the Millennium for the Sega Genesis, built of the Hell Mode Mod patch. The general idea behind this mod, like Hell Mode, is to have every battle be a fight for your life! Every monster has been edited to greatly raise the game’s difficulty, making each battle much longer, especially late-game. </info>
<patch crc="A496945F" name="Phantasy Star IV (USA).ips">
<url>https://www.romhacking.net/hacks/281/</url>
<patch_id>281</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1062titlescreen.png</image>
</patch>
<rom crc="FE236442" md5="84CBD0FF47F3C8E9D21D2C2FC39185FA" name="Phantasy Star IV (USA).md" sha1="BC7FF6D6A8408F38562BC610F24645CAD6C42629"/>
</game>
<game name="2867 - Phantasy Star II (USA, Europe) (Rev A)">
<description>Phantasy Star II (USA, Europe) (Rev A)</description>
<info>This patch of Phantasy Star II doubles the characters&#8217; walking speed. Jet Scooter speed is unaltered.</info>
<patch crc="B53217F6" name="Phantasy Star II (USA, Europe) (Rev A).ips">
<url>https://www.romhacking.net/hacks/2867/</url>
<patch_id>2867</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/66titlescreen.png</image>
</patch>
<rom crc="904FA047" md5="0FA38B12CF0AB0163D865600AC731A9A" name="Phantasy Star II (USA, Europe) (Rev A).md" sha1="0711080E968490A6B8C5FAFBB9DB3E62BA597231"/>
</game>
<game name="2868 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This hack replace Axel with Pulseman. Aside from sprite changes, the voices of Axel are replaced by the voices of Pulseman, his speed are increased and he is capable of running!</info>
<patch crc="7406F764" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2868/</url>
<patch_id>2868</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2868titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2869 - Twinkle Tale (Japan)">
<description>Twinkle Tale (Japan)</description>
<info>Twinkle Tale is one of the most beautiful games for the Mega Drive, however it is loaded with dark graphics and lifeless color, which does not match with a Cute &#8216;Em Up game, so this patch is intended to make it more colorful giving a another tone for this great game.</info>
<patch crc="D89B4670" name="Twinkle Tale (Japan).ips">
<url>https://www.romhacking.net/hacks/2869/</url>
<patch_id>2869</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2869titlescreen.png</image>
</patch>
<rom crc="D757F924" md5="809887A9535753EE7A13C8A2D365F0EB" name="Twinkle Tale (Japan).md" sha1="5377E96B4CB14038675C41D165F1D92AE067CD9B"/>
</game>
<game name="2883 - Phantasy Star III - Generations of Doom (USA, Europe, Korea)">
<description>Phantasy Star III - Generations of Doom (USA, Europe, Korea)</description>
<info>This is a Phantasy Star III patch which corrects a few glaring bugs and inconsistencies. As a small enhancement now it&#8217;s possible to reach level 99.</info>
<patch crc="CCA62FFC" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).ips">
<url>https://www.romhacking.net/hacks/2883/</url>
<patch_id>2883</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/67titlescreen.jpg</image>
</patch>
<rom crc="C6B42B0F" md5="82C7BC027685CC8FC6C9E077BEB1A75A" name="Phantasy Star III - Generations of Doom (USA, Europe, Korea).md" sha1="59D4914E652672FD1E453C76B8250D17E8CA154E"/>
</game>
<game name="2888 - Chiki Chiki Boys (USA, Europe)">
<description>Chiki Chiki Boys (USA, Europe)</description>
<info>This patch restore the colorful style of the original arcade game with vivid colors and correct a lot of other stuff.</info>
<patch crc="578AB131" name="Chiki Chiki Boys (USA, Europe).ips">
<url>https://www.romhacking.net/hacks/2888/</url>
<patch_id>2888</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2888titlescreen.png</image>
</patch>
<rom crc="813A7D62" md5="B89406FF3537D74F77A4F7E5E71B25B7" name="Chiki Chiki Boys (USA, Europe).md" sha1="3CBEB068751C39790116AA8F422DD6F333BE42E0"/>
</game>
<game name="2890 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a hack which adds Scott Pilgrim, Ramona Flowers, Kim Pine, and Stephen Stills to Streets of Rage 2.</info>
<patch crc="326D65B9" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2890/</url>
<patch_id>2890</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2891 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a hack of Streets of Rage 2 that changes all 4 playable characters with the 4 turtles of Teenage Mutant Ninja Turtles.</info>
<patch crc="75EFC2C2" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2891/</url>
<patch_id>2891</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/1925titlescreen.gif</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="2929 - Streets of Rage 2 (USA)">
<description>Streets of Rage 2 (USA)</description>
<info>This is a player sprite hack of Streets of Rage 2 which replaces Max for Dio Brando of the game &#8220;Jojo&#8217;s Bizarre Adventure: Heritage for the Future&#8221;. The voices of Max are replaced by the voices of Dio Brando and also his speed was increased.</info>
<patch crc="9269D0BC" name="Streets of Rage 2 (USA).ips">
<url>https://www.romhacking.net/hacks/2929/</url>
<patch_id>2929</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/2929titlescreen.png</image>
</patch>
<rom crc="E01FA526" md5="CB75D5A6919B61EFE917BEA5762C1CB7" name="Streets of Rage 2 (USA).md" sha1="8B656EEC9692D88BBBB84787142AA732B44CE0BE"/>
</game>
<game name="3006 - Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)">
<description>Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)</description>
<info>Multiple hacks of the gauntlet stage.</info>
<patch crc="9D6C0511" name="Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).ips">
<url>https://www.romhacking.net/hacks/3006/</url>
<patch_id>3006</patch_id>
<image>https://www.romhacking.net/translations/genesis/images/titles/2249titlescreen.png</image>
</patch>
<rom crc="679C41DE" md5="30EDE62C8EFE3E046E5409758B091EB6" name="Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).md" sha1="F440DFA689F65E782A150C1686AB90D7E5CC6355"/>
</game>
<game name="3011 - Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)">
<description>Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA)</description>
<info>A hack of Hyperstone Heist to replace the first level with a simplified version of the big apple level from the turtles in time. Also includes several updates in the opening aspects of the game.</info>
<patch crc="6DF3FDFD" name="Teenage Mutant Ninja Turtles - The Hyperstone Heist (USA).ips">
<url>https://www.romhacking.net/hacks/3011/</url>
<patch_id>3011</patch_id>
<image>https://www.romhacking.net/hacks/genesis/images/titles/3011titlescreen.png</image>