Add browser game battle weary

This commit is contained in:
Michael Taboada 2022-03-23 19:52:59 -07:00
parent 8b6a0bfb1d
commit 6fc26121fe

View File

@ -233,6 +233,7 @@ game_launcher() {
done done
# Web based games and donation # Web based games and donation
menuList+=("Aliens" "Aliens") menuList+=("Aliens" "Aliens")
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")
menuList+=("Donate" "Donate") menuList+=("Donate" "Donate")
@ -248,6 +249,9 @@ game_launcher() {
"Aliens") "Aliens")
open_url "https://files.jantrid.net/aliens/" open_url "https://files.jantrid.net/aliens/"
;; ;;
"Battle Weary")
open_url "https://lonespelunker.itch.io/battle-weary"
;;
"QuentinC Play Room") "QuentinC Play Room")
open_url "https://qcsalon.net/" open_url "https://qcsalon.net/"
;; ;;
@ -292,6 +296,7 @@ gameList=(
"Aliens" "Aliens"
"Audo" "Audo"
"Auroboros" "Auroboros"
"Battle Weary"
"Bladius" "Bladius"
"Chimera" "Chimera"
"E.X.O." "E.X.O."
@ -362,7 +367,7 @@ done
installPath="${HOME}/.local/games" installPath="${HOME}/.local/games"
mkdir -p "${installPath}" mkdir -p "${installPath}"
case "${game}" in case "${game}" in
"Aliens"|"QuentinC Play Room"|"Trigaea") "Aliens"|"Battle Weary"|"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
;; ;;