Added game "Slay the Text".

This commit is contained in:
stormdragon2976 2022-12-06 02:31:28 -05:00
parent 8b6f1960ce
commit 34000858de

View File

@ -331,6 +331,10 @@ game_launcher() {
*doom*)
exec ${game}
;;
*"main.py")
pushd "${game%/*}"
python3 ${game}
;;
*)
pushd "${game%/*}"
exec ${game}
@ -379,6 +383,7 @@ gameList=(
"QuentinC Play Room"
"Periphery Synthetic EP"
"S.E.A."
"Slay the Text"
"SoundRTS"
"soundStrider"
"StickMUD"
@ -586,6 +591,11 @@ case "${game}" in
unzip -d "${installPath}/S.E.A." "${cache}/SEA-linux-x64.zip"
add_launcher "${installPath}/S.E.A./SEA"
;;
"Slay the Text")
git -C "${installPath}/" clone https://github.com/Difio3333/slaythetext.git | \
dialog --progressbox "Installing \"${game}\", please wait..." -1 -1
add_launcher "${installPath}/slaythetext/main.py"
;;
"SoundRTS")
mkdir -p "${installPath}"
git -C "${installPath}" clone "https://github.com/soundmud/soundrts.git"