Working on adding Sequence Storm.
This commit is contained in:
parent
7c8ee7530b
commit
bcc7029c1a
@ -328,12 +328,14 @@ gameList=(
|
||||
"AudioDisc"
|
||||
"Battle Zone"
|
||||
"Bloodshed"
|
||||
"Christmas WhoopAss"
|
||||
"Crazy Party"
|
||||
"Easter Quest"
|
||||
#"Entombed"
|
||||
"Finger Panic"
|
||||
"Fuck That Bird"
|
||||
"Kitchensinc Games"
|
||||
"Kringle Crash"
|
||||
"Light Cars"
|
||||
"Lockpick"
|
||||
"Manamon"
|
||||
@ -345,6 +347,7 @@ gameList=(
|
||||
"Revenge of the Undead"
|
||||
"RS Games"
|
||||
"Run For Your Life"
|
||||
"Sequence Storm"
|
||||
"Shades of Doom"
|
||||
"Super Egg Hunt"
|
||||
"Super Liam"
|
||||
@ -429,6 +432,16 @@ case "${game}" in
|
||||
cp "${cache}/bloodshed.exe" "$WINEPREFIX/drive_c/Program Files/"
|
||||
add_launcher "c:\Program Files\bloodshed.exe"
|
||||
;;
|
||||
"Christmas WhoopAss")
|
||||
install_wine_bottle vb6run dx8vb
|
||||
download "https://www.agarchive.net/games/draconis/christmas%20whoopass%20setup.exe"
|
||||
if command -v xdotools &> /dev/null ; then
|
||||
wine "${cache}/christmas whoopass setup.exe" /silent | xdotool sleep 10 key alt+y --clearmodifiers
|
||||
else
|
||||
wine "${cache}/christmas whoopass setup.exe" /silent
|
||||
fi
|
||||
add_launcher "c:\Program Files\Draconis Entertainment\Christmas Whoop Ass\wa.exe"
|
||||
;;
|
||||
"Crazy Party")
|
||||
export winVer="win7"
|
||||
install_wine_bottle speechsdk
|
||||
@ -468,6 +481,12 @@ case "${game}" in
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files/fuck that bird" "${cache}/bird_en.zip"
|
||||
add_launcher "c:\Program Files\fuck that bird/game.exe"
|
||||
;;
|
||||
"Kringle Crash")
|
||||
install_wine_bottle
|
||||
download "https://www.agarchive.net/games/blastbay/kringle%20crash%20setup.exe"
|
||||
wine "${cache}/kringle crash setup.exe" /silent
|
||||
add_launcher "c:\Program Files\Kringle Crash\kringlecrash.exe"
|
||||
;;
|
||||
"Kitchensinc Games")
|
||||
install_wine_bottle vb6run speechsdk dx8vb
|
||||
download "https://stormgames.wolfe.casa/downloads/kitchen.tar.xz"
|
||||
@ -560,6 +579,22 @@ case "${game}" in
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files/run for your life" "${cache}/rfyl_en.zip"
|
||||
add_launcher "c:\Program Files\run for your life\game.exe"
|
||||
;;
|
||||
"Sequence Storm")
|
||||
read -p "Make sure sequence-storm-win64.zip is available in either your Downloads or Desktop directory and press enter to continue." continue
|
||||
for i in ~/Downloads ~/Desktop ; do
|
||||
find $i -type f -name 'sequence-storm-win64.zip' -exec cp -v {} "${cache}/" \;
|
||||
done
|
||||
if [[ ! -f "${cache}/sequence-storm-win64.zip" ]]; then
|
||||
echo "couldn't find sequence-storm-win64.zip. Please download the file and try again."
|
||||
exit 1
|
||||
fi
|
||||
export WINEARCH=win64
|
||||
export winVer="win10"
|
||||
install_wine_bottle
|
||||
unzip -d "$WINEPREFIX/drive_c/Program Files/sequence-storm" "${cache}/sequence-storm-win64.zip"
|
||||
wget -O "$WINEPREFIX/drive_c/Program Files/sequence-storm/settings.json" "https://stormgames.wolfe.casa/downloads/sequencestorm-settings.json"
|
||||
add_launcher "c:\Program Files\sequence-storm\SequenceStorm.exe"
|
||||
;;
|
||||
"Shades of Doom")
|
||||
export winVer="win7"
|
||||
install_wine_bottle speechsdk vb6run dx8vb
|
||||
|
Loading…
Reference in New Issue
Block a user