-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathNES_romhacks.xml
7662 lines (7662 loc) · 529 KB
/
NES_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="1 - Dragon Warrior (U) (PRG0) [!]">
<description>Dragon Warrior (U) (PRG0) [!]</description>
<info>A nation just over a rebellion by their own psychic soldiers is attacked by an alien being in a giant star ship.</info>
<patch crc="2394DB01" name="Dragon Warrior (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/1/</url>
<patch_id>1</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1titlescreen.png</image>
</patch>
<rom crc="caaf5c6b" md5="1cfeeac7a20b405780eea318d3d1af2a" name="Dragon Warrior (U) (PRG0) [!].nes"/>
</game>
<game name="10 - Legend of Zelda, The (U) (PRG0) [!]">
<description>Legend of Zelda, The (U) (PRG0) [!]</description>
<info>This is probably the best Zelda hack out there. Almost every single thing possible to modify in the game has been modified. This hack exemplifies the talented individuals in our community. Anybody even remotely interested in ROMhacking should give this one a try!</info>
<patch crc="A55C137F" name="Legend of Zelda, The (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/10/</url>
<patch_id>10</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/10titlescreen.gif</image>
</patch>
<rom crc="d7ae93df" md5="337bd6f1a1163df31bf2633665589ab0" name="Legend of Zelda, The (U) (PRG0) [!].nes"/>
</game>
<game name="1002 - Battle City (J) [!]">
<description>Battle City (J) [!]</description>
<info>This is a hack of the original classic on the NES, Battle City. All 35 levels have been completely redone to make a new experience, while the palette changes make the games have a new look. The title screen has also been changed to match the name.</info>
<patch crc="8B28B8B3" name="Battle City (J) [!].ips">
<url>https://www.romhacking.net/hacks/1002/</url>
<patch_id>1002</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1002titlescreen.png</image>
</patch>
<rom crc="f599a07e" md5="cd4fe2e78df0696dbe652f02c19541a1" name="Battle City (J) [!].nes"/>
</game>
<game name="1005 - Super Mario Bros. 3 (U) (PRG0) [!]">
<description>Super Mario Bros. 3 (U) (PRG0) [!]</description>
<info>Welcome to the 4th installment of my NEW series. More of the same madness you know and love. Originally, this hack was going to be a full game on one file, but was split into a Part 1/Part 2 format because I wanted to experiment with showcase levels I made about two years ago. This game doesn&#8217;t really need an explanation. More repeated levels, custom levels and now showcase levels. Hope you all enjoy.</info>
<patch crc="764DE509" name="Super Mario Bros. 3 (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/1005/</url>
<patch_id>1005</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/750titlescreen.png</image>
</patch>
<rom crc="85a79d9c" md5="bb5c4b6d4d78c101f94bdb360af502f3" name="Super Mario Bros. 3 (U) (PRG0) [!].nes"/>
</game>
<game name="1007 - New Ghostbusters II (E) [!]">
<description>New Ghostbusters II (E) [!]</description>
<info>Poor Ernie Hudson does not have much luck when it comes to the Ghostbusters franchise, including being turned green for this game. Let&#8217;s fix that up, shall we?</info>
<patch crc="FC37FF18" name="New Ghostbusters II (E) [!].ips">
<url>https://www.romhacking.net/hacks/1007/</url>
<patch_id>1007</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1007titlescreen.png</image>
</patch>
<rom crc="9d72b9d1" md5="8009cdf7ef0e79251388c1ddcb2dd506" name="New Ghostbusters II (E) [!].nes"/>
</game>
<game name="101 - Megaman II (U) [!]">
<description>Megaman II (U) [!]</description>
<info>Despite the name this is actually a Mega Man 2 hack, which translates it back into Japanese and adds a ton of cool features. To put it simply, this is a new Mega Man 2, the only things that still exist from the original are the robot masters, and even they&#8217;ve been changed in terms of fighting style.</info>
<patch crc="2E8E1954" name="Megaman II (U) [!].ips">
<url>https://www.romhacking.net/hacks/101/</url>
<patch_id>101</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/101titlescreen.png</image>
</patch>
<rom crc="5e268761" md5="8e4bc5b03ffbd4ef91400e92e50dd294" name="Megaman II (U) [!].nes"/>
</game>
<game name="1010 - Super Mario Bros. 3 (U) (PRG0) [!]">
<description>Super Mario Bros. 3 (U) (PRG0) [!]</description>
<info>The 3rd installment of my NEW series for SMB3. This installment has changed the series as a whole. For the first time since unsuccessful hacks made, I&#8217;ve attempted a full ROM and succeeded. Also what&#8217;s new to the series is that this game now has modified graphics to bring the game to life more a bit. As for the levels, nothing new once again. More repeated levels and custom levels. Enjoy guys.</info>
<patch crc="C4965E6D" name="Super Mario Bros. 3 (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/1010/</url>
<patch_id>1010</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/750titlescreen.png</image>
</patch>
<rom crc="85a79d9c" md5="bb5c4b6d4d78c101f94bdb360af502f3" name="Super Mario Bros. 3 (U) (PRG0) [!].nes"/>
</game>
<game name="1011 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>SUPER MARIO BROS Special X1 for NES is a altered version of the <a href="http://www.romhacking.net/hacks/527/">Super Mario Bros. Special for NES</a> hack which was created by Frantik and Karatorian. It is altered to more closely resemble the X1 version of Super Mario Bros. Special. The changes found in the hack include:</info>
<patch crc="5123EEBC" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/1011/</url>
<patch_id>1011</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1011titlescreen.png</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1012 - New Ghostbusters II (E) [!]">
<description>New Ghostbusters II (E) [!]</description>
<info>After making a patch to recolor the Ghostbusters to allow Winston a more natural skin tone, many other alterations were made in an attempt to make an already great game even better.</info>
<patch crc="D9521761" name="New Ghostbusters II (E) [!].ips">
<url>https://www.romhacking.net/hacks/1012/</url>
<patch_id>1012</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1012titlescreen.png</image>
</patch>
<rom crc="9d72b9d1" md5="8009cdf7ef0e79251388c1ddcb2dd506" name="New Ghostbusters II (E) [!].nes"/>
</game>
<game name="1013 - Tetris (U) [b7]">
<description>Tetris (U) [b7]</description>
<info>This is a 2 player hack for the NES version of Tetris. In order to accomplish this, the ROM was converted from MMC1 to MMC3. The PRG was expanded to have 2 additional PRG banks.</info>
<patch crc="1BC0E2AF" name="Tetris (U) [b7].ips">
<url>https://www.romhacking.net/hacks/1013/</url>
<patch_id>1013</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1013titlescreen.png</image>
</patch>
<rom crc="110a9add" md5="5c4ab6b03431f7298b19bcab58e858f0" name="Tetris (U) [b7].nes"/>
</game>
<game name="1014 - VS. Super Mario Bros. (VS)">
<description>VS. Super Mario Bros. (VS)</description>
<info>This is a hack of <span class="italic">Vs. Super Mario Bros.</span> that allows the game to be run on a standard MMC1 cart with 8KB SRAM. No custom hardware required!</info>
<patch crc="3487DF51" name="VS. Super Mario Bros. (VS).ips">
<url>https://www.romhacking.net/hacks/1014/</url>
<patch_id>1014</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1014titlescreen.png</image>
</patch>
<rom crc="62904ef0" md5="8815e15b1256045d40595872824ad318" name="VS. Super Mario Bros. (VS).nes"/>
</game>
<game name="1016 - Tiny Toon Adventures (U) [!]">
<description>Tiny Toon Adventures (U) [!]</description>
<info>Super Mario Adventures is a ROM hack of Tiny Toon Adventures. It changes many of the sprites to Mario universe sprites making the game like a Mario game. This was done as the game was felt to be highly inspired by the Mario series in it&#8217;s gameplay and design. All four characters have been changed to Mario in differnent forms of Transformations. The story has also been altered to use President/King Koopa from the SMB movie instead of Montana Max. Other characters have also been changed to characters found in the Mario universe such as Peach and Toad.</info>
<patch crc="9C2983C3" name="Tiny Toon Adventures (U) [!].ips">
<url>https://www.romhacking.net/hacks/1016/</url>
<patch_id>1016</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1016titlescreen.png</image>
</patch>
<rom crc="b34ed396" md5="0ebcb18c1ce6dba52dc44b57dd809986" name="Tiny Toon Adventures (U) [!].nes"/>
</game>
<game name="102 - Zelda II - The Adventure of Link (U) [!]">
<description>Zelda II - The Adventure of Link (U) [!]</description>
<info>It&#8217;s about time Error, the stationary resident of the town of Ruto from Nintendo&#8217;s <span class="italic">Zelda II</span>, embarked on an adventure of his own and left that pointy-eared Link behind!</info>
<patch crc="9A12472" name="Zelda II - The Adventure of Link (U) [!].ips">
<url>https://www.romhacking.net/hacks/102/</url>
<patch_id>102</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/102titlescreen.png</image>
</patch>
<rom crc="e3c788b0" md5="764d36fa8a2450834da5e8194281035a" name="Zelda II - The Adventure of Link (U) [!].nes"/>
</game>
<game name="1026 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This game requires the Japanese Rockman 1 ROM. Not Mega Man.</info>
<patch crc="FBC557AE" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1026/</url>
<patch_id>1026</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1026titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="103 - Megaman II (U) [!]">
<description>Megaman II (U) [!]</description>
<info>This is a hack of Capcom&#8217;s Mega Man 2 for the NES. The hack isn&#8217;t a complete remake of the original game, but all levels have been changed to look different from the original ones. The colors have also been changed, and a new title screen has been made.</info>
<patch crc="2033D288" name="Megaman II (U) [!].ips">
<url>https://www.romhacking.net/hacks/103/</url>
<patch_id>103</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/103titlescreen.png</image>
</patch>
<rom crc="5e268761" md5="8e4bc5b03ffbd4ef91400e92e50dd294" name="Megaman II (U) [!].nes"/>
</game>
<game name="1030 - Mike Tyson's Punch-Out!! (U) (PRG1) [!]">
<description>Mike Tyson's Punch-Out!! (U) (PRG1) [!]</description>
<info>This is a hack which replaces the opponents with characters from other games including the arcade version of Punch-out, Super Punch-out, among other games. The referee has been replaced by Wario and the floor tarp has been recolored. The text has been modified to reflect the new content. Little Mac&#8217;s trainer has been replaced by Von Kaiser. This hack is based off a trailer called &#8220;Team Awesome´s Punch-Out!! Trailer&#8221;.</info>
<patch crc="8B445C3E" name="Mike Tyson's Punch-Out!! (U) (PRG1) [!].ips">
<url>https://www.romhacking.net/hacks/1030/</url>
<patch_id>1030</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1030titlescreen.png</image>
</patch>
<rom crc="3df8e170" md5="c119a5a9b0e2959ad5d11562f9f4ce55" name="Mike Tyson's Punch-Out!! (U) (PRG1) [!].nes"/>
</game>
<game name="1031 - Super Mario Bros. 3 (U) (PRG0) [!]">
<description>Super Mario Bros. 3 (U) (PRG0) [!]</description>
<info>The 5th and final installment in my NEW series. This is Mario&#8217;s last original/new adventure. Don&#8217;t be sad yet because this game is two files. One is the main game while the other is a Lost Levels game, so it is more fun to have.</info>
<patch crc="EF83CF5B" name="Super Mario Bros. 3 (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/1031/</url>
<patch_id>1031</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/750titlescreen.png</image>
</patch>
<rom crc="85a79d9c" md5="bb5c4b6d4d78c101f94bdb360af502f3" name="Super Mario Bros. 3 (U) (PRG0) [!].nes"/>
</game>
<game name="1032 - Castlevania II - Simon's Quest (U) [!]">
<description>Castlevania II - Simon's Quest (U) [!]</description>
<info>This is an English re-Translation of Castlevania II: Simon&#8217;s Quest. In additon to
translating the ROM, an in-game map is added, and the Japanese staff credits were re-added to the game.
The patch is for the NES version.</info>
<patch crc="C2059FD4" name="Castlevania II - Simon's Quest (U) [!].ips">
<url>https://www.romhacking.net/hacks/1032/</url>
<patch_id>1032</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1032titlescreen.png</image>
</patch>
<rom crc="a9c2c503" md5="1b827c602c904d8c846499c9f54b93e0" name="Castlevania II - Simon's Quest (U) [!].nes"/>
</game>
<game name="104 - Super Mario Bros. (World)">
<description>Super Mario Bros. (World)</description>
<info>This is one of those rare SMB hacks out there that have a lot of replay value. The object is to find stars in order to reach Bowser&#8217;s castle, this is a fun hack that will most definitely keep you busy. And the music in this hack is really good too. The spikes can kill you in an instant, so be careful. If you like SMB hacks then this game is right up your alley&#8230;</info>
<patch crc="1F7A86D7" name="Super Mario Bros. (World).ips">
<url>https://www.romhacking.net/hacks/104/</url>
<patch_id>104</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/104titlescreen.png</image>
</patch>
<rom crc="D445F698" md5="8E3630186E35D477231BF8FD50E54CDD" name="Super Mario Bros. (World).nes" sha1="FACEE9C577A5262DBE33AC4930BB0B58C8C037F7"/>
</game>
<game name="1054 - Rockman 3 - Dr. Wily no Saigo! (J) [!]">
<description>Rockman 3 - Dr. Wily no Saigo! (J) [!]</description>
<info>This is a ROM hack of Megaman 3. It is based off the Japanese version called Rockman 3 - Dr. Wily no Saigo!. It changes the levels and graphics and maybe more!</info>
<patch crc="FD79927E" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1054/</url>
<patch_id>1054</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1054titlescreen.png</image>
</patch>
<rom crc="fce6cea2" md5="85944fb58b6afc53f8d20b8c1e19a0ab" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].nes"/>
</game>
<game name="1061 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a ROM hack of Megaman 2. It is based off the Japanese version called Rockman 2 - Dr. Wily no Nazo. It changes the levels and graphics and maybe more!</info>
<patch crc="D6CDAE03" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1061/</url>
<patch_id>1061</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1061titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="108 - Atlantis no Nazo (J) [!]">
<description>Atlantis no Nazo (J) [!]</description>
<info>This is just a graphics hack to give Atlantis No Nazo a Mario feel. Watch out, this game is really difficult to begin with. One hit and you die, the object of the game is to make it to the last level (didn’t see that one coming, lol) but you can get lost in this game. You’ll find that the gameplay is really tight like an 1980’s platformer, just keep your sanity while playing this hack. Don’t take my word for it, try it for yourself…</info>
<patch crc="15FD6E5" name="Atlantis no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/108/</url>
<patch_id>108</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/840titlescreen.png</image>
</patch>
<rom crc="dccbe3ae" md5="14207aeb5b0ac4d2bc8db09313403e37" name="Atlantis no Nazo (J) [!].nes"/>
</game>
<game name="1082 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>Rockman Cross X is a hack for Rockman 5: Blues no Wana (not the overseas version, Mega Man 5) that changes the game into a boss-rush type with very little focus on platforming. All the bosses have been rewritten, giving each one new attacks not seen yet.</info>
<patch crc="357D5F28" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1082/</url>
<patch_id>1082</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1082titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="1084 - Zelda II - The Adventure of Link (U) [!]">
<description>Zelda II - The Adventure of Link (U) [!]</description>
<info>This hack adjusts the difficulty of Zelda II to make it more playable. As we all know, this game is very difficult to complete, to the point where it is frustrating to play through it and is not even fun due to the high difficulty. That is where this hack comes into play.</info>
<patch crc="BF0D9834" name="Zelda II - The Adventure of Link (U) [!].ips">
<url>https://www.romhacking.net/hacks/1084/</url>
<patch_id>1084</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/753titlescreen.png</image>
</patch>
<rom crc="e3c788b0" md5="764d36fa8a2450834da5e8194281035a" name="Zelda II - The Adventure of Link (U) [!].nes"/>
</game>
<game name="1089 - Bomberman (J) [!]">
<description>Bomberman (J) [!]</description>
<info>This is a hack of Bomberman for the Nintendo Entertainment System. It changes the sprites, other graphics, and palettes to make the game Wario Blast themed. According to the author the hack acts as a prequel to the Gameboy game Wario Blast. This hack stars only Wario and does not feature Bomberman.</info>
<patch crc="B41BD159" name="Bomberman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1089/</url>
<patch_id>1089</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1089titlescreen.png</image>
</patch>
<rom crc="90e10ddd" md5="6e456b88a318156364066d197a8a43d4" name="Bomberman (J) [!].nes"/>
</game>
<game name="1092 - Battle City (J) [!]">
<description>Battle City (J) [!]</description>
<info>This is a pretty basic hack of Battle City for NES. Changes include graphics, text and a select few stage layouts. Mostly, it was just a random idea executed as a result of insomnia.</info>
<patch crc="74DBC192" name="Battle City (J) [!].ips">
<url>https://www.romhacking.net/hacks/1092/</url>
<patch_id>1092</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1092titlescreen.png</image>
</patch>
<rom crc="f599a07e" md5="cd4fe2e78df0696dbe652f02c19541a1" name="Battle City (J) [!].nes"/>
</game>
<game name="1093 - Megaman III (U) [!]">
<description>Megaman III (U) [!]</description>
<info>This is actually a combination of two hacks with a little extra in between.</info>
<patch crc="3BD9C3F3" name="Megaman III (U) [!].ips">
<url>https://www.romhacking.net/hacks/1093/</url>
<patch_id>1093</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1093titlescreen.png</image>
</patch>
<rom crc="452d8089" md5="75b924155cafee335c9ea7a01bfc8efb" name="Megaman III (U) [!].nes"/>
</game>
<game name="110 - Megaman (U) [!]">
<description>Megaman (U) [!]</description>
<info>Dr. Wily finally concedes that Mega Man may be too much for his evil robotic creations. Determined to get the best of the blue bomber, Dr. Wily contacts another famous villain, Bowser! Having combined their forces, Dr Wily and Bowser unleash their new destructive creations upon the Mushroom Kingdom. After hearing news of Wily&#8217;s new plan, Mega Man decides to travel to the Mushroom Kingdom himself to stop Wily again. Mega Man now finds himself in a strange new world filled with obstacles and locales very foreign to him. Fearless, Mega Man presses on to Super Mario&#8217;s old stomping grounds to defeat these new foes.</info>
<patch crc="68604276" name="Megaman (U) [!].ips">
<url>https://www.romhacking.net/hacks/110/</url>
<patch_id>110</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/110titlescreen.png</image>
</patch>
<rom crc="5ded683e" md5="4d4ffdfe7979b5f06dec2cf3563440ad" name="Megaman (U) [!].nes"/>
</game>
<game name="1100 - Zelda II - The Adventure of Link (U) [!]">
<description>Zelda II - The Adventure of Link (U) [!]</description>
<info>“Zelda II Master Quest” is an amazing Zelda II (NES) hack that will give a second life to this classic masterpiece! Give it a try!</info>
<patch crc="699925EF" name="Zelda II - The Adventure of Link (U) [!].ips">
<url>https://www.romhacking.net/hacks/1100/</url>
<patch_id>1100</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1100titlescreen.png</image>
</patch>
<rom crc="e3c788b0" md5="764d36fa8a2450834da5e8194281035a" name="Zelda II - The Adventure of Link (U) [!].nes"/>
</game>
<game name="1102 - Makai Island (U) (Prototype)">
<description>Makai Island (U) (Prototype)</description>
<info>This hack changes and fixes a few things in this game, here&#8217;s what it does to it:</info>
<patch crc="BE8A022" name="Makai Island (U) (Prototype).ips">
<url>https://www.romhacking.net/hacks/1102/</url>
<patch_id>1102</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1102titlescreen.png</image>
</patch>
<rom crc="66bdd61f" md5="c9f4cb22090a8da157211d54cfa5a23a" name="Makai Island (U) (Prototype).nes"/>
</game>
<game name="1103 - DuckTales (USA)">
<description>DuckTales (USA)</description>
<info>This hack changes and fixes a bunch of things, here&#8217;s what it does to it:</info>
<patch crc="51BAFDDD" name="DuckTales (USA).ips">
<url>https://www.romhacking.net/hacks/1103/</url>
<patch_id>1103</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/900titlescreen.png</image>
</patch>
<rom crc="EFB09075" md5="B480855FFF883B20BA403A2009A7F13C" name="DuckTales (USA).nes" sha1="6E700E8F72F767918B096F6A5F17F8CD1E2D0866"/>
</game>
<game name="1106 - Astyanax (U) [!]">
<description>Astyanax (U) [!]</description>
<info>Here&#8217;s the classic NES game Astyanax as I think it ought to be. Read the included guide for details, or just play the game and see for yourself.</info>
<patch crc="C88BB6AF" name="Astyanax (U) [!].ips">
<url>https://www.romhacking.net/hacks/1106/</url>
<patch_id>1106</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1106titlescreen.png</image>
</patch>
<rom crc="2fdfbc79" md5="c20b630cec2ff87f796e9f1004d8bc5e" name="Astyanax (U) [!].nes"/>
</game>
<game name="1107 - Castlevania (U) (PRG0) [!]">
<description>Castlevania (U) (PRG0) [!]</description>
<info>This is a rom hack I made based off of Luto Akino&#8217;s hack called CastleVania Overflow Darkness. I had his permission to do so. I pretty much re-did all the stages and their graphics. I did, however, keep most of Luto&#8217;s enemy designs and attack patterns, his cool looking Simon&#8217;s sprite, his castle introduction sequence(I did change the castle, tho) and his ending screen(Which is awesome) since these were the reasons why I wanted to do this in the first place. However, any other new graphics you&#8217;ll see were most likely done by myself.</info>
<patch crc="C9A928AE" name="Castlevania (U) (PRG0) [!].ips">
<url>https://www.romhacking.net/hacks/1107/</url>
<patch_id>1107</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1107titlescreen.png</image>
</patch>
<rom crc="39c879bb" md5="00d93c9f6b8aefb8b6c02b20147df4ec" name="Castlevania (U) (PRG0) [!].nes"/>
</game>
<game name="1112 - Megaman II (U) [!]">
<description>Megaman II (U) [!]</description>
<info>This is a hack of Capcom&#8217;s Mega Man II for the NES. It is a level edit of the game. This hack changes the levels in the game in some sort of way except for Quickman&#8217;s stage and Wily 5 (because it&#8217;s just a boss rush).</info>
<patch crc="AC5615F5" name="Megaman II (U) [!].ips">
<url>https://www.romhacking.net/hacks/1112/</url>
<patch_id>1112</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1112titlescreen.png</image>
</patch>
<rom crc="5e268761" md5="8e4bc5b03ffbd4ef91400e92e50dd294" name="Megaman II (U) [!].nes"/>
</game>
<game name="1119 - Double Dragon (U) [!]">
<description>Double Dragon (U) [!]</description>
<info>This is a hack of Double Dragon for the NES. It makes the game easier by reducing the energy of enemies, increasing the energy the player has, and modifying damage done and received to/from enemies. It should help out anyone who finds this game too difficult to enjoy, because this is a hard game.</info>
<patch crc="ED751956" name="Double Dragon (U) [!].ips">
<url>https://www.romhacking.net/hacks/1119/</url>
<patch_id>1119</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/878titlescreen.png</image>
</patch>
<rom crc="62afe166" md5="79aa819580967ffb27a9698efbf493b9" name="Double Dragon (U) [!].nes"/>
</game>
<game name="1120 - Double Dragon II - The Revenge (USA)">
<description>Double Dragon II - The Revenge (USA)</description>
<info>This is a hack for the NES version of Double Dragon II: The Revenge. It makes the game easier by lowering the energy of enemies, increasing the player&#8217;s energy, and adjusting the damage done/received to/from enemies. It should be helpful to those who find this game too difficult to enjoy, because this is a hard game.</info>
<patch crc="974634B3" name="Double Dragon II - The Revenge (USA).ips">
<url>https://www.romhacking.net/hacks/1120/</url>
<patch_id>1120</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/1126titlescreen.png</image>
</patch>
<rom crc="13C774DD" md5="B7876CFD30D1830A397834D256F5EFAB" name="Double Dragon II - The Revenge (USA).nes" sha1="FDBF0A18EA677EEC5F7437A80449B033526DD68B"/>
</game>
<game name="1121 - Double Dragon III - The Sacred Stones (U) [!]">
<description>Double Dragon III - The Sacred Stones (U) [!]</description>
<info>This is a hack of Double Dragon III: The Sacred Stones for the NES. It makes the game easier by increasing the players health, increasing weapon uses, decreasing the enemies health, and adjusting damage done to enemies. It should be helpful to players who find this game too difficult to enjoy, because this is a very hard game.</info>
<patch crc="96557207" name="Double Dragon III - The Sacred Stones (U) [!].ips">
<url>https://www.romhacking.net/hacks/1121/</url>
<patch_id>1121</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/1018titlescreen.png</image>
</patch>
<rom crc="7a6e0454" md5="a5484da6feadc9c8fdb2b1a8edf97ee2" name="Double Dragon III - The Sacred Stones (U) [!].nes"/>
</game>
<game name="1122 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This is a hack of the JP version of Megaman called Rockman. It modifies the level layouts.</info>
<patch crc="C5104978" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1122/</url>
<patch_id>1122</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/774titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="1123 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This is a hack of the JP version of Megaman called Rockman.</info>
<patch crc="FAA7F322" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1123/</url>
<patch_id>1123</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1123titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="1124 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This is a hack of the JP version of Megaman called Rockman.</info>
<patch crc="91AC851A" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1124/</url>
<patch_id>1124</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1124titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="1125 - Uncanny X-Men, The (U) [!]">
<description>Uncanny X-Men, The (U) [!]</description>
<info>These patches allow players to pick &#038; choose from a number of &#8216;easy mods&#8217; which include reducing the magnet freeze times, having an invincible CPU partner, or disabling the second player entirely for a single player mode.</info>
<patch crc="D745234C" name="Uncanny X-Men, The (U) [!].ips">
<url>https://www.romhacking.net/hacks/1125/</url>
<patch_id>1125</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/1789titlescreen.gif</image>
</patch>
<rom crc="1e483ca6" md5="8ae4b4bc41c134b0c35be0ab3b284e8b" name="Uncanny X-Men, The (U) [!].nes"/>
</game>
<game name="1127 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This is a hack of the JP version of Megaman called Rockman. The hack changes the level design, palette, and graphics. It is a parody of a Megaman-inspired game for PC called MegaMari. Info on the PC game can be found <a href="http://touhou.wikia.com/wiki/MegaMari">here</a>.</info>
<patch crc="BF48414C" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1127/</url>
<patch_id>1127</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1127titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="1128 - Ice Climber (USA, Europe, Korea)">
<description>Ice Climber (USA, Europe, Korea)</description>
<info>This hack restores the seal enemy that was taken out of the American version and replaced with a yeti back to it.</info>
<patch crc="EF88EF58" name="Ice Climber (USA, Europe, Korea).ips">
<url>https://www.romhacking.net/hacks/1128/</url>
<patch_id>1128</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/844titlescreen.png</image>
</patch>
<rom crc="FB98D46E" md5="C9C94DF2EBB19BD6D717B2CFBF977574" name="Ice Climber (USA, Europe, Korea).nes" sha1="22D57AC6066529D199FCD299159D94820042C7D0"/>
</game>
<game name="113 - Final Fantasy (U) [!]">
<description>Final Fantasy (U) [!]</description>
<info>This is a semi-sequel (or more like an expansion pack) for the author&#8217;s previous hack, <a href="http://www.romhacking.net/hacks/81/">Final Fantasy ++</a>^ (so if you haven’t played that, then you probably shouldn’t be playing this). At any rate, this is quite a bit harder to beat than FF++, so n00bs beware. Also, one can consider this sort of a tribute to classic SquareEnix (the way they were…). It includes adaptations of various dungeons from FFs 3, 4, 5, &#038; 6, SaGa 2 (a.k.a. FF Legend 2), and Dragon Quest 5 (along with a couple of new ones). And, of course, lots of classic FF enemies are here for you to battle.</info>
<patch crc="2C38ADC3" name="Final Fantasy (U) [!].ips">
<url>https://www.romhacking.net/hacks/113/</url>
<patch_id>113</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/113titlescreen.png</image>
</patch>
<rom crc="ab12ece6" md5="9b0f042cfdc5f9e8200b47104a4768a9" name="Final Fantasy (U) [!].nes"/>
</game>
<game name="1131 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2, called Rockman 2 - Dr. Wily no Nazo. It changes the level layout and graphics. Also changed is the music, which even includes some tracks from Double Dragon NES. Also included is other patches: Wild Version and Wild Version Boss Only. These alter the game further.</info>
<patch crc="1B2CA52B" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1131/</url>
<patch_id>1131</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1131titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1132 - Rockman (J) [!]">
<description>Rockman (J) [!]</description>
<info>This is a hack of the JP version of Megaman called Rockman.Rockman TP is a boss rush version of Rockman 1. The game is a similar boss rush Mega Man 1 hack called Mega Man Showdown.</info>
<patch crc="4F225FD9" name="Rockman (J) [!].ips">
<url>https://www.romhacking.net/hacks/1132/</url>
<patch_id>1132</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1132titlescreen.png</image>
</patch>
<rom crc="e0141a24" md5="8824842070a569e9ba7287bcdea045a3" name="Rockman (J) [!].nes"/>
</game>
<game name="1134 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack for the JP version of Megaman called Rockman 2 - Dr. Wily no Nazo. The hack changes the weapons, bosses (not sprites), level graphics, and level layout.</info>
<patch crc="B57D4528" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1134/</url>
<patch_id>1134</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1134titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1135 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It changes the weapons, boss behavior, and level design. Included are two additional patches for any version of Rockman 2 which remove the main weapon use and start the player with all special weapons. An additonal patch starts the player off with less special weapon energy. Secondary patches do not apply Yendor Code&#8217;s changes, and thus can be used on any copy of RM2.</info>
<patch crc="F96604EB" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1135/</url>
<patch_id>1135</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1135titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="114 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>Mushroom Nightmare is a hack of the classic game, Super Mario Brothers. It features completely revamped graphics, along with major level editing throughout the game. It also features a new storyline, as the brothers aren&#8217;t trying to save the Princess anymore, it&#8217;s the Chancellor they&#8217;re after.</info>
<patch crc="6E460C97" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/114/</url>
<patch_id>114</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/114titlescreen.png</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1141 - Megaman III (U) [!]">
<description>Megaman III (U) [!]</description>
<info>This is a graphic hack of the US version of Megaman III. It replaces the main sprite with Riddler and the bosses with characters from the Batman Universe.</info>
<patch crc="9DBD84EA" name="Megaman III (U) [!].ips">
<url>https://www.romhacking.net/hacks/1141/</url>
<patch_id>1141</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1141titlescreen.png</image>
</patch>
<rom crc="452d8089" md5="75b924155cafee335c9ea7a01bfc8efb" name="Megaman III (U) [!].nes"/>
</game>
<game name="1142 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. The hack changes the weapons, boss behavior &#038; palette, and level design.</info>
<patch crc="5A5A3B82" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1142/</url>
<patch_id>1142</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1142titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1143 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It changes the weapons, bosses, and level designs.</info>
<patch crc="BEF3B197" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1143/</url>
<patch_id>1143</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1143titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1144 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It changes the weapons, boss behavior, and level designs.</info>
<patch crc="8871176B" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1144/</url>
<patch_id>1144</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1144titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1145 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It shortens levels so that bosses are encountered almost immediately. It also seems to change some boss behavior.</info>
<patch crc="6315467D" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1145/</url>
<patch_id>1145</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1145titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1148 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This is a map edit for the original Metroid. Screens, enemy and item placement, palettes, text, and more are all changed. The primary goal was to make the game more playable - the discerning player will note the careful placement of platforms and enemies to make jumps easier. However, beating the game will not be a cinch. Items are much more difficult to get, corridors are contorted into winding mazes, and many of the energy tanks have been completely eliminated.</info>
<patch crc="BE2B21D6" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1148/</url>
<patch_id>1148</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1148titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1149 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This is a hack of Metroid that includes level changes and a modified palette.</info>
<patch crc="F17B3D7C" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1149/</url>
<patch_id>1149</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1149titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="115 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>The author&#8217;s intent is to enhance the overall playability of the Metroid engine by providing an entirely new adventure. The author have attempted to keep this version of Metroid true to the spirit of the original by making some tricky secrets and convoluted mazes.</info>
<patch crc="CA781B4E" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/115/</url>
<patch_id>115</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/115titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1151 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>Converts regular NES looking Samus into Super NES looking Samus!</info>
<patch crc="C1E15574" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1151/</url>
<patch_id>1151</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/805titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1153 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This is a hack of the original game Metroid. It still preserves the best of Metroid but gets a new twist that still feels much like the original. The game still uses the same rooms as in the original Metroid. but with a completely different map. The brother game to Metroid Adventure, Super Metroid 8-Bit uses the same map (basically) but different rooms themed after rooms in Super Metroid.</info>
<patch crc="40B00F64" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1153/</url>
<patch_id>1153</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/805titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1154 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This is a complete hack for the NES game Metroid in which you play once again as Samus who has been captured by the Space Pirates only to escape and achieve victory! The level layout has completely changed and the level graphics have all been changed as well. Please refer to the read-me for more information.</info>
<patch crc="C839C6A4" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1154/</url>
<patch_id>1154</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1154titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1155 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This is a 95% graphics hack of the NES game, &#8220;Metroid.&#8221; There are minor level layout adjustments also. The game features Link (instead of Samus in suit) and a slightly modified Kid Icarus (instead of Samus out of suit). The enemies vary from games like Zelda 2, SMB 2, SMB 3, Megaman, and a few others.</info>
<patch crc="67AEC08B" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1155/</url>
<patch_id>1155</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1155titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1158 - Bomberman (U) [!]">
<description>Bomberman (U) [!]</description>
<info>The purpose of this modification is to produce a game and manual that would more accurately meet the expectations brought upon by the original NES cover art.</info>
<patch crc="434E533A" name="Bomberman (U) [!].ips">
<url>https://www.romhacking.net/hacks/1158/</url>
<patch_id>1158</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1158titlescreen.png</image>
</patch>
<rom crc="b9804046" md5="97ddb647898b01065f395eb64c3d131f" name="Bomberman (U) [!].nes"/>
</game>
<game name="1159 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It changes the graphics and level designs of levels.</info>
<patch crc="7117C31B" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1159/</url>
<patch_id>1159</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1159titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="116 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>100% of graphics updated to look more like SMB3/SMW. There are no other changes, so you can mix and match this with level mods and other features.</info>
<patch crc="A096AB27" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/116/</url>
<patch_id>116</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/116titlescreen.png</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1160 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>Here is a patch that gives full level hacks for Rockman 2</info>
<patch crc="1C9961" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1160/</url>
<patch_id>1160</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1160titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1161 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>Here is a full level hack for Rock Man 2.</info>
<patch crc="DA5EC16B" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1161/</url>
<patch_id>1161</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1161titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1162 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is a hack of the JP version of Megaman 2 called Rockman 2 - Dr. Wily no Nazo. It changes the layout of levels.</info>
<patch crc="DC7C850A" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1162/</url>
<patch_id>1162</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1162titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1163 - Rockman 3 - Dr. Wily no Saigo! (J) [!]">
<description>Rockman 3 - Dr. Wily no Saigo! (J) [!]</description>
<info>Here is a full level hack for Rockman 3.</info>
<patch crc="C322D8E8" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1163/</url>
<patch_id>1163</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1163titlescreen.png</image>
</patch>
<rom crc="fce6cea2" md5="85944fb58b6afc53f8d20b8c1e19a0ab" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].nes"/>
</game>
<game name="1164 - Rockman 3 - Dr. Wily no Saigo! (J) [!]">
<description>Rockman 3 - Dr. Wily no Saigo! (J) [!]</description>
<info>Here is a complete level hack for Rockman 3.</info>
<patch crc="517A690D" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1164/</url>
<patch_id>1164</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1164titlescreen.png</image>
</patch>
<rom crc="fce6cea2" md5="85944fb58b6afc53f8d20b8c1e19a0ab" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].nes"/>
</game>
<game name="1166 - Megaman III (U) [!]">
<description>Megaman III (U) [!]</description>
<info>Here is a full level hack for Mega Man III. Some sprites, stage palettes and design were altered a bit, and the stage music are reshuffled.</info>
<patch crc="F91B28FD" name="Megaman III (U) [!].ips">
<url>https://www.romhacking.net/hacks/1166/</url>
<patch_id>1166</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/746titlescreen.png</image>
</patch>
<rom crc="452d8089" md5="75b924155cafee335c9ea7a01bfc8efb" name="Megaman III (U) [!].nes"/>
</game>
<game name="1167 - Rockman 3 - Dr. Wily no Saigo! (J) [!]">
<description>Rockman 3 - Dr. Wily no Saigo! (J) [!]</description>
<info>Here is a complete level hack for Rock Man 3. All the levels have been changed as well as the level graphics. Also this hack uses the music from DurfarC&#8217;s hack called MM3: The Battle of Gamma.</info>
<patch crc="4BCFEA87" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1167/</url>
<patch_id>1167</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1167titlescreen.png</image>
</patch>
<rom crc="fce6cea2" md5="85944fb58b6afc53f8d20b8c1e19a0ab" name="Rockman 3 - Dr. Wily no Saigo! (J) [!].nes"/>
</game>
<game name="117 - Legend of Zelda, The (U) (PRG1) [!]">
<description>Legend of Zelda, The (U) (PRG1) [!]</description>
<info>All of the graphics are updated to look more like A Link to the Past/Oracle Series. Other changes (item names) kept minimal so this can be mixed and matched with other level mods. Font optimized for PocketNES.</info>
<patch crc="BE444099" name="Legend of Zelda, The (U) (PRG1) [!].ips">
<url>https://www.romhacking.net/hacks/117/</url>
<patch_id>117</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/117titlescreen.png</image>
</patch>
<rom crc="02bb0c56" md5="f4095791987351be68674a9355b266bc" name="Legend of Zelda, The (U) (PRG1) [!].nes"/>
</game>
<game name="1170 - Megaman III (U) [!]">
<description>Megaman III (U) [!]</description>
<info>Here are 2 full level hacks for Mega Man III (Powa &#038; Powa II).</info>
<patch crc="C53EF371" name="Megaman III (U) [!].ips">
<url>https://www.romhacking.net/hacks/1170/</url>
<patch_id>1170</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1170titlescreen.png</image>
</patch>
<rom crc="452d8089" md5="75b924155cafee335c9ea7a01bfc8efb" name="Megaman III (U) [!].nes"/>
</game>
<game name="1172 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>This is hack for Rock Man 2.</info>
<patch crc="F23A51AB" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1172/</url>
<patch_id>1172</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1172titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1173 - Rockman 2 - Dr. Wily no Nazo (J) [!]">
<description>Rockman 2 - Dr. Wily no Nazo (J) [!]</description>
<info>Here is a complete level hack for Rock Man 2. All the levels have been change and some graphical changes have been made as well. This ROM patch is meant for the Rock Man 2 ROM. If applying to a Mega Man II ROM, please apply at your own risk. Included in this ZIP are 2 patches. One is the original patch and the other is the PLUS version which has increased difficulty.</info>
<patch crc="D3F22CCC" name="Rockman 2 - Dr. Wily no Nazo (J) [!].ips">
<url>https://www.romhacking.net/hacks/1173/</url>
<patch_id>1173</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1173titlescreen.png</image>
</patch>
<rom crc="30b91650" md5="055fb8dc626fb1fbadc0a193010a3e3f" name="Rockman 2 - Dr. Wily no Nazo (J) [!].nes"/>
</game>
<game name="1174 - Rockman 4 - Aratanaru Yabou!! (J) [!]">
<description>Rockman 4 - Aratanaru Yabou!! (J) [!]</description>
<info>Here is a complete hack for Rock Man 4. All levels have been changed and there are graphical changes as well. This patch is meant for the Rock Man 4 ROM. If you use on the Mega Man IV ROM, please use at your own risk.</info>
<patch crc="DC1C7B8B" name="Rockman 4 - Aratanaru Yabou!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1174/</url>
<patch_id>1174</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1174titlescreen.png</image>
</patch>
<rom crc="771a9138" md5="8b4b65d68dedc70a537505bda430dae9" name="Rockman 4 - Aratanaru Yabou!! (J) [!].nes"/>
</game>
<game name="1175 - Rockman 4 - Aratanaru Yabou!! (J) [!]">
<description>Rockman 4 - Aratanaru Yabou!! (J) [!]</description>
<info>Here is a full game hack. All the levels have been edited and there are graphical changes as well. This patch was originally intended for Rock Man 4. If you plan on applying to Mega Man IV, please use at your own risk.</info>
<patch crc="D70A09B5" name="Rockman 4 - Aratanaru Yabou!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1175/</url>
<patch_id>1175</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1175titlescreen.png</image>
</patch>
<rom crc="771a9138" md5="8b4b65d68dedc70a537505bda430dae9" name="Rockman 4 - Aratanaru Yabou!! (J) [!].nes"/>
</game>
<game name="1176 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>Here is a complete ROM hack that features all new levels and graphics changes for Rock Man 5. This patch was intended for Rock Man 5. If you plan on applying to Mega Man V please be aware of possible risks.</info>
<patch crc="E200C91" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1176/</url>
<patch_id>1176</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/706titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="1177 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>Here is a complete hack for Rockman 5. All the stages have been edited, some new graphics, and the entire game has new music.
Also included is an interesting feature you can do. You can now slide not just on the ground but in mid-air, as well!
In addition to the main patch are 2 patches that you can apply alone to a Rockman 5 ROM if you just want the Air Sliding ability only. This is intended for Rockman 5. Please be aware of risk if you apply to a Mega Man V ROM.</info>
<patch crc="C10C9F62" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1177/</url>
<patch_id>1177</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1177titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="1178 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>Here is a complete level hack for Rockman 5. All the levels have been changed and some graphics as well. This patch is intended for Rockman 5. If you plan to apply this to a Mega Man V ROM, please be aware of risks.</info>
<patch crc="5BABF0AB" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1178/</url>
<patch_id>1178</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1178titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="1179 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>Here is a complete level hack for Rockman 5 as well as some graphical changes to the game as well. This patch is intended for Rockman 5. If you are applying to a Mega Man V ROM, please be aware there may be risks.</info>
<patch crc="41DEC5D8" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1179/</url>
<patch_id>1179</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1179titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="1181 - Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]">
<description>Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]</description>
<info>Here is a full game hack for Rockman 6. All the levels have been edited as well as some graphical changes as well. This patch is intended for the Rockman 6 ROM. If applying to a Mega Man VI ROM, please be aware they may be risks to that ROM.</info>
<patch crc="CE64D4DE" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1181/</url>
<patch_id>1181</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1181titlescreen.png</image>
</patch>
<rom crc="ab1d7979" md5="25638fad36c424708a5bb23c3eedc28a" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].nes"/>
</game>
<game name="1182 - Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]">
<description>Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]</description>
<info>Here is a full game hack that changes all levels, some graphics, and some boss &#038; weapon behaviors a bit. Included is a Main Patch which does all of the above, a patch that only does the weapons &#038; boss behaviors, and a patch that only has just the level changes just in case you want one or the other or all. This patch is intended for Rockman 6. If you apply to Mega Man VI, please be aware of the risk of ROM corruption.</info>
<patch crc="AADDC7EC" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1182/</url>
<patch_id>1182</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1182titlescreen.png</image>
</patch>
<rom crc="ab1d7979" md5="25638fad36c424708a5bb23c3eedc28a" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].nes"/>
</game>
<game name="1183 - Rockman 4 - Aratanaru Yabou!! (J) [!]">
<description>Rockman 4 - Aratanaru Yabou!! (J) [!]</description>
<info>Here is a complete level hack for Rock Man IV. All levels have been changed. This patch is meant for applying to the Rockman 4 - Aratanaru Yabou!!. Apply to a Mega Man IV English ROM at your own risk.</info>
<patch crc="350F4798" name="Rockman 4 - Aratanaru Yabou!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1183/</url>
<patch_id>1183</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1183titlescreen.png</image>
</patch>
<rom crc="771a9138" md5="8b4b65d68dedc70a537505bda430dae9" name="Rockman 4 - Aratanaru Yabou!! (J) [!].nes"/>
</game>
<game name="1184 - Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]">
<description>Rockman 6 - Shijou Saidai no Tatakai!! (J) [!]</description>
<info>This is a complete hack for the game Rockman 6. Here is what has been done with this patch:</info>
<patch crc="44B3440D" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].ips">
<url>https://www.romhacking.net/hacks/1184/</url>
<patch_id>1184</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1184titlescreen.png</image>
</patch>
<rom crc="ab1d7979" md5="25638fad36c424708a5bb23c3eedc28a" name="Rockman 6 - Shijou Saidai no Tatakai!! (J) [!].nes"/>
</game>
<game name="1186 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>This hack replaces Metroid&#8217;s password system with a saving system, offering three save files. The file selection menu shows the player&#8217;s equipment, and as an added bonus, the player&#8217;s health is now saved (no need to grind for health every time you resume your game). The save system can be a handy addition for those who don&#8217;t like to use save-states, or those playing on a flash-cart.</info>
<patch crc="18F3CC24" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1186/</url>
<patch_id>1186</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/805titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="1193 - Super Mario Bros. (World)">
<description>Super Mario Bros. (World)</description>
<info>This is the Pandamar version of Super Mario Bros that changes the music and graphics, making Mario look like a panda. His appearance may have inspired the 20X6 character of &#8220;Pan Pan&#8221; from Homestar Runner.</info>
<patch crc="5EEF2E46" name="Super Mario Bros. (World).ips">
<url>https://www.romhacking.net/hacks/1193/</url>
<patch_id>1193</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1193titlescreen.png</image>
</patch>
<rom crc="D445F698" md5="8E3630186E35D477231BF8FD50E54CDD" name="Super Mario Bros. (World).nes" sha1="FACEE9C577A5262DBE33AC4930BB0B58C8C037F7"/>
</game>
<game name="121 - Rockman 5 - Blues no Wana! (J) [!]">
<description>Rockman 5 - Blues no Wana! (J) [!]</description>
<info>This modification replaces certain character sprites to make them look more like Rockman 7 (Rockman&#8217;s stand animation, Blues, some of Dr.Wily&#8217;s and Dr.Right&#8217;s sprites).</info>
<patch crc="E612AB8C" name="Rockman 5 - Blues no Wana! (J) [!].ips">
<url>https://www.romhacking.net/hacks/121/</url>
<patch_id>121</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/706titlescreen.png</image>
</patch>
<rom crc="9d01e44c" md5="433e0032be55a0ef23e7e67311977fe6" name="Rockman 5 - Blues no Wana! (J) [!].nes"/>
</game>
<game name="122 - River City Ransom (U) [!]">
<description>River City Ransom (U) [!]</description>
<info>Someone has cloned the evil doctor John Harvey Kellogg (the cereal guy, see road to wellville to get all the jokes) and now its up to famous actor Wilford Brimley (quaker oats commercials,”our house” “coccoon” and “the firm”) to stop his cereal empire!</info>
<patch crc="AC9160D0" name="River City Ransom (U) [!].ips">
<url>https://www.romhacking.net/hacks/122/</url>
<patch_id>122</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/806titlescreen.png</image>
</patch>
<rom crc="c3508f7e" md5="294e4fa092db8e29d83f71e137d1f99f" name="River City Ransom (U) [!].nes"/>
</game>
<game name="1229 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>This is a hack of Super Mario Bros. which replaces Mario and Luigi with Peach and Daisy as the playable characters. Rather than reusing or editing any existing sprites, the new graphics were made from scratch and specifically designed to fit in with the aesthetic of the original game. Inspired by Mike Mika&#8217;s <a href="http://www.romhacking.net/hacks/1225/">Donkey Kong: Pauline Edition</a>, this hack is directed toward the ideal of giving women more active, heroic, playable roles in games.</info>
<patch crc="C36138AB" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/1229/</url>
<patch_id>1229</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1229titlescreen.png</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1230 - Final Fantasy (U) [!]">
<description>Final Fantasy (U) [!]</description>
<info>Final Fantasy Revolution is a complete overhaul of Final Fantasy 1, featuring new graphics, classes, magic, and a rewritten script.</info>
<patch crc="5971AC63" name="Final Fantasy (U) [!].ips">
<url>https://www.romhacking.net/hacks/1230/</url>
<patch_id>1230</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/561titlescreen.png</image>
</patch>
<rom crc="ab12ece6" md5="9b0f042cfdc5f9e8200b47104a4768a9" name="Final Fantasy (U) [!].nes"/>
</game>
<game name="1232 - Strider (U) [!]">
<description>Strider (U) [!]</description>
<info>This is a palette and text hack of Strider where you can play the final boss. The text has been changed to tell his side of the story.</info>
<patch crc="80B1EAFF" name="Strider (U) [!].ips">
<url>https://www.romhacking.net/hacks/1232/</url>
<patch_id>1232</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/1809titlescreen.jpg</image>
</patch>
<rom crc="5307702a" md5="67773120c4b8b6836cbe669dad6df46c" name="Strider (U) [!].nes"/>
</game>
<game name="1235 - Tecmo Super Bowl (U) [!]">
<description>Tecmo Super Bowl (U) [!]</description>
<info>This patch updates state, players, playbooks, and teams for the 2004 season.</info>
<patch crc="12894139" name="Tecmo Super Bowl (U) [!].ips">
<url>https://www.romhacking.net/hacks/1235/</url>
<patch_id>1235</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1235titlescreen.png</image>
</patch>
<rom crc="1f7c5660" md5="937dd74a0fb140b1e10d1915d4e2bd48" name="Tecmo Super Bowl (U) [!].nes"/>
</game>
<game name="124 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>This hack features new level designs, some changed graphics and palettes, and text changes. It&#8217;s very difficult, so play it if you&#8217;re looking for a challenge.</info>
<patch crc="A31A40D3" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/124/</url>
<patch_id>124</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/124titlescreen.png</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1240 - Metroid (U) [!]">
<description>Metroid (U) [!]</description>
<info>&#8216;Roidz is a graphical re-tooling of the original Metroid, in similar fashion to <a href="http://www.romhacking.net/hacks/1219/">MDbTroid</a>, but with it&#8217;s own style and aesthetic. This hack features all new sprites and updated background graphics, new animations, and a couple of other small treats that help breath new life into this classic game.</info>
<patch crc="13CECE06" name="Metroid (U) [!].ips">
<url>https://www.romhacking.net/hacks/1240/</url>
<patch_id>1240</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1240titlescreen.png</image>
</patch>
<rom crc="a2c89cb9" md5="d77c8053168da14b360bf5caeccc5964" name="Metroid (U) [!].nes"/>
</game>
<game name="126 - Super Mario Bros. (W) [!]">
<description>Super Mario Bros. (W) [!]</description>
<info>Now this one is interesting! While most of the levels are the same the physics themselves have been changed, gravity is much lower and the longer you hold the jump button the shorter your jumps. The fireballs have been replaced by laser beams, rendering them useless against short enemies on the ground. For whatever reason the water levels have been edited, making them almost impossible to complete.</info>
<patch crc="AE3B691C" name="Super Mario Bros. (W) [!].ips">
<url>https://www.romhacking.net/hacks/126/</url>
<patch_id>126</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/126titlescreen.gif</image>
</patch>
<rom crc="3337ec46" md5="811b027eaf99c2def7b933c5208636de" name="Super Mario Bros. (W) [!].nes"/>
</game>
<game name="1263 - Baseball Simulator 1.000 (USA)">
<description>Baseball Simulator 1.000 (USA)</description>
<info>Baseball Simulator 2013 updates Culture Brain&#8217;s Baseball Simulator 1.000 with 18 current MLB teams:</info>
<patch crc="5A4EF23B" name="Baseball Simulator 1.000 (USA).ips">
<url>https://www.romhacking.net/hacks/1263/</url>
<patch_id>1263</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1263titlescreen.png</image>
</patch>
<rom crc="1F6EA423" md5="D474CA3FE3CEB6D1025A1260DA313223" name="Baseball Simulator 1.000 (USA).nes" sha1="A2E9E58D5E12A87BEAF14EE6E485D0BD95E9876E"/>
</game>
<game name="1269 - Darkwing Duck (U) [!]">
<description>Darkwing Duck (U) [!]</description>
<info>This is a Darkwing Duck hack which adds a new additional extra level with new boss - Negaduck, it can be playing after finishing all regular levels.</info>
<patch crc="A131FB06" name="Darkwing Duck (U) [!].ips">
<url>https://www.romhacking.net/hacks/1269/</url>
<patch_id>1269</patch_id>
<image>https://www.romhacking.net/translations/nes/images/titles/1819titlescreen.png</image>
</patch>
<rom crc="307d0fc4" md5="459837f4e8fcbaf29bd66ed926b6882e" name="Darkwing Duck (U) [!].nes"/>
</game>
<game name="1276 - Zelda II - The Adventure of Link (U) [!]">
<description>Zelda II - The Adventure of Link (U) [!]</description>
<info>All dialouge changed. </info>
<patch crc="D2316217" name="Zelda II - The Adventure of Link (U) [!].ips">
<url>https://www.romhacking.net/hacks/1276/</url>
<patch_id>1276</patch_id>
<image>https://www.romhacking.net/hacks/nes/images/titles/1276titlescreen.png</image>
</patch>
<rom crc="e3c788b0" md5="764d36fa8a2450834da5e8194281035a" name="Zelda II - The Adventure of Link (U) [!].nes"/>
</game>
<game name="1277 - Mighty Final Fight (USA)">
<description>Mighty Final Fight (USA)</description>
<info>Mighty Final Fight for 2 players</info>
<patch crc="56A51E15" name="Mighty Final Fight (USA).ips">
<url>https://www.romhacking.net/hacks/1277/</url>