mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-28 03:54:22 +01:00
37 lines
806 B
Bash
37 lines
806 B
Bash
#!/bin/bash
|
|
|
|
DOWNLOAD_LINK="https://drive.google.com/uc?id=0B-zmEVN0Mas6Qm5jYXZkVy1QZjA&export=download"
|
|
RIIVOLUTION_ZIP="RRSSv2.1.zip"
|
|
RIIVOLUTION_DIR="RRSSv2.1"
|
|
GAMENAME="Pokemon Rising Ruby"
|
|
GAME_TYPE=HANS
|
|
|
|
ROM_MASK="*000400000011[cC]400*cxi"
|
|
ROMFS="RisingRuby.romfs"
|
|
DATA="${PATCHIMAGE_DATA_DIR}/RisingRuby/"
|
|
|
|
show_notes () {
|
|
|
|
echo -e \
|
|
"************************************************
|
|
${GAMENAME}
|
|
|
|
Source: https://projectpokemon.org/forums/showthread.php?49883-Pok%E9mon-Rising-Ruby-and-Sinking-Sapphire
|
|
Base ROM: Pokemon Omega Ruby
|
|
Supported Versions: US, EU, JAP
|
|
************************************************"
|
|
|
|
}
|
|
|
|
check_hans_files () {
|
|
|
|
check_riivolution_patch
|
|
|
|
}
|
|
|
|
patch_romfs () {
|
|
|
|
cp -r "${RIIVOLUTION_DIR}/Drop-In Files/Rising Ruby/Drop-It-In (CRO FOR LUMA3DS ONLY)/romfs/a/" romfs/
|
|
|
|
}
|