-
Notifications
You must be signed in to change notification settings - Fork 3
/
SNES_romhacks.xml
4816 lines (4816 loc) · 379 KB
/
SNES_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="1015 - Mortal Kombat 3 (USA)">
<description>Mortal Kombat 3 (USA)</description>
<info>This hack enables Noob Saibot as a playable character. He is unique in this game as he is a darkly colored Kano with his combos and no special moves. He also moves faster.</info>
<patch crc="6A66BFE2" name="Mortal Kombat 3 (USA).ips">
<url>https://www.romhacking.net/hacks/1015/</url>
<patch_id>1015</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/1765titlescreen.png</image>
</patch>
<rom crc="4E6AF725" md5="EC6FA27BFC201DD0EF0000F4C65FB57A" name="Mortal Kombat 3 (USA).sfc" sha1="58E4E1259A86FAAADBC982176E569CB2038DBAC5"/>
</game>
<game name="1023 - Final Fantasy III (USA)">
<description>Final Fantasy III (USA)</description>
<info>A simple patch which replaces the default font with the font found in the Gameboy Advance port called Final Fantasy VI Advance. Good for a GBA experience on the original SNES.</info>
<patch crc="2542B839" name="Final Fantasy III (USA).ips">
<url>https://www.romhacking.net/hacks/1023/</url>
<patch_id>1023</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/302titlescreen.png</image>
</patch>
<rom crc="A27F1C7A" md5="E986575B98300F721CE27C180264D890" name="Final Fantasy III (USA).sfc" sha1="4F37E4274AC3B2EA1BEDB08AA149D8FC5BB676E7"/>
</game>
<game name="1051 - Mega Man Soccer (USA)">
<description>Mega Man Soccer (USA)</description>
<info>What does this patch do?</info>
<patch crc="6DAC7F99" name="Mega Man Soccer (USA).ips">
<url>https://www.romhacking.net/hacks/1051/</url>
<patch_id>1051</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1051titlescreen.png</image>
</patch>
<rom crc="FA9EE2CE" md5="9E886F686DA276B00C4671967D396A79" name="Mega Man Soccer (USA).sfc" sha1="7E59C9457829ED3F0FBD9CD0CEEB3432A4739E98"/>
</game>
<game name="1055 - Genghis Khan II - Clan of the Gray Wolf (USA)">
<description>Genghis Khan II - Clan of the Gray Wolf (USA)</description>
<info>I&#8217;m not sure how to properly describe this patch. It makes the game easier in one aspect, I suppose, but allows for more variety in another aspect. It&#8217;s not meant to be &#8220;easy-mode&#8221;.</info>
<patch crc="F1257588" name="Genghis Khan II - Clan of the Gray Wolf (USA).ips">
<url>https://www.romhacking.net/hacks/1055/</url>
<patch_id>1055</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1055titlescreen.png</image>
</patch>
<rom crc="D7875512" md5="DF368F8933DEC39C701908F10480EDDC" name="Genghis Khan II - Clan of the Gray Wolf (USA).sfc" sha1="40EE0B41399EF1E17639E69051B9AABA3A9B27DD"/>
</game>
<game name="106 - Final Fantasy III (USA)">
<description>Final Fantasy III (USA)</description>
<info>This patch fixes graphical glitches and crashes when playing Final Fantasy 3 in 50Hz PAL-mode. Looks like the original programmers were somewhat sloppy. This patch is highly recommended if you&#8217;re playing Final Fantasy 3 on a PAL-machine via backup unit. Sourcecode included.</info>
<patch crc="7DF58858" name="Final Fantasy III (USA).ips">
<url>https://www.romhacking.net/hacks/106/</url>
<patch_id>106</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/302titlescreen.png</image>
</patch>
<rom crc="A27F1C7A" md5="E986575B98300F721CE27C180264D890" name="Final Fantasy III (USA).sfc" sha1="4F37E4274AC3B2EA1BEDB08AA149D8FC5BB676E7"/>
</game>
<game name="107 - Dynami Tracer (BS)">
<description>Dynami Tracer (BS)</description>
<info>Actually, this isn&#8217;t really a fix. DynamiTracer is a Bs-X game for the Satellaview System. This patch modifies the game to behave more like a regular SNES game. The Sram was relocated to the normal hirom region and the header was modified. I just made this patch to be able to build a cartridge of this game. Sourcecode included.</info>
<patch crc="6DAF1C04" name="Dynami Tracer (BS).ips">
<url>https://www.romhacking.net/hacks/107/</url>
<patch_id>107</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/836titlescreen.png</image>
</patch>
<rom crc="f8c2024a" md5="e80b44e6475f8ef37652cd46dd2d31ec" name="Dynami Tracer (BS).smc"/>
</game>
<game name="109 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>This is a complete Super Metroid hack, that alone makes it worth playing. It features new maps, layouts, item placements, and enemy placements. The areas in the beginning are similar to the originals, the farther you advance the more it changes. The difficulty is about the same as the original, and the puzzles are decent. There is a minor glitch where parts of the map won&#8217;t be displayed when reloading your save.</info>
<patch crc="41AB9F8D" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/109/</url>
<patch_id>109</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1094 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>This is a hack of Super Metroid for the Super Nintendo. It changes some variables to make the game harder. Changes include making the enemies do more damage, Samus doing less damage, health and ammo pickup amounts being halved.</info>
<patch crc="4A9A645B" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1094/</url>
<patch_id>1094</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1096 - Kirby Bowl (Japan)">
<description>Kirby Bowl (Japan)</description>
<info>This patch for the Japanese version of Kirby&#8217;s Dream Course re-enables a debug mode and stage select which were completely removed from international versions of the game.</info>
<patch crc="5ABB2911" name="Kirby Bowl (Japan).ips">
<url>https://www.romhacking.net/hacks/1096/</url>
<patch_id>1096</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/1783titlescreen.gif</image>
</patch>
<rom crc="2A24FC9B" md5="B14696CDC0569A05647F2A3F2756AC07" name="Kirby Bowl (Japan).sfc" sha1="147A113711758D4D42618D4BED809BED69B85D34"/>
</game>
<game name="11 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is the Super Mario World hack made by the man who made Super Mario World hacking easy with Lunar Magic, FuSoYa! What started out as just a demo of what Lunar Magic could do, it turned into a full hack of Super Mario World that&#8217;s complete right to the end. This patch is so expansive it expands the size of the ROM to 48mbits!</info>
<patch crc="98558927" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/11/</url>
<patch_id>11</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/11titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1105 - Secret of Mana (USA)">
<description>Secret of Mana (USA)</description>
<info>Secret of Mana seemingly has no support for lowercase letters in its menu font, and as a result, weapon and spell names are in all caps. However, it was discovered that even the Japanese original release had lowercase English letters in its font, prompting this project&#8217;s distribution.</info>
<patch crc="5B5679F" name="Secret of Mana (USA).ips">
<url>https://www.romhacking.net/hacks/1105/</url>
<patch_id>1105</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/799titlescreen.png</image>
</patch>
<rom crc="D0176B24" md5="10A894199A9ADC50FF88815FD9853E19" name="Secret of Mana (USA).sfc" sha1="8133041A363E3CC68CEDEF40B49B6D20D03C505D"/>
</game>
<game name="1111 - Earth Bound - New Controls 1.0 by Herringway (Hack)">
<description>Earth Bound - New Controls 1.0 by Herringway (Hack)</description>
<info>Say goodbye to navigating several menus only to find that guy in front of you just farted. This patch brings more modern controls to an snes classic!</info>
<patch crc="767106EB" name="Earth Bound - New Controls 1.0 by Herringway (Hack).ips">
<url>https://www.romhacking.net/hacks/1111/</url>
<patch_id>1111</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/727titlescreen.png</image>
</patch>
<rom crc="b0ff3b35" md5="644617eacdfc9e4fd5c39f39a206671e" name="Earth Bound - New Controls 1.0 by Herringway (Hack).smc"/>
</game>
<game name="1114 - F-Zero (USA)">
<description>F-Zero (USA)</description>
<info>This is a level design hack of the US version of F-Zero. It does not alter graphics or music.</info>
<patch crc="BF2F040" name="F-Zero (USA).ips">
<url>https://www.romhacking.net/hacks/1114/</url>
<patch_id>1114</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/1056titlescreen.png</image>
</patch>
<rom crc="AA0E31DE" md5="6F334790120E1FE1A972FF184D2CFC50" name="F-Zero (USA).sfc" sha1="D3EFD32B68F1FE37A82DB9D9929B7CA7CC1A3AF4"/>
</game>
<game name="1115 - F-Zero (USA)">
<description>F-Zero (USA)</description>
<info>This is a level structure hack of the US version of F-Zero. No music or graphics are touched. The practice track order has been rearranged also.</info>
<patch crc="3FF4D717" name="F-Zero (USA).ips">
<url>https://www.romhacking.net/hacks/1115/</url>
<patch_id>1115</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1115titlescreen.png</image>
</patch>
<rom crc="AA0E31DE" md5="6F334790120E1FE1A972FF184D2CFC50" name="F-Zero (USA).sfc" sha1="D3EFD32B68F1FE37A82DB9D9929B7CA7CC1A3AF4"/>
</game>
<game name="1116 - F-Zero (USA)">
<description>F-Zero (USA)</description>
<info>This is a level design hack for the US version of F-Zero. No graphics or music were changed. The practice track order has been altered.</info>
<patch crc="ABF03EDC" name="F-Zero (USA).ips">
<url>https://www.romhacking.net/hacks/1116/</url>
<patch_id>1116</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1116titlescreen.png</image>
</patch>
<rom crc="AA0E31DE" md5="6F334790120E1FE1A972FF184D2CFC50" name="F-Zero (USA).sfc" sha1="D3EFD32B68F1FE37A82DB9D9929B7CA7CC1A3AF4"/>
</game>
<game name="1117 - Donkey Kong Country (USA)">
<description>Donkey Kong Country (USA)</description>
<info>This is a hack that transforms Donkey Kong Country into a boss rush mode. Can you make it through all 7 bosses unscathed? Multiple options can be chosen for battles. Version 1.5 now has all of the features that DKC2: Brigand Barrage does, notably: You can choose to play as a two-player team in addition to going it alone. If playing alone, you can choose whether you start as Donkey Kong or Diddy, and whether the other Kong is present (For a challenge, try fighting all of the bosses as Diddy alone). Alternate color palettes can be chosen for the Kongs, not unlike Super Smash Bros. and other fighting games. You can also choose to fight individual bosses in addition to battling them all in succession. Best times are now saved to battery-backed memory for each individual boss, as well as the total.</info>
<patch crc="E58A7828" name="Donkey Kong Country (USA).ips">
<url>https://www.romhacking.net/hacks/1117/</url>
<patch_id>1117</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1117titlescreen.png</image>
</patch>
<rom crc="C946DCA0" md5="30C5F292FF4CBBFCC00FD8FA96C2DE3B" name="Donkey Kong Country (USA).sfc" sha1="0FCEE45D9AF5D2F62995ED4B04D22146B906C86B"/>
</game>
<game name="1118 - Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr)">
<description>Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr)</description>
<info>This is a boss rush hack similar to the hack <a href="http://www.romhacking.net/hacks/1117/">Donkey Kong Country: Boss Blitz</a>, also by the same hacker. Unlike DKC: Boss Blitz records are saved for each individual boss, as well as the total time. There is a options screen for changing various things such as starting Kong and team color.
It is also possible to play with a second player and fight a single boss.</info>
<patch crc="F1040F97" name="Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr).ips">
<url>https://www.romhacking.net/hacks/1118/</url>
<patch_id>1118</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1118titlescreen.png</image>
</patch>
<rom crc="006364DB" md5="98458530599B9DFF8A7414A7F20B777A" name="Donkey Kong Country 2 - Diddy's Kong Quest (USA) (En,Fr).sfc" sha1="3EC2035962918B5523D8B4745406F46F2A739B8D"/>
</game>
<game name="112 - Mega Man 7 (USA)">
<description>Mega Man 7 (USA)</description>
<info>Rockman 7 graphics and text modification.</info>
<patch crc="4932448" name="Mega Man 7 (USA).ips">
<url>https://www.romhacking.net/hacks/112/</url>
<patch_id>112</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/849titlescreen.png</image>
</patch>
<rom crc="2D947536" md5="301D8C4F1B5DE2CD10B68686B17B281A" name="Mega Man 7 (USA).sfc" sha1="6E7C9C9DD397F771303EE4AEC29D106B9F86C832"/>
</game>
<game name="120 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is a complete hack of Super Mario World. All the levels and worlds are new, and some of the worlds have themes not present in the original, such as a water world and an ice world. Don&#8217;t expect any new graphics here, though. This hack is all about the level design. The game is moderately challenging, and some of the last levels can get very hard.</info>
<patch crc="5D2B8B9B" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/120/</url>
<patch_id>120</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/120titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1237 - Final Fantasy III (USA)">
<description>Final Fantasy III (USA)</description>
<info>assassin17’s Brushless Sketch patch, while laudable, unintentionally locks Gogo out of using the Sketch command&#8211;unless they equip the Merit Award.</info>
<patch crc="221BBEEC" name="Final Fantasy III (USA).ips">
<url>https://www.romhacking.net/hacks/1237/</url>
<patch_id>1237</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/302titlescreen.png</image>
</patch>
<rom crc="A27F1C7A" md5="E986575B98300F721CE27C180264D890" name="Final Fantasy III (USA).sfc" sha1="4F37E4274AC3B2EA1BEDB08AA149D8FC5BB676E7"/>
</game>
<game name="1310 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here it is, 8 months after Super Mario World: The Lost Adventure - Episode I, isaix finally released Super Mario World: The Lost Adventure - Episode II.</info>
<patch crc="E9C60424" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1310/</url>
<patch_id>1310</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1310titlescreen.PNG</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1386 - Final Fantasy III (USA)">
<description>Final Fantasy III (USA)</description>
<info>Back when Final Fantasy VI (Final Fantasy III US) was released the game was heavily toned down, censoring graphics and the like. When it was re-released for the Playstation, the graphics were uncensored but the toned down script remained. Then came Final Fantasy VI Advance with a mix a match, but the color palette and music were altered for the handheld console. Others made retranslations, such as the great work by RPGOne and Lina Darkstar. </info>
<patch crc="E89DD096" name="Final Fantasy III (USA).ips">
<url>https://www.romhacking.net/hacks/1386/</url>
<patch_id>1386</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1386titlescreen.png</image>
</patch>
<rom crc="A27F1C7A" md5="E986575B98300F721CE27C180264D890" name="Final Fantasy III (USA).sfc" sha1="4F37E4274AC3B2EA1BEDB08AA149D8FC5BB676E7"/>
</game>
<game name="1408 - Final Fantasy V (Japan)">
<description>Final Fantasy V (Japan)</description>
<info>A large remix of the Final Fantasy 5, this hack imports several musical tracks from different games, includes new and imported enemies from across both the Final Fantasy series and other Square-Enix franchises, adjusted skills, adjusted classes (including new additions), shops&#8211;a large number of noticeable differences make this a hack that stands out.</info>
<patch crc="25292758" name="Final Fantasy V (Japan).ips">
<url>https://www.romhacking.net/hacks/1408/</url>
<patch_id>1408</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/301titlescreen.png</image>
</patch>
<rom crc="C1BC267D" md5="D69B2115E17D1CF2CB3590D3F75FEBB9" name="Final Fantasy V (Japan).sfc" sha1="E937B54FFF99838E2E853697E4F559359AA91FD6"/>
</game>
<game name="1438 - Super Mario RPG - Legend of the Seven Stars (USA)">
<description>Super Mario RPG - Legend of the Seven Stars (USA)</description>
<info>While taking a short ride in Bowser&#8217;s helicopter, Mario has some aerial trouble and falls into a strange place.</info>
<patch crc="D186EE3C" name="Super Mario RPG - Legend of the Seven Stars (USA).ips">
<url>https://www.romhacking.net/hacks/1438/</url>
<patch_id>1438</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/804titlescreen.png</image>
</patch>
<rom crc="1B8A0625" md5="D0B68D68D9EFC0558242F5476D1C5B81" name="Super Mario RPG - Legend of the Seven Stars (USA).sfc" sha1="A4F7539054C359FE3F360B0E6B72E394439FE9DF"/>
</game>
<game name="1461 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Princess Peach has once again been kidnapped by Bowser and this time he has taken her to the mysterious Gemtoa Region. The Gemtoa Region is composed of many tall cliffs and small islands and is broken into six main territories. The Koopa Kids have each taken over one of the territories so as Mario searches for Princess Peach he will also be required to recover each of the territories. </info>
<patch crc="B606E35D" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1461/</url>
<patch_id>1461</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1461titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1462 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Background information:
So, what&#8217;s this all about? &#8220;The Second Reality Project Reloaded&#8221; is not another new entry in the TSRP-series, it&#8217;s a remake of the first part. The hack finally features a new overworld (people requested this for years) and of course, custom graphics and custom music. Besides that, not much have changed, most of the time the level design is the same as before. So, keep in mind that the original hack came out back in 2002, and back in the days you don&#8217;t had the possibility to insert custom sprites, dozens of ASM-hacks and so on. So please don&#8217;t expect anything groundbreaking here, it&#8217;s still the same thing as it was before: a hack which is about level design and nothing else. But with that said, chances are if you enjoyed the original hack, you will love the remake for sure!</info>
<patch crc="F41F39D4" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1462/</url>
<patch_id>1462</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1462titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1463 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is the totally definitely FINAL final version of Super Pika Land Ultra, a hack that has been worked on infrequently since the last release. Alterations of some of the levels have been made in an attempt to balance the difficulty (and added one extra level in world 5)</info>
<patch crc="8BFFF733" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1463/</url>
<patch_id>1463</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1463titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1464 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>The pseudo-sequel to the Vanilla SPLU. Unlike Vanilla, it uses custom blocks, sprites, ASM, and all that other cool stuff. It&#8217;s about 60 levels long with a couple of well-hidden surprises and references.</info>
<patch crc="B0A9DD14" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1464/</url>
<patch_id>1464</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1464titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1465 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Note: Only works fully in ZSNES 1.51+. May be glitchy in other emulators.</info>
<patch crc="593069C8" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1465/</url>
<patch_id>1465</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1465titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1466 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is the final release of Super Mario World Master Quest 8: The Final Quest</info>
<patch crc="EBF151B6" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1466/</url>
<patch_id>1466</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1466titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1467 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Many years into the future, after the former heroes of the Mushroom Kingdom no longer exist; strange events begin to take place when the new antagonist: Nova, moves onto the island. A young boy by the name of Mute, has been recruited by the new princess of the Mushroom Kingdom to help fight for what’s left of the land. But does he have what it takes to defeat Nova?
Play the first episode of the action pack series, “Super Mute World.”</info>
<patch crc="737BA64E" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1467/</url>
<patch_id>1467</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1467titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1469 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Mario has to save both King Apollo and the Princess!
This hack features 96 new levels with an average level design, though cutoff and other various minor things can still be found throughout playing this hack. The secrets are frankly a breeze. A new Overworld is not made either.
On the other hand, new graphics add to a nice, smooth game-play! As a result, this huge hack is worth giving a try.</info>
<patch crc="FA1CCDB2" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1469/</url>
<patch_id>1469</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1469titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1471 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>In another remake made by Adam No, this Super Mario World hack changes the whole game to a more Super Mario Bros 3 theme. Music and graphics have been redone and many challenges have been added to this hack also.</info>
<patch crc="3083630B" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1471/</url>
<patch_id>1471</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1471titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1472 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is a full hack which changes the over-world, has music changes featuring many of it from SMB 3, and enemy changes also.</info>
<patch crc="DDFD590A" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1472/</url>
<patch_id>1472</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1472titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1473 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is a complete game hack which changes the levels and graphics for Super Mario World. There are also changes in the music as well.</info>
<patch crc="6B5E4790" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1473/</url>
<patch_id>1473</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1473titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1474 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is the first of the Master Quest hacks done by Alex No. It has only level changes to all the stages in the game and provides more of a challenge to those seasoned to the original. Enjoy!</info>
<patch crc="717896F8" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1474/</url>
<patch_id>1474</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1474titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1475 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>The first ever collaboration hack created by over 200 users of SMW Central. It is Peach&#8217;s birthday, and Mario and Luigi must go and gather eggs to make her a cake. Things aren&#8217;t quite as normal as they seem along the way though&#8230;</info>
<patch crc="93E88C2" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1475/</url>
<patch_id>1475</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1475titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1477 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>The princess has been stolen! Even worse, it&#8217;s a Tuesday! Mario hates Tuesdays. Run, jump, and fly through 11 worlds of platforming mayhem to save the day!</info>
<patch crc="46D64E72" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1477/</url>
<patch_id>1477</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1477titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1478 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Picking up directly from where Super Mario Infinity left off, Mario and Luigi have discovered an artifact called the Cursed Gem that contains a timed explosive supposedly able to destroy the world, and the only way to stop it is to enter the Gem itself. The adventure heats up when our heroes learn of Bowser&#8217;s presence in the artifact, and as they search the Gem and discover its underground secrets, ancient clues and revelations begin to make themselves known. Could all of the answers be at hand? Only time will tell (literally) if our heroes can stop the time bomb, or if their planet is doomed to an explosive death&#8230;</info>
<patch crc="43EAD54F" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1478/</url>
<patch_id>1478</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1478titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1479 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>STORY:
After saving Peach and beating Bowser on the Starlight Islands, the Mario Bros, Yoshi, and Peach decide to take a vacation in the Kola Kingdom, far away from Bowser and his princess-kidnapping antics. During their vacation, they discover that Bowser has apparently taken over the Mushroom Kingdom. He&#8217;s even sent the Koopalings to steal the Star Keys that keep the warp between the Kola and Mushroom Kingdoms open. Can the Mario Bros. recover the Star Keys to re-open the warp and save their homeland?</info>
<patch crc="49410C18" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1479/</url>
<patch_id>1479</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1479titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1480 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is a hack with SMB,SMB3,SMB2,YI and a few SML styled levels. Graphics and music changes have also been made to this hack as well.</info>
<patch crc="2CFDD690" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1480/</url>
<patch_id>1480</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1480titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1481 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>The Princess is once again kidnapped. With &#8220;Mario&#8217;s&#8221; biggest enemy gone who could of kidnapped the Princess? &#8220;Mario&#8221; sets out on a brand new adventure to find who is responsible!</info>
<patch crc="FD3AA8A3" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1481/</url>
<patch_id>1481</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1481titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1482 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Story:
The Evil Reswob Tuppa has kidnapped the Princess of the Mushroomy Kingdom and took her to his unknown base. To get there our hero &#8220;Mario&#8221; must find the four switches to rebuild the path to reach Reswobs Hideout!</info>
<patch crc="FD566F41" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1482/</url>
<patch_id>1482</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1482titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1483 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is a hack which alters all the levels and has some nice graphics changes in it.</info>
<patch crc="90FED75F" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1483/</url>
<patch_id>1483</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1483titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1484 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>What started as a small &#8216;edit&#8217; that was for the sake of practicing Lunar Magic, turned into a full length hack. These levels will definitely entertain you, and they are well put together.</info>
<patch crc="47C39CAF" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1484/</url>
<patch_id>1484</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1484titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1485 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is a follow up sequel to KT&#8217;s SMW Returns.
Here is a hack which alters all the levels and has some nice graphics changes in it. Unfortunately the text is in Japanese but that should restrict any game-play.</info>
<patch crc="1C64B992" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1485/</url>
<patch_id>1485</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1485titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1486 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>2012 marks the end of world. Master Hand plans to destroy everything. Mario should stop Master Hand before it&#8217;s too late!!</info>
<patch crc="8922C4B1" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1486/</url>
<patch_id>1486</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1486titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1489 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>A &#8220;Lost Levels&#8221; styled hack in that there&#8217;s very little in the way of new enemies and features, but there is a steeper learning curve and a ton of secrets to find within those levels. Don&#8217;t worry if difficulty hacks scare you though, many of the early levels are still easy and there is a sincere attempt at level design and variety.</info>
<patch crc="49E6EBFB" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1489/</url>
<patch_id>1489</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/714titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1490 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Like the first one, SMWW2 is a hack that aims to recreate the oldschool feel to the game. It&#8217;s fairly long and somewhat nonlinear in the middle. Even though it&#8217;s a &#8220;classic&#8221; hack, i think i managed to make most levels feel different from each other and often quite interesting. And the world should be fun to explore. You will probably enjoy this hack if you think you&#8217;d like something like that.</info>
<patch crc="F7283B30" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1490/</url>
<patch_id>1490</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1490titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1492 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Luigi and Bowser are on a race to find the hidden treasure on the island! Who will make it to there first?</info>
<patch crc="E534947C" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1492/</url>
<patch_id>1492</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1492titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1493 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>The story is based on a mysterious enemy who blows
up the Mushroom Kingdom with a nuclear bomb. Problem is the
enemy does that sometime in the future. Mario (and maybe Luigi)
follow the time traveler through his time machine, picking up
clues and hints of the time he is in, and when he blows up
the Mushroom Kingdom. Now the Mario brothers try to prevent
the explosion, even though it hasn&#8217;t even happened yet&#8230;Or has it?</info>
<patch crc="8A0005E7" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1493/</url>
<patch_id>1493</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1493titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1494 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Returning to the present, Mario discovers he has appeared somewhere else in the Mushroom Kingdom. He is not familiar with this location nor did he know a big mountain existed. He must now find the time machine which will lead him to that fiend who destroys the entire Mushroom World. Mario gets information from time to time by some of Princess Peach&#8217;s
minion Toad&#8217;s. Where is Princess Peach? Why isn&#8217;t she helping Mario at all? Perhaps she&#8217;s too busy doing something else instead of preventing the apocalypse&#8230;&#8230; </info>
<patch crc="175F9DB4" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1494/</url>
<patch_id>1494</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1494titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1495 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>A collaboration hack made by the Talkhaus community in the style of the VIP and Wall Mix series.It has ASM, graphics, level, sound, and music changes. It is a very strange hack compared to many of the usual ones but it is much worth taking a look at. Enjoy!</info>
<patch crc="7B8D0F5F" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1495/</url>
<patch_id>1495</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1495titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1496 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>An epic journey that takes place all across the mushroom kingdom, as two rivals match wits. It&#8217;s the plumbers vs the evil King Koopa, Bowser. Have fun everyone. Graphics, music, and level changes are involved in this hack.</info>
<patch crc="68CF85C2" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1496/</url>
<patch_id>1496</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1496titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1497 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Welcome to Mario&#8217;s 2 Ways 2 Victory (Mario&#8217;s two ways to victory or M2W2V for short).</info>
<patch crc="68CF85C2" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1497/</url>
<patch_id>1497</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1497titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1498 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is a hack which comes with 2 patches. Each patch is an episode to the game so to fully play it you will need to patch 2 original Super Mario ROMS.</info>
<patch crc="64F385F" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1498/</url>
<patch_id>1498</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1498titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1499 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Mario has had it with saving Princess Peach. He decides to do something about it to make sure she never gets kidnapped by King Koopa ever again!</info>
<patch crc="54151A3" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1499/</url>
<patch_id>1499</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1499titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1500 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is a continuation of the first Mario Gives Up. After a while of having no princess, Mario starts to realize the mistake he made in the past and needs to do one thing to get his conscience cleared. He needs to venture down to hell and retrieve the princess himself! Can he do it?</info>
<patch crc="1A61E800" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1500/</url>
<patch_id>1500</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1500titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1501 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is the work which remade &#8220;Luigi&#8217;s Adventure&#8221; which is the
first item to a base in &#8220;Luigi&#8217;s Adventure&#8221; for foreign countries.
It&#8217;s made a language English, and degree of difficulty
adjustment and the bugfix are done.</info>
<patch crc="24999A3C" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1501/</url>
<patch_id>1501</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1501titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1502 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is the work which remade &#8220;Luigi&#8217;s Adventure3(JPN)&#8221; which is the first item to a base in &#8220;Luigi&#8217;s Adventure OSE - The Lost Levels -&#8221; for foreign countries. It&#8217;s made a language English, and degree of difficulty adjustment and the bugfix are done.</info>
<patch crc="2AD2315A" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1502/</url>
<patch_id>1502</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1502titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1503 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Luigi decides to set off on his very own adventure when he encounters a strange island. Bowser is here already however.Can the green plumber stop his evil plans?</info>
<patch crc="AFEC5925" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1503/</url>
<patch_id>1503</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1503titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1512 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>So, in this hack you will find that the Mario&#8217;s world is invaded by evils from other games: you will fight against Dr.Eggman, Snake men from Megaman and others! Will our hero restore peace in the world? And the most important question: WHO did all this?</info>
<patch crc="A71F8BE9" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1512/</url>
<patch_id>1512</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1512titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1513 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Here is one of the 3rd Hacks in the Le Avventure di Mario series which includes a lot of nice ASM changes such as Wall Jumping close to the Mega Man X style moves! A must look at :)</info>
<patch crc="774FCCB4" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1513/</url>
<patch_id>1513</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1513titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1529 - Legend of Zelda, The - A Link to the Past (USA)">
<description>Legend of Zelda, The - A Link to the Past (USA)</description>
<info>These patches were designed to help rookies who have problems with Zelda3 and would like to start it with HP upgrades. There are 5 parameters: start with 10 heart containers, start with 20 heart containers, start with Armor-3, fire sword, new &#8220;super&#8221; sword. There are 11 variants of above, but it is also possible to combine singular paramenters manually, by multi applying more (non-conflicting) IPS patches to one ROM.</info>
<patch crc="5394F9EA" name="Legend of Zelda, The - A Link to the Past (USA).ips">
<url>https://www.romhacking.net/hacks/1529/</url>
<patch_id>1529</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1529titlescreen.png</image>
</patch>
<rom crc="777AAC2F" md5="608C22B8FF930C62DC2DE54BCD6EBA72" name="Legend of Zelda, The - A Link to the Past (USA).sfc" sha1="6D4F10A8B10E10DBE624CB23CF03B88BB8252973"/>
</game>
<game name="1538 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>So Little Room was made for a contest that limits the hack to 20 in-game rooms plus one boss room. SLR fits within those limitations, and was released on September 1st, 2013.</info>
<patch crc="556EA721" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1538/</url>
<patch_id>1538</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="154 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Super Mario Kart - The Impala Battles is a hack of Super Mario Kart in which the four battle tracks have been completely changed. Download the patch now for a complete new battle challenge!</info>
<patch crc="E6330DBD" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/154/</url>
<patch_id>154</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1541 - 7th Saga, The (USA)">
<description>7th Saga, The (USA)</description>
<info>Among its many flaws, one weakness of The 7th Saga was that the characters were almost carbon copies of each other, limiting replay value. In this hack, based on the improvements already made in <a href="http://www.romhacking.net/hacks/421/">7th Saga Redux</a> hack, the characters have been given familiar classes based on Final Fantasy 1, with different stats and spells. Because this version can be played with minimal grinding, it&#8217;s a lot easier to try out each class and learn its unique playing style. The classes:</info>
<patch crc="289AB2F3" name="7th Saga, The (USA).ips">
<url>https://www.romhacking.net/hacks/1541/</url>
<patch_id>1541</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/1046titlescreen.jpg</image>
</patch>
<rom crc="B3ABDDE6" md5="A42772A0BEAF71F9256A8E1998BFE6E3" name="7th Saga, The (USA).sfc" sha1="8D2B8AEA636A2239805C99744BF48C0B4DF8D96E"/>
</game>
<game name="155 - Legend of Zelda, The - A Link to the Past (USA)">
<description>Legend of Zelda, The - A Link to the Past (USA)</description>
<info>This improvement adds a virtual in-game clock displayed on the status bar, along with a day/night cycling system using this clock that tints the palettes (excluding the status bar) in the overworld areas according to the hours. Tint colors and timer speed are easily customisable, everything is explained in the readme and it is easily usable for custom hacks. ASM source is included in the archive.</info>
<patch crc="5344F020" name="Legend of Zelda, The - A Link to the Past (USA).ips">
<url>https://www.romhacking.net/hacks/155/</url>
<patch_id>155</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/715titlescreen.png</image>
</patch>
<rom crc="777AAC2F" md5="608C22B8FF930C62DC2DE54BCD6EBA72" name="Legend of Zelda, The - A Link to the Past (USA).sfc" sha1="6D4F10A8B10E10DBE624CB23CF03B88BB8252973"/>
</game>
<game name="1575 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Three years after the explosion of Zebes, Samus came back on Earth to investigate on strange events disturbing the Darkholme Hospital, a military medical complex built 50 years ago.</info>
<patch crc="18B8B343" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1575/</url>
<patch_id>1575</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1575titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1577 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Here is a full game hack for Super Metroid. Unfortunately the details of it are in japanese on the site it was claimed from. From what is gathered there have been some ASM tweaks and of course the entire map has been changed. Enjoy!</info>
<patch crc="534A970F" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1577/</url>
<patch_id>1577</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1579 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Super Metroid YPR</info>
<patch crc="E633C59D" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1579/</url>
<patch_id>1579</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1599 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>Big Boo stole Mario&#8217;s Spaghetti! Its time to claim it back! In this hack all the levels have been redone. Also some ASM changes have been made and new graphics have replaced much of the originals.</info>
<patch crc="26994500" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1599/</url>
<patch_id>1599</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1599titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1610 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Darkness returns is a decently short super metroid hack designed for a level design contest on metconst during late summer 2013.</info>
<patch crc="F0B9BABA" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1610/</url>
<patch_id>1610</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1616 - Final Fantasy III (USA)">
<description>Final Fantasy III (USA)</description>
<info>The author believes that Final Fantasy 3 was a great, but rather flawed game. There were many parts in the game that many considered broken or unbalanced. In this hack, the game&#8217;s challenge was adjusted to be at a more appropriately difficult level, there was done a bunch of little changes to remove the cheap tactics that the player could use to easily beat the game. Common bug fixes were also applied.</info>
<patch crc="FD103354" name="Final Fantasy III (USA).ips">
<url>https://www.romhacking.net/hacks/1616/</url>
<patch_id>1616</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/302titlescreen.png</image>
</patch>
<rom crc="A27F1C7A" md5="E986575B98300F721CE27C180264D890" name="Final Fantasy III (USA).sfc" sha1="4F37E4274AC3B2EA1BEDB08AA149D8FC5BB676E7"/>
</game>
<game name="1619 - Final Fantasy III (USA) (Rev 1)">
<description>Final Fantasy III (USA) (Rev 1)</description>
<info>This hack alters events of the game such that General Leo joins the party after the events at Thamasa in the World of Balance. The story has been tweaked in various ways so that this development makes sense in context. Shadow is demoted to &#8220;guest character&#8221; status in order to make room for Leo.</info>
<patch crc="86CF82FB" name="Final Fantasy III (USA) (Rev 1).ips">
<url>https://www.romhacking.net/hacks/1619/</url>
<patch_id>1619</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1619titlescreen.png</image>
</patch>
<rom crc="C0FA0464" md5="544311E104805E926083ACF29EC664DA" name="Final Fantasy III (USA) (Rev 1).sfc" sha1="057ADA1C641E3E0B3CA34E6E4F4EB1B05A87143A"/>
</game>
<game name="162 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>This is a modification of the original Super Mario Kart game for the SNES. It contains all new courses, brand new graphics, altered music and even Kirby as a playable character, replacing toad.</info>
<patch crc="50A66514" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/162/</url>
<patch_id>162</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/162titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1623 - Mario to Wario (Japan) (En)">
<description>Mario to Wario (Japan) (En)</description>
<info>This is a hack to allow Mario &#038; Wario to be played with a standard controller.</info>
<patch crc="2144DF1C" name="Mario to Wario (Japan) (En).ips">
<url>https://www.romhacking.net/hacks/1623/</url>
<patch_id>1623</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/1985titlescreen.jpg</image>
</patch>
<rom crc="C6695E34" md5="B1774F03700DFC311BFD86411DB629C3" name="Mario to Wario (Japan) (En).sfc" sha1="68B307FA7FDFD91A190FA0148178473AA2406B41"/>
</game>
<game name="1624 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>This hack is very casual. No advanced skills are required. Might be a good recommendation for newer players.</info>
<patch crc="8E214090" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1624/</url>
<patch_id>1624</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1659 - Final Fantasy II (USA) (Rev 1)">
<description>Final Fantasy II (USA) (Rev 1)</description>
<info>Project II: Final Fantasy IV is an extensive script rewrite of <span class="italic">Final Fantasy II</span> for Super Nintendo, made largely with Pinkpuff’s <a href="http://www.romhacking.net/utilities/914/"><span style="text-decoration: underline;">FF4kster</span></a>. It’s common knowledge that when <span class="italic">FFII</span> released in 1991, it came with a sub-par script. Through the years, <span class="italic">Final Fantasy IV</span> received many English script revisions, but nearly all ports of the game have long load screens, lag, and sound issues. In addition, a wide swath of enhancements and bug fixes are only available for the English Super NES version.</info>
<patch crc="4BB06534" name="Final Fantasy II (USA) (Rev 1).ips">
<url>https://www.romhacking.net/hacks/1659/</url>
<patch_id>1659</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1659titlescreen.png</image>
</patch>
<rom crc="23084FCD" md5="27D02A4F03E172E029C9B82AC3DB79F7" name="Final Fantasy II (USA) (Rev 1).sfc" sha1="41A74EB369A7A91815529EF99AB1B20E2BDF3E26"/>
</game>
<game name="1660 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Here is a full hack for Super Metroid. Has some ASM changes with Samus&#8217;s movement &#038; enemy behavior. Also some graphics changes have been made plus the level layout as well. Not much is documented on this hack due to it being of Japanese origin. Comes with patches for Headered &#038; UnHeadered ROMS.</info>
<patch crc="793C58AC" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1660/</url>
<patch_id>1660</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1661 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Here is a hack which changes the whole level layout. There are a lot of spike traps to be avoided in this hack &#038; is not for the light hearted&#8230; Also there is NO saving in the game. When you die, thats it&#8230; Recommended for those who like a lot of abuse.</info>
<patch crc="43D042CC" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1661/</url>
<patch_id>1661</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1664 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Here is a full hack which changes the map layout for the whole game. Not much is documented due to Japanese origin.</info>
<patch crc="648EA566" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1664/</url>
<patch_id>1664</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="167 - Super Mario All-Stars (USA)">
<description>Super Mario All-Stars (USA)</description>
<info>Since the very first day I played it, something has bothered me about SMAS’s version of SMB (and Lost Levels): when Super Mario smashes a brick, he doesn’t rebound properly. In fact, if he hits a brick at the peak of his jump, he’ll actually be pulled upwards into the brick! (I find this kind of odd, since the games are just heavily modified versions of the original NES code, for the most part.)</info>
<patch crc="53BAFFA9" name="Super Mario All-Stars (USA).ips">
<url>https://www.romhacking.net/hacks/167/</url>
<patch_id>167</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/854titlescreen.png</image>
</patch>
<rom crc="925637C7" md5="53C038150BA00D5F8D8574B4D36283F2" name="Super Mario All-Stars (USA).sfc" sha1="C05817C5B7DF2FBFE631563E0B37237156A8F6B6"/>
</game>
<game name="1672 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Author&#8217;s description: </info>
<patch crc="5B7FAAE6" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1672/</url>
<patch_id>1672</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1673 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Author&#8217;s description:
Taking place after her adventures in metroid one, samus is tracking Ridley and the other space pirates that have survived. She follows a space pirate Colony ship to planet ASCII in the hopes of ending the space pirate threat once and for all. What she finds on this planet however, is not what she expected.</info>
<patch crc="688A1441" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1673/</url>
<patch_id>1673</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1675 - Super Metroid (Japan, USA) (En,Ja)">
<description>Super Metroid (Japan, USA) (En,Ja)</description>
<info>Post-traumatic Sidehopper Disorder. </info>
<patch crc="E709287F" name="Super Metroid (Japan, USA) (En,Ja).ips">
<url>https://www.romhacking.net/hacks/1675/</url>
<patch_id>1675</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/729titlescreen.png</image>
</patch>
<rom crc="D63ED5F8" md5="21F3E98DF4780EE1C667B84E57D88675" name="Super Metroid (Japan, USA) (En,Ja).sfc" sha1="DA957F0D63D14CB441D215462904C4FA8519C613"/>
</game>
<game name="1682 - Super Mario World (USA)">
<description>Super Mario World (USA)</description>
<info>This is a full Super Mario World hack that does not only have a new player but new graphics, levels, gimmicks as well as music and sprites.</info>
<patch crc="DEF4C95E" name="Super Mario World (USA).ips">
<url>https://www.romhacking.net/hacks/1682/</url>
<patch_id>1682</patch_id>
<image>https://www.romhacking.net/hacks/snes/images/titles/1682titlescreen.png</image>
</patch>
<rom crc="B19ED489" md5="CDD3C8C37322978CA8669B34BC89C804" name="Super Mario World (USA).sfc" sha1="6B47BB75D16514B6A476AA0C73A683A2A4C18765"/>
</game>
<game name="1683 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="F90C3607" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1683/</url>
<patch_id>1683</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1684 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="EB2AD429" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1684/</url>
<patch_id>1684</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1685 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="B1283792" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1685/</url>
<patch_id>1685</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1686 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="69726C78" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1686/</url>
<patch_id>1686</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1687 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="CA1EA15" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1687/</url>
<patch_id>1687</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="1688 - Super Mario Kart (USA)">
<description>Super Mario Kart (USA)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart.</info>
<patch crc="C9B05522" name="Super Mario Kart (USA).ips">
<url>https://www.romhacking.net/hacks/1688/</url>
<patch_id>1688</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="CD80DB86" md5="7F25CE5A283D902694C52FB1152FA61A" name="Super Mario Kart (USA).sfc" sha1="47E103D8398CF5B7CBB42B95DF3A3C270691163B"/>
</game>
<game name="169 - Super Mario All-Stars (USA)">
<description>Super Mario All-Stars (USA)</description>
<info>Watch out! Thorns and Spikes can kill Star Mario too. You must use a SMAS ROM with a x200 byte header.</info>
<patch crc="B21915A1" name="Super Mario All-Stars (USA).ips">
<url>https://www.romhacking.net/hacks/169/</url>
<patch_id>169</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/854titlescreen.png</image>
</patch>
<rom crc="925637C7" md5="53C038150BA00D5F8D8574B4D36283F2" name="Super Mario All-Stars (USA).sfc" sha1="C05817C5B7DF2FBFE631563E0B37237156A8F6B6"/>
</game>
<game name="1694 - Super Mario Kart (Japan)">
<description>Super Mario Kart (Japan)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart. Also be sure to use the Japanese version of the ROM.</info>
<patch crc="1322EBC2" name="Super Mario Kart (Japan).ips">
<url>https://www.romhacking.net/hacks/1694/</url>
<patch_id>1694</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="C8002453" md5="F7AFA112D7EC1D532636703E4B02700A" name="Super Mario Kart (Japan).sfc" sha1="CBB853BF911255C1D8EB27CD34FC7855A0DDA218"/>
</game>
<game name="1695 - Super Mario Kart (Japan)">
<description>Super Mario Kart (Japan)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart. Also be sure to use the Japanese version of the ROM.</info>
<patch crc="DF19A9D3" name="Super Mario Kart (Japan).ips">
<url>https://www.romhacking.net/hacks/1695/</url>
<patch_id>1695</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="C8002453" md5="F7AFA112D7EC1D532636703E4B02700A" name="Super Mario Kart (Japan).sfc" sha1="CBB853BF911255C1D8EB27CD34FC7855A0DDA218"/>
</game>
<game name="1696 - Super Mario Kart (Japan)">
<description>Super Mario Kart (Japan)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart. Also be sure to use the Japanese version of the ROM.</info>
<patch crc="23C75BB5" name="Super Mario Kart (Japan).ips">
<url>https://www.romhacking.net/hacks/1696/</url>
<patch_id>1696</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="C8002453" md5="F7AFA112D7EC1D532636703E4B02700A" name="Super Mario Kart (Japan).sfc" sha1="CBB853BF911255C1D8EB27CD34FC7855A0DDA218"/>
</game>
<game name="1697 - Super Mario Kart (Japan)">
<description>Super Mario Kart (Japan)</description>
<info>Here is a patch which gives you all new tracks to race on for Super Mario Kart. Also be sure to use the Japanese version of the ROM.</info>
<patch crc="35DC4F94" name="Super Mario Kart (Japan).ips">
<url>https://www.romhacking.net/hacks/1697/</url>
<patch_id>1697</patch_id>
<image>https://www.romhacking.net/translations/snes/images/titles/755titlescreen.png</image>
</patch>
<rom crc="C8002453" md5="F7AFA112D7EC1D532636703E4B02700A" name="Super Mario Kart (Japan).sfc" sha1="CBB853BF911255C1D8EB27CD34FC7855A0DDA218"/>
</game>