20 lines
915 B
Bash
20 lines
915 B
Bash
export winVer="win7"
|
|
download "https://www.iamtalon.me/games/slender.zip"
|
|
install_wine_bottle
|
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/" "${cache}/slender.zip"
|
|
add_launcher "c:\Program Files\slender\slender.exe"
|
|
"Shooter")
|
|
export WINEARCH=win64
|
|
export winVer="win7"
|
|
get_installer "shooter-win.zip" "https://brynify.itch.io/shooter"
|
|
install_wine_bottle
|
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/shooter" "${cache}/shooter-win.zip"
|
|
add_launcher "c:\Program Files\shooter\shooter.exe"
|
|
"Skateboarder Pro")
|
|
export WINEARCH=win64
|
|
export winVer="win8"
|
|
# Uses standard wine path based on architecture (win32/win64)
|
|
install_wine_bottle sapi
|
|
install_with_progress unzip "Extracting game files..." -d "$WINEPREFIX/drive_c/Program Files/" "${cache}/sb_pro_rw.zip"
|
|
add_launcher "c:\Program Files\sb_pro_rw\sb_pro.exe"
|