mirror of
https://gitlab.com/Nanolx/patchimage.git
synced 2024-12-26 01:01:50 +01:00
add support for Pokemon Delta Emerald (Alpha Sapphire)
This commit is contained in:
parent
4d13da40f8
commit
d765da7017
@ -83,6 +83,7 @@ PKMN5 EternalX Pokemon Eternal X
|
||||
PKMN6 WiltingY Pokemon Wilting Y
|
||||
PKMN7 RisingRuby Pokemon Rising Ruby
|
||||
PKMN8 SinkingSapphire Pokemon Sinking Sapphire
|
||||
PKMN9 DeltaEmeraldAS Pokemon Delta Emerald (Alpha Sapphire)
|
||||
|
||||
BSECU BravelySecondUncensored Bravely Second Uncensored
|
||||
|
||||
@ -461,8 +462,12 @@ check_riivolution_patch () {
|
||||
elif [[ ${PATCHIMAGE_RIIVOLUTION_DOWNLOAD} == "TRUE" ]]; then
|
||||
download_riivolution_patch
|
||||
else
|
||||
echo -e "please specify zip/rar to use with --riivolution=<path>"
|
||||
exit 21
|
||||
if [[ ${1} == --nofail ]]; then
|
||||
echo -e "no zip archive found. Skipping to bare patch file detection"
|
||||
else
|
||||
echo -e "please specify zip/rar to use with --riivolution=<path>"
|
||||
exit 21
|
||||
fi
|
||||
fi
|
||||
fi
|
||||
echo "*** >> status: ${x}"
|
||||
|
31
scripts/pokemon/pokemondeltaemerald-as.sh
Normal file
31
scripts/pokemon/pokemondeltaemerald-as.sh
Normal file
@ -0,0 +1,31 @@
|
||||
#!/bin/bash
|
||||
|
||||
DOWNLOAD_LINK="mega:///#!z9oEwB4R!8Ab1mp23iEYnAdekP-rH3VrWNe_kUAoTgrh5_oU9BdE"
|
||||
RIIVOLUTION_ZIP="Pokemon Delta Emerald.zip"
|
||||
GAMENAME="Pokemon Delta Emerald (AS)"
|
||||
PATCH="Pokemon - Delta Emerald.xdelta"
|
||||
GAME_TYPE=HANS
|
||||
HANS_DELTA=TRUE
|
||||
|
||||
ROM_MASK="*000400000011[cC]500*cxi"
|
||||
ROMFS="DeltaEmerald-AS.romfs"
|
||||
DATA="${PATCHIMAGE_DATA_DIR}/DeltaEmerald-AS/"
|
||||
|
||||
show_notes () {
|
||||
|
||||
echo -e \
|
||||
"************************************************
|
||||
${GAMENAME}
|
||||
|
||||
Source: https://gbatemp.net/threads/or-as-pokemon-delta-emerald-rom-hack.421637/
|
||||
Base ROM: Pokemon Alpha Sapphire
|
||||
Supported Versions: US, EU, JAP
|
||||
************************************************"
|
||||
|
||||
}
|
||||
|
||||
check_hans_files () {
|
||||
|
||||
check_riivolution_patch --nofail
|
||||
|
||||
}
|
Loading…
Reference in New Issue
Block a user