Add game Cacophony

This commit is contained in:
Michael Taboada 2022-08-09 16:27:15 -07:00
parent 80d2172e51
commit ff59b6e460

View File

@ -283,6 +283,7 @@ game_launcher() {
done done
# Web based games and donation # Web based games and donation
menuList+=("Aliens" "Aliens") menuList+=("Aliens" "Aliens")
menuList+=("Cacophony" "Cacophony")
menuList+=("Battle Weary" "Battle Weary") menuList+=("Battle Weary" "Battle Weary")
menuList+=("QuentinC Play Room" "QuentinC Play Room") menuList+=("QuentinC Play Room" "QuentinC Play Room")
menuList+=("Trigaea" "Trigaea") menuList+=("Trigaea" "Trigaea")
@ -304,6 +305,9 @@ game_launcher() {
"Battle Weary") "Battle Weary")
open_url "https://lonespelunker.itch.io/battle-weary" open_url "https://lonespelunker.itch.io/battle-weary"
;; ;;
"Cacophony")
open_url "https://tianmaru.itch.io/cacophony"
;;
"QuentinC Play Room") "QuentinC Play Room")
open_url "https://qcsalon.net/" open_url "https://qcsalon.net/"
;; ;;
@ -357,6 +361,7 @@ gameList=(
"Auroboros" "Auroboros"
"Battle Weary" "Battle Weary"
"Bladius" "Bladius"
"Cacophony"
"Chimera" "Chimera"
"Echo Command" "Echo Command"
"E.X.O." "E.X.O."
@ -430,7 +435,7 @@ done
installPath="${HOME}/.local/games" installPath="${HOME}/.local/games"
mkdir -p "${installPath}" mkdir -p "${installPath}"
case "${game}" in case "${game}" in
"Aliens"|"Battle Weary"|"QuentinC Play Room"|"Trigaea") "Aliens"|"Battle Weary"|"Cacophony"|"QuentinC Play Room"|"Trigaea")
dialog --backtitle "Linux Game manager" \ dialog --backtitle "Linux Game manager" \
--infobox "${game} is a web based game and does not need to be installed." -1 -1 --infobox "${game} is a web based game and does not need to be installed." -1 -1
;; ;;