Add game onslaught

This commit is contained in:
Michael Taboada 2022-03-16 10:53:13 -07:00
parent d77912c9a6
commit 95a568f0e1

View File

@ -299,6 +299,7 @@ gameList=(
"Fantasy Story II" "Fantasy Story II"
"Monkey Spank" "Monkey Spank"
"Numnastics" "Numnastics"
"Onslaught"
"S.E.A." "S.E.A."
"soundStrider" "soundStrider"
"System Fault" "System Fault"
@ -410,6 +411,13 @@ case "${game}" in
git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/numnastics.git git -C "${installPath}" clone --recurse-submodules https://gitlab.com/stormdragon2976/numnastics.git
add_launcher "${installPath}/numnastics/numnastics" add_launcher "${installPath}/numnastics/numnastics"
;; ;;
"Onslaught")
get_installer "onslaught.AppImage" "https://lightsoutgames.itch.io/onslaught"
mkdir -p "${installPath}/Onslaught"
cp -v "${cache}/onslaught.AppImage" "${installPath}/Onslaught/onslaught.AppImage"
chmod +x "${installPath}/Onslaught/onslaught.AppImage"
add_launcher "${installPath}/Onslaught/onslaught.AppImage"
;;
"S.E.A.") "S.E.A.")
get_installer "SEA-linux-x64.zip" "https://shiftbacktick.itch.io/sea" get_installer "SEA-linux-x64.zip" "https://shiftbacktick.itch.io/sea"
mkdir -p "${installPath}/S.E.A." mkdir -p "${installPath}/S.E.A."