mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-11-01 07:15:06 +01:00
40 lines
795 B
Bash
40 lines
795 B
Bash
#!/bin/bash
|
|
|
|
DOWNLOAD_LINK="http://www.mediafire.com/download/8tacxp6oz5cw6c8/Pokemon+Red+Ruby.rar"
|
|
RIIVOLUTION_ZIP="Pokemon Red Ruby.rar"
|
|
RIIVOLUTION_DIR="Installation Files"
|
|
GAMENAME="Pokemon Red Ruby"
|
|
GAME_TYPE=HANS
|
|
|
|
ROM_MASK="*000400000011[cC]400*cxi"
|
|
ROMFS="redruby.romfs"
|
|
DATA="${PATCHIMAGE_DATA_DIR}/RedRuby/"
|
|
|
|
show_notes () {
|
|
|
|
echo -e \
|
|
"************************************************
|
|
${GAMENAME}
|
|
|
|
Pokemon Red Ruby is rom hack of Pokemon Omega Ruby
|
|
|
|
Source: https://gbatemp.net/threads/oras-romhack-pokemon-red-ruby.425268/
|
|
Base ROM: Pokemon Omega Ruby
|
|
Supported Versions: US, EU, JAP
|
|
************************************************"
|
|
|
|
}
|
|
|
|
check_hans_files () {
|
|
|
|
check_riivolution_patch
|
|
HANS_PATH="${RIIVOLUTION_DIR}"/romfs
|
|
|
|
}
|
|
|
|
patch_romfs () {
|
|
|
|
cp -r "${HANS_PATH}"/* romfs/
|
|
|
|
}
|