mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-10-31 23:05:06 +01:00
25 lines
632 B
Bash
25 lines
632 B
Bash
#!/bin/bash
|
|
|
|
ROM_MASK="*[Ll]ink*[Pp]ast*smc"
|
|
DOWNLOAD_LINK="https://sites.google.com/site/zeldaparallelworlds/lozpw110.rar"
|
|
RIIVOLUTION_ZIP="lozpw110.rar"
|
|
PATCH="ZPW_1.1.ips"
|
|
GAMENAME="The Legend of Zelda - Parallel Worlds"
|
|
GAME_TYPE=IPS
|
|
|
|
show_notes () {
|
|
|
|
echo -e \
|
|
"************************************************
|
|
${GAMENAME}
|
|
|
|
Parallel Worlds is a complete overhaul of A Link to the Past,
|
|
new world, new dungeons... and much more difficult.
|
|
|
|
Source: https://sites.google.com/site/zeldaparallelworlds/
|
|
Base ROM: The Legend of Zelda: A Link to the Past
|
|
Supported Versions: US
|
|
************************************************"
|
|
|
|
}
|